
/* ---------------------------------- */
/* GLOBAL */
/* ---------------------------------- */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}
body, html {
    overflow-x: hidden !important;
}

/* ---------------------------------- */
/* NAVBAR */
/* ---------------------------------- */

.navbar-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent; /* IMPORTANT – bg image shows behind navbar */
}

.navbar-box {
    width: 90%;
    background: white;
    padding: 6px 35px;
    border-radius: 60px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0 auto;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #0A954F;
}

.book-btn {
    background: #0F9D58;
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.book-btn:hover { background: #0c7c47; }


.book-btn-mobile {
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 25px;
    text-decoration: none;
    margin-left: auto;
}

.book-btn-mobile i { color: #000; }

.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding-right: 10px;
}

/* MOBILE NAV FIXES */
@media (max-width: 991px) {
    .nav-links, .book-btn {
        display: none !important;
    }

    .logo {
        margin: 0 auto;
        padding-left: 0;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.mobile-menu {
    width: 50%;
    min-width: 200px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    font-size: 18px;

    position: fixed;          /* FIXED = stays under navbar always */
    top: 90px;                /* exactly under navbar */
    left: -60%;               /* hidden off-screen */
    z-index: 99999;

    transition: left 0.35s ease;
}
#menuBtn {
    position: relative;
    z-index: 100000;
    cursor: pointer;
}

/* Show when opening */
.menu-open {
    left: 10%;               /* original popup spot */
}


.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu li { margin: 12px 0; }
.mobile-menu a { text-decoration: none; color: #000; font-weight: 500; }
/* ---------------------------------- */
/* GALLERY */
/* ---------------------------------- */

.gallery {
    max-width: 1300px;
    margin: 10vh auto 40px;
    padding: 0 20px;
    column-count: 4;       /* change columns to make images smaller/larger */
    column-gap: 16px;
}

.gallery-item {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    break-inside: avoid;
    background: #fff;
}

/* Images */
.gallery-item img {
    width: 100%;
    display: inline-block;
    border-radius: 8px;
    transition: transform .28s ease;
    cursor: pointer;
    height: auto;
}

/* Videos */
.gallery-item video {
    width: 100%;
    display: inline-block;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
}

/* Hover zoom (keeps layout stable) */
.gallery-item img:hover,
.gallery-item video:hover {
    transform: scale(1.04);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}
.lightbox.show { display: flex; }

.lightbox-content img,
.lightbox-content video {
    max-width: 95%;
    max-height: 95%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.lightbox .close {
    position: absolute;
    top: 22px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}
/* Close button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 9999999; /* so nothing covers it */
    padding: 5px 10px;
}
.close-btn:hover {
    color: #ccc;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    text-align: center; margin: 18px 0 60px; }
.pagination button {
    padding: 10px 22px; background: #0A954F; color: #fff; border: none; border-radius: 8px;
    margin: 0 8px; cursor: pointer; font-size: 15px;
}
.pagination button:disabled { background: #888; cursor: not-allowed; }

/* ========================================= */
/* 2. Main Footer (Bottom Dark Part) */
/* ========================================= */
.footer-bottom {
    background-color: #000000; /* Dark background color */
    color: #ffffff;
    padding: 80px 100px 40px 100px;
}

.footer-content {
    max-width: 1400px; /* Match newsletter width */
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* This section contains the navigation links and social icons */
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
    transition: color 0.3s;
}
.footer-nav a:first-child { margin-left: 0; }
.footer-nav a:hover {
    color: #38a55e;
}

.pipe {
    color: #777;
    font-size: 16px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
}
.social-icon:hover {
    background-color: #38a55e;
    border-color: #38a55e;
}

.footer-separator {
    border: none;
    height: 1px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.footer-copyright-policy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ccc;
}

.privacy-policy {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.privacy-policy:hover {
    color: #38a55e;
}

/* responsive */
@media (max-width: 1024px) {
    .gallery { column-count: 3; }
    .navbar-box { padding: 8px 18px; }
}
@media (max-width: 768px) {
    .gallery { column-count: 2; }
    .logo { font-size: 30px; }
}
@media (max-width: 480px) {
    .gallery { column-count: 2; margin-top: 14vh; }
    .navbar-box { border-radius: 18px; }
    
}
/* ========================================= */
/* 2. Main Footer (Bottom Dark Part) */
/* ========================================= */
.footer-bottom {
    background-color: #000000; /* Dark background color */
    color: #ffffff;
    padding: 80px 100px 40px 100px;
}

.footer-content {
    max-width: 1400px; /* Match newsletter width */
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* This section contains the navigation links and social icons */
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
    transition: color 0.3s;
}
.footer-nav a:first-child { margin-left: 0; }
.footer-nav a:hover {
    color: #38a55e;
}

.pipe {
    color: #777;
    font-size: 16px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
}
.social-icon:hover {
    background-color: #38a55e;
    border-color: #38a55e;
}

.footer-separator {
    border: none;
    height: 1px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.footer-copyright-policy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ccc;
}

.privacy-policy {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.privacy-policy:hover {
    color: #38a55e;
}


/* ========================================= */
/* 📱 Responsive Adjustments (Max width 768px) */
/* ========================================= */
@media (max-width: 768px) {
    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 20px 60px 20px;
    }

    .newsletter-content {
        flex-direction: column; /* Stack text and form */
        align-items: flex-start;
        gap: 30px;
    }

    .newsletter-heading {
        font-size: 28px;
    }

    .newsletter-form-container {
        flex-direction: column; /* Stack input and button */
        width: 100%;
        gap: 10px;
    }

    .email-input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }

    /* Main Footer Section */
    .footer-bottom {
        padding: 60px 20px 30px 20px;
    }

    .footer-links-social {
        flex-direction: column; /* Stack links and social icons */
        align-items: flex-start;
        gap: 20px;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap; /* Allow links to wrap */
    }

    .footer-nav a, .pipe {
        margin: 0 5px;
    }

    .footer-copyright-policy {
        flex-direction: column; /* Stack copyright and policy */
        gap: 10px;
        align-items: flex-start;
    }
}