@font-face {
    font-family: 'Franklin Gothic Book';
    src: url('path-to-font/FranklinGothicBook.woff2') format('woff2'),
        url('path-to-font/FranklinGothicBook.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/*.header-image {
    width: 100%;
    height: auto;
}*/

/*header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-size: cover;
    color: white;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

#headers {

    background: url('Images/header-image.jpg');
    height: 40vh;
    position: relative;
    /*display: flex;
    /*justify-content: center;
    background-size: cover;
    color: white;
    font-size: 48px;
    z-index: 2;
}

#headers::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250vh;
    /* Adjust width as needed 
    height: 40vh;
    /* Adjust height as needed 
    background-image: url('Images/aboutusbgshade.jpg');
    /* Replace with your overlay image path 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: cover;
    transform: translate(-50%, -50%);

    z-index: 1;
    /* Ensure the image is above the background but below other content 
}*/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-size: cover;
    color: white;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

#headers {
    position: relative;
    height: 40vh;
}

.header-background {
    background: url('Images/gallerybg.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/*.header-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;

}*/

.header-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 48px;
}



.logo img {
    max-height: 50px;
    margin-left: 20px;
    margin-top: 22px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 20px;

    

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping */
    justify-content: space-between; /* Spreads out the items */
    position: relative;
}

nav ul li {
    list-style: none;
    padding: 0 10px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #cccccc;
    transition: 0.3s ease;
    font-family: 'DM Sans' , Arial , sans-serif;
    padding: 20px;
}

nav ul li a.active {
    color: #ffffff; /* Bright color for active link */
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffffff;
}

navbar li a.active::after,
navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

/*nav ul li a:hover {
    text-decoration: underline;
}*/

.contact-button a {
    background-color: #46AF86;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 18px;
    margin-left: 20px;
}

.contact-button a:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
   nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        display: flex;
        flex-wrap: wrap;
    }

    nav ul li {
        padding: 10px 0;
        width: 100%;
        margin: 0 10px;
        display: block;
    }

    nav ul li a {
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }

    
     .contact-button {
        width: 100%;
        margin-left: 0;
        margin-top: 10px; /* Adds some space above the button */
    }

    .contact-button a {
        width: 100%;
        text-align: center;
        padding: 10px 5px;
        margin: 10px 0;
        font-size: 16px; /* Slightly smaller font size */

        
    }
    
    
}

.banner {
    height: 40vh;
    position: relative;
    display: flex;
    justify-content: center;
    background-size: cover;
    color: white;
    font-size: 48px;
    align-items: flex-end;
    z-index: 2;
}

.banner h3 {
    padding-bottom: 60px;
    font-family: 'Fredoka', sans-serif;
    /* Apply Fredoka font to the banner heading */
    font-weight: normal;
}

.video-container {
    padding: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns layout */
    gap: 80px;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 70px;
}

.video {
    /*max-width: 630px;
    height: 355.3px;*/
    /* 16:9 aspect ratio */
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #dcd8d8;
    /* Adding a border */
}

.video-container .video:nth-child(1) {
    grid-column: 1 / 2;
    /* Place first video in the first column */
}

.video-container .video:nth-child(2) {
    grid-column: 2 / 3;
    /* Place second video in the second column */
}

.video-container .video:nth-child(3) {
    grid-column: 1 / 2;
    /* Place third video below the first one */
    grid-row: 2 / 3;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .video-container {
        grid-template-columns: 1fr;
        /* Single column layout for small screens */
    }

    .video-container .video:nth-child(1),
    .video-container .video:nth-child(2),
    .video-container .video:nth-child(3) {
        grid-column: 1 / -1;
        /* Each video takes up the full width */
    }
    
    .video-container .video {
        width: 100%;
        height: auto;
        /* Maintain the aspect ratio */
        max-width: 95%;
        /* Reduce the size to 90% of the container's width */
        margin: 0 auto;
        /* Center the video */
    }

    .video-container .video:nth-child(3) {
        grid-row: 3 / 4;
        /* Third video comes after the second */
    }
}


.contact-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding-bottom: -60px;
    margin-top: -20px;
}

.contact-form-container {
    background-color: #d1f0c8;
    padding: 20px;
    width: 50%;
    height: 580px;
    border-radius: 15px;
    margin-left: -50px;
    margin-top: 30px;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 70px;
}

.contact-form-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    margin-left: 45px;

}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    padding: 45px;
    margin-bottom: -20px;
}

.contact-form-container label {
    margin-bottom: 5px;
}

/*.contact-form-container input,
.contact-form-container textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}*/

.contact-form-container input,
.contact-form-container textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 2px solid #333;
    background-color: transparent;
    border-radius: 0;
    width: 100%;
    /* Ensures full width */
    box-sizing: border-box;
    /* Ensures padding is included in the element's total width */
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-bottom: 2px solid #28a745;
}

.input-field {
    background-color: #A9D7AF;
    /* Light green background */
    border: none;
    border-bottom: solid 2px #333;
    /* Dark line under input field */
    margin-bottom: 15px;
}

.input-field::placeholder {
    color: #666;
    /* Placeholder text color */
}


.contact-form-container button {

    padding: 10px 50px;
    font-size: 14px;
    background-color: #46AF86;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
    align-self: center;
}

.contact-form-container button:hover {
    background-color: #218838;
}

.image-container {
    width: 32%;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.form-row input {
    flex: 1;
}

footer {
    background-color: #0E4420;
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
    margin: 0;

}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer-content h3,
p {
    color: white;
    margin-right: 300px;


}



.footer-info,
.footer-links,
.footer-social {
    margin: 5px;
}

.footer-info {
    margin-top: -20px;
}

.footer-info img {
    margin-top: 10px;
}

.footer-links {
    margin-top: 70px;
    margin-left: -90px;
}

.footer-info h3 {
    margin-top: 40px;
    font-family: 'fredoka', sans-serif;
    font-weight: 500;
    font-size: 25px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 10px;
    font-family: 'fredoka', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;

}

.footer-links ul li {
    margin-bottom: 5px;

}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Maven Pro', Arial, sans-serif;
    /* Apply Maven Pro font to footer links */
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    row-gap: 8px;
    justify-items: center;
    align-items: center;
    margin-top: 65px;
    margin-left: 180px;
}

.footer-social a {
    margin: 0 -10px;
}

.footer-social h4 {
    margin-top: -7px;
    margin-right: -40px;
}

.footer-social i {
    size: 50px;
    text-align: center;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 80px;
    background-color: #0E4420;
    color: #ffffff;
    border: 2px solid #cce7d0;
    bottom: 20px;
    right: 10px;
    align-self: center;

}