
/* ---------------------------------- */
/* 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;
}

/* 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; }



:root {
    --accent-color: rgba(42, 156, 100, 1);
    --font-family: 'Poppins', sans-serif;
    --text-color: #333;
    --light-bg: #f9f9f9;
}



.package-container {
    margin-top: 11vh;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* --- HEADER --- */
.package-header {
    background-color: var(--accent-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 12vh;
}

.package-header h1 {
    font-weight: 700;
    margin: 0 0 5px 0;
    font-size: 2.5em;
}

.package-header .tagline {
    font-weight: 300;
    margin: 0;
    font-size: 1.2em;
}

/* --- DAY SECTIONS --- */
.day-section {
    margin-bottom: 50px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.day-title {
    font-size: 2em;
    font-weight: 600;
    color: var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* --- LOCATION BLOCKS (Image + Description) --- */
.location-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.location-image {
    flex: 0 0 250px; /* Fixed width for image */
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.location-image img {
    width: 100%;
    height: 150px;
    object-fit: cover; /* Ensures images fill the container nicely */
    display: block;
}

.location-details {
    flex-grow: 1;
}

.location-name {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 5px;
}

.location-desc {
    font-size: 0.95em;
    font-weight: 400;
    color: #555;
    margin: 0;
}

/* --- RATE SECTION --- */
.rate-section {
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.rate-section h2 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.rate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.rate-grid div {
    padding: 10px;
    font-weight: 400;
    border-bottom: 1px solid #eee;
}

.rate-grid div:nth-child(even) {
    background-color: var(--light-bg);
    font-weight: 600;
}

.inclusion-note {
    font-style: italic;
    color: #777;
    margin-top: 15px;
}

/* --- CTA BUTTON --- */
.booking-cta {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(35, 128, 80, 1);
}

/* --- RESPONSIVENESS (Mobile View) --- */
@media (max-width: 768px) {
    .package-header h1 {
        font-size: 1.8em;
    }

    .location-block {
        flex-direction: column; /* Stacks image and text vertically */
        align-items: center;
        text-align: center;
    }

    .location-image {
        flex: 0 0 auto;
        width: 100%; /* Image takes full width on mobile */
        max-width: 400px;
    }

    .location-image img {
        height: 200px;
    }
    
    .location-details {
        padding-left: 0;
        margin-top: 10px;
    }
}



/* footer  */
/* --- Global Styles for Footer --- */
.main-footer {
    width: 100%;
    margin-top: 10vh;
    /* font-family: , sans-serif; Fallback font */
}

/* ========================================= */
/* 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;
    }
}