/* General Body Styling */
body {
    font-family: 'Gotham', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

/* Header Styling */
header {
    text-align: center;
    background-color: #0A6EBC;
    padding: 10px 0;
}

header .banner {
    width: 100%; /* Responsive width for smaller screens */
    max-width: 400px; /* Maximum width to keep the size sane */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image */
}

/* Navigation Menu Styling */
nav {
    background-color: #a51890;
}

nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none; /* Hidden by default */
    flex-direction: column;
    text-align: center;
    background-color: #a51890;
}

nav .menu li {
    margin: 0;
    padding: 10px 0;
}

nav .menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

nav .menu.hidden {
    display: none; /* Hide on small screens */
}

nav .menu.visible {
    display: flex; /* Show when toggled */
}

nav .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}

/* Main Content Styling */
main {
    padding: 20px;
    text-align: center;
}

/* Lightbox Gallery */
.lightbox-gallery {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
    background-color: #f8f8f8;
}

.lightbox {
    max-width: 80%;
    margin: 0 auto;
}

.lightbox img {
    width: 100%; /* Fit within the container */
    max-width: 600px; /* Maximum width for larger screens */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #a51890;
    border-radius: 5px;
}

.lightbox-title {
    display: block;
    margin: 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    text-align: center;
}

/* Thumbnail Area */
.gallery-thumbnails-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 80%;
    margin: 0 auto;
}

.gallery-thumbnails img {
    width: 60px; /* Fixed size for thumbnails */
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover {
    border-color: #a51890;
}

/* Scroll Buttons */
.rotate-btn {
    background-color: #a51890;
    color: #ffffff;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.rotate-btn:hover {
    background-color: #87146e;
}

/* Worship Info Section */
.worship-info {
    text-align: center;
    margin: 20px auto;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.worship-info h3 {
    font-size: 20px;
    color: #0A6EBC;
    margin-bottom: 10px;
}

.worship-info p {
    font-size: 16px;
    margin: 5px 0;
}

.worship-info a {
    color: #a51890;
    text-decoration: none;
}

.worship-info a:hover {
    text-decoration: underline;
}

/* Facebook Button */
.facebook-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #3b5998;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.facebook-button:hover {
    background-color: #2d4373;
}

/* Footer Section Styling */
footer {
    background-color: #dcd4cc;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border-top: 2px solid #a51890;
    text-align: center;
}

footer a {
    color: #a51890;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}