* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto'
    ;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    width: 100vw;
}

/* header-section */

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

header {
    width: 100vw;
}

/* navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
    background-color: #c0c0c0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    transition: transform 0.3s ease;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}



.nav-links li a {
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: #555555;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #ffffff;
}

/* Banner Section */
.banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.welcome {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 5rem;
}


.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


/* Most popular section*/
/* Section Title Styling */
.section-title {
    font-family: "Prata", serif, sans-serif;
    font-size: 2rem;
    color: white;
    text-align: center;
    margin: 30px 0;
}

/* Gallery Styling */
.gallery {
    margin: 20px auto;
    width: 90%;
}

.gallery-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    /* Gutter */
}

.gallery-item {
    width: calc(25% - 16px);
    /* Three columns */
    flex: none;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.main-carousel img {
    /* height: 1000px; */
    width: 100%;
}

.main-carousel {
    height: auto;
    width: 800px;
}





/* Gallery section */
.slider-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-family: "Roboto";
    font-size: 3em;
    text-align: center;
}

.grid {
    width: 90vw;
    margin: 0 auto;
}

.grid-item {
    width: 350px;
    height: auto;
    margin: 1em;
}

.card {
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;


}

.card img {
    width: 100%;
}

.card-v2 {
    overflow: hidden;
    position: relative;
}

.card-v2::before {
    content: "";
    background:
        linear-gradient(0deg,
            rgba(0, 0, 0, .1),
            rgba(0, 0, 0, .3));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 5px;

}


.card-v2 img {
    border-radius: 5px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-v2 .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #0c0101;

}

.card-content {
    padding: 1.5em 1.5em 0.5em 1.5em;

}

.card-content h2 {
    margin-top: 0;
}

.card-content p {
    font-size: 1.1em;
    line-height: 30px;
    color: #9b9b9b;

}

a {
    text-decoration: none;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: #ffffff;
}

/* Contact Section */


.contact-section {
    padding: 50px 20px;
    color: white;
    text-align: center;
    margin-top: 200px;
}

.contact-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Center the form and set a max width */
.contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.contact-form {
    background-color: #c0c0c0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 30px;
    max-width: 600px;
    /* Max width for the form */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #222;
    color: white;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 12px 20px;
    background-color: #555;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #444;
}


/* Footer Styling */
.footer {
    background-color: #c0c0c0;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 30px;
    /* Allows content to wrap when necessary */
}

/* Footer Logo */
.footer-logo h1 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* Footer Navigation */
.footer-nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav-links li a:hover {
    color: #000000;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-link {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social .social-link:hover {
    transform: scale(1.1);
    color: #000000;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    font-size: 0.875rem;
    color: #aaa;
}

/* Desktop Layout: All in a row */
@media (min-width: 1024px) {
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    .footer-nav-links {
        display: flex;
        gap: 20px;
    }

    .footer-social {
        display: flex;
        gap: 15px;
    }
}

/* Mobile and Tablet Layout */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-social {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social {
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo h1 {
        font-size: 1.8rem;
        /* Adjust logo size for smaller screens */
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-section .section-title {
        font-size: 1.5rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

/* Hide nav links on small screens */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 80px;
        /* Matches header height */
        right: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Adjust logo in banner */
.banner.logo {
    font-size: 3rem;
    color: white;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

@media (max-width: 480px) {
    .banner .logo {
        font-size: 4rem;
        /* Larger than h1 size */
    }
}

/* Adjust Most Popular Section */
.gallery-carousel {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack images */
    gap: 20px;
}

@media (min-width: 768px) {
    .gallery-carousel {
        display: flex;
        /* Switch to row layout on larger screens */
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section .section-title {
        font-size: 1.5rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 10px 15px;
    }
}







/* Media Queries for Responsive Layout */
@media (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 16px);
        /* Two columns for tablet */
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
        /* One column for mobile */
    }
}

/* Tablet Layout (One Full-Size Image and Three Smaller Below) */
@media (max-width: 768px) {
    .gallery-carousel {
        display: grid;
        grid-template-columns: 1fr;
        /* Single column for the full-size image */
        grid-template-rows: auto auto;
        /* Two rows */
        gap: 16px;
        /* Space between rows */
        justify-items: center;
        /* Center-align the items */
    }

    .gallery-item:nth-child(1) {
        grid-column: 1;
        /* Full-size image spans the entire column */
        width: 100%;
        /* Full width for the top image */
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
        /* These will stack horizontally below */
        display: inline-block;
        width: calc(33.333% - 10px);
        /* Three smaller images evenly spaced */
        margin: 0 5px;
        /* Small gap between the smaller images */
    }

    /* Additional alignment for the second row */
    .gallery-carousel:nth-child(2) {
        display: flex;
        justify-content: center;
        gap: 16px;
    }
}

/* Mobile Layout (One Image Per Row) */
@media (max-width: 480px) {
    .gallery-carousel {
        display: grid;
        grid-template-columns: 1fr;
        /* Single column for mobile */
        gap: 16px;
        /* Space between rows */
    }

    .gallery-item {
        width: 100%;
        /* Full width for all images */
    }
}

@media (max-width: 1024px) {
    .welcome {
        font-size: 3rem;
        /* Adjust size for tablet */
    }
}

/* Styles for mobile screens (e.g., 768px and below) */
@media (max-width: 768px) {
    .welcome {
        font-size: 3rem;
        /* Adjust size for mobile */
    }




    @media (max-width: 480px) {
        .welcome {
            font-size: 0.1rem;
            /* Adjust size for mobile */
        }