body {
    margin: 0;
    font-family: 'Lato', sans-serif;
}

header {
    background-color: #333;
    padding: 20px 0; /* Increased padding for a larger menu space */
    z-index: 1000; /* Ensures the header stays above other content */
    width: 100%;
    position: sticky; /* Makes the header stick to the top */
    top: 0; /* Sticks the header to the top of the page */
}

.banner-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.banner-menu li {
    margin: 0 20px; /* Added more spacing between menu items */
}

.banner-menu a {
    text-decoration: none;
    color: white;
    font-size: 16px; /* Slightly larger font size for better readability */
    font-weight: 500; /* Use bold Lato font */
}

.top-banner {
    position: relative; /* Allows positioning of the text within the banner */
}

.top-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-text {
    position: absolute;
    bottom: 20px; /* Position the text slightly above the bottom edge */
    left: 50%; /* Centers the text horizontally */
    transform: translateX(-50%); /* Adjusts for the element's dimensions horizontally */
    color: white; /* Text color for contrast */
    font-size:30px; /* Adjust the font size as needed */
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adds shadow for better visibility */
    padding: 10px; /* Optional: Add padding around the text */
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Add a semi-transparent background for better readability */
    border-radius: 8px; /* Optional: Add rounded corners to the text box */
}


.top-banner img {
    width: 100%;
    height: auto;
}

main {
    padding: 20px;
    text-align: center;
    padding-top: 80px; /* This padding ensures the content doesn't hide under the menu */
}

h1 {
    margin-top: 20px;
}

footer {
    background-color: #333; /* Matches header background */
    padding: 20px 0; /* Same padding as the header */
    text-align: center;
    color: white; /* White text for contrast */
}

footer p {
    margin: 0;
    font-size: 14px; /* Font size similar to the menu */
    font-weight: 400;
}

.calendar-container {
    padding: 10px;
    text-align: center;
}

.calendar-container iframe {
    border: none;
    width: 1200px;
    height: 600px;
}

/* Default layout - video gallery with 3 columns */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 20px; /* Spacing between grid items */
    padding: 20px;
    justify-content: center; /* Centers the grid items horizontally */
    max-width: 960px; /* Optional: Limits the width of the entire grid */
    margin: 0 auto; /* Centers the entire grid container on the page */
    text-align: center;
}

/* Video styling */
.video-gallery video {
    width: 100%;
    max-width: 300px; /* Ensures videos are not too large */
    border: 2px solid #ddd;
    border-radius: 8px;
}

/* Mobile layout - video blocks in a column */
@media screen and (max-width: 768px) {
    .video-gallery {
        grid-template-columns: 1fr; /* Display videos in a single column */
        padding: 10px; /* Reduce padding for smaller screens */
    }
}


.about {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Contact Form Section */
#contact {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

#contact h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

#contact p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* Form Fields */
#contact form {
    display: flex;
    flex-direction: column;
}

#contact label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

#contact input, 
#contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#contact input:focus,
#contact textarea:focus {
    border-color: #333;
    outline: none;
}

/* Submit Button */
#contact button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 600px) {
    #contact {
        padding: 15px;
    }

    #contact h2 {
        font-size: 24px;
    }

    #contact p {
        font-size: 14px;
    }

    #contact input, 
    #contact textarea {
        font-size: 14px;
    }

    #contact button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

html {
    scroll-behavior: smooth;
}

/* Hamburger menu button */
.hamburger {
    display: none; /* Hide by default */
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    z-index: 1500; /* Ensure it stays above the menu */
}

.hamburger div {
    background-color: white;
    height: 3px;
    margin: 5px 0;
    width: 25px;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .banner-menu {
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px; /* Below the header */
        right: 0;
        width: 200px;
        display: none; /* Hidden by default */
        text-align: right;
        padding: 10px;
    }

    .banner-menu.active {
        display: flex; /* Show menu when active */
    }

    .banner-menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex; /* Show hamburger button on small screens */
    }
}
.frames-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
    gap: 20px; /* Space between frames */
    justify-content: center; /* Center the frames horizontally */
    padding: 20px; /* Padding around the container */
    max-width: 1200px; /* Optional: Limits container width for better centering */
    margin: 0 auto; /* Centers the container itself */
}

.frame {
    border: 2px solid #ccc; /* Frame border */
    border-radius: 8px; /* Rounded corners */
    padding: 15px; /* Space inside the frame */
    background-color: #f9f9f9; /* Frame background color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds shadow for depth */
    text-align: center; /* Centers text inside the frame */
}

.frame h2 {
    font-size: 20px; /* Title font size */
    margin-bottom: 10px; /* Space below the title */
    color: #333; /* Title text color */
    font-weight: bold;
}

.frame p {
    font-size: 16px; /* Paragraph font size */
    color: #555; /* Paragraph text color */
    line-height: 1.6; /* Improves readability */
}

/* Media query for smaller screens */
@media (max-width: 1024px) {
    .frames-container {
        grid-template-columns: repeat(2, 1fr); /* Reduces to 2 columns on medium screens */
    }
}

@media (max-width: 600px) {
    .frames-container {
        grid-template-columns: repeat(1, 1fr); /* Reduces to 1 column on small screens */
    }
}
.g-recaptcha {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
/* Basic styling for the marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    font-size: 18px;
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #ddd;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 90s linear infinite;  /* Slowed down the scroll to 30 seconds */
    white-space: nowrap;
}

.marquee span::after {
    content: '|';
    margin: 0 10px; /* Adjust space around the separator */
    color: #aaa;    /* Separator color */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee span:hover {
    animation-play-state: paused;
}