/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary-dark: #1b2621;
    --primary: #2d6a4f;
    --bg-cream: #F9F6F0;
    --brand-orange: #FF8C42;
    --brand-orange-light: #fff3ed;
    --nav-text: #2d3436;

    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: var(--font-body), 'Segoe UI', sans-serif;
    background-color: var(--bg-cream); /* Fallback color */
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden; 
    position: relative; /* Needed for the background image trick */
}

/* This adds the background image to the whole site and lets you control opacity */
body::before {
    content: '';
    position: fixed; /* Keeps the background still while you scroll (parallax effect) */
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    
    
    /* --- LOWER THE OPACITY HERE --- */
    /* 0.1 is very faded, 1.0 is full color. Adjust to your liking! */
    opacity: 0.15; 
    
    z-index: -2; /* Keeps the image behind all your content */
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

button {
    font: inherit;
}

/* =========================================
   FLOATING NAVBAR
   ========================================= */
/* =========================================
   FLOATING NAVBAR
   ========================================= */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 5%;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- LOGO & BRAND NAME --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Adds space between the image and the text */
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: #cc5500; /* Changed to a rich Dark Orange */
    letter-spacing: 0.5px;
    white-space: nowrap; 
}

.logo:hover img {
    transform: scale(1.05);
}

/* --- NAV LINKS & ICONS --- */
/* --- Desktop Nav Links (Pushing them to the right) --- */
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto; /* This pushes everything to the right! */
}

.social-container {
    display: flex;
    gap: 10px;
}

/* Hide mobile menu elements on desktop */
.close-menu-btn, .menu-overlay {
    display: none;
}

/* Add margin to actions if it exists */
.nav-actions {
    margin-left: 20px; 
    display: flex;
    align-items: center;
}

/* =========================================
   MOBILE RESPONSIVE SIDEBAR (App-like)
   ========================================= */
@media (max-width: 900px) {
    .nav-actions {
        margin-left: auto; /* Keeps hamburger on the far right */
    }

    /* 1. The App-like Sliding Sidebar */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen to the right */
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -10px 0 20px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); /* Smooth slide */
        z-index: 1001;
        margin: 0;
    }

    /* When JS adds the .active class, it slides in */
    .nav-links.active {
        right: 0; 
    }

    .nav-links a {
    color: #000000; /* Changed from orange to Black */
    font-size: 0.95rem;
    font-weight: 700; 
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Optional: Keep the hover effect so they still turn white with an orange background when hovered! */
.nav-links a:hover {
    color: #ffffff; 
    background: var(--brand-orange); 
}

    /* Social Icons in mobile menu */
    .social-container {
        margin-top: 30px;
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
    }

    .social-icon {
        border-bottom: none !important;
        width: auto !important;
        padding: 12px !important;
        background: var(--brand-orange-light);
        color: var(--brand-orange) !important; /* Keeps icons orange on mobile so they pop */
    }

    /* Close Button */
    .close-menu-btn {
        display: block;
        position: absolute;
        top: 25px;
        right: 30px;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary-dark);
        cursor: pointer;
        transition: 0.3s;
    }
    
    .close-menu-btn:hover { color: var(--brand-orange); }

    /* Dark Overlay */
    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(4px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    /* Shows the overlay when active */
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.nav-links a {
    color: #3f3e3e; /* FORCES link text to Black */
    font-size: 0.95rem;
    font-weight: 700; 
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff; 
    background: var(--brand-orange); 
}

/* Specific styling for the social icons so they look like perfect circles on hover */
.social-icon {
    font-size: 1.2rem !important;
    padding: 8px 12px !important;
    border-radius: 50% !important;
}

/* --- NAV ACTIONS --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-cta {
    background: var(--brand-orange);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: #ff7b29;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brand-orange); /* Hamburger menu button is orange too */
    cursor: pointer;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-cta {
    background: var(--brand-orange);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: #ff7b29;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--nav-text);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
main {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0 5%;
    overflow: hidden;
    color: #fff;
}

#bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: background-image 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

#bg-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 100%);
}

.content-left {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 550px;
    z-index: 10;
}

.content-left h1 {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
    transition: opacity 0.5s ease, transform 0.5s;
}

.content-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    transition: opacity 0.5s ease;
}

.slider-container {
    position: absolute;
    bottom: 25%;
    right: 5%;
    width: 600px;
    height: 320px;
    z-index: 10;
}

#card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: -10px 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: bottom left;
    background-color: #111;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.card-info h3 {
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.controls {
    position: absolute;
    bottom: -60px;
    left: 0;
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.control-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* =========================================
   BOOKING SECTION
   ========================================= */
.booking-section {
    padding: 2rem 5%;
    margin-top: -100px;
    position: relative;
    z-index: 20;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease, box-shadow 0.4s ease;
}

.booking-card.show-card {
    opacity: 1;
    transform: translateY(0);
}

.booking-card.show-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition-delay: 0s !important;
}

/* .stay-card {
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=800&q=80') center/cover;
}

.package-card {
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=800&q=80') center/cover;
} */

.card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 5;
    color: white;
}

.accent-icon {
    background: rgba(255, 82, 82, 0.8);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    font-size: 1rem;
}

.input-group input {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    outline: none;
}

.input-group input:focus {
    background: #fff;
}

.action-btn {
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    background-color: #ff5252;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.action-btn:hover {
    background-color: #ff3838;
    transform: scale(1.02);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    background-color: transparent;
    color: var(--primary-dark);
    padding: 80px 5%;
    overflow: hidden;
    text-align: center;
}

.about-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.points-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.point-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    width: 320px;
    border: 2px solid #ffcc80;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.point-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.point-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.point-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.point-card.is-visible:hover {
    transform: translateY(-10px) !important;
    border-color: #ff8c00;
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.15);
    transition-delay: 0s !important;
}

/* =========================================
   COLLAB SECTION
   ========================================= */
/* =========================================
   COLLAB SECTION (Creamy Light Theme)
   ========================================= */
.collab-section {
    background-color: transparent; /* Lets your global background image show through */
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collab-container {
    background-color: var(--bg-cream); /* Restored your creamy background */
    max-width: 900px;
    width: 100%;
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #ffcc80; /* Subtle orange border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow */
    color: var(--primary-dark);
}

/* 1. Top Graphic */
/* 1. Top Graphic (Updated for Image) */
/* 1. Top Graphic (Custom PicsArt Image) */
.collab-graphic {
    width: 200px; /* You can adjust this based on how big you make your image in PicsArt */
    height: auto;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-graphic img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* This applies a shadow to the exact shape of your transparent PNG! */
    filter: drop-shadow(0 10px 20px rgba(255, 140, 66, 0.3));
}   

.collab-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the circle perfectly without stretching or squishing */
    object-position: center;
}

/* 2. Stylized Heading */
.collab-title {
    font-size: 2rem;
    font-family: var(--font-body);
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.collab-title span {
    font-family: var(--font-heading); 
    font-size: 3.5rem;
    font-style: italic;
    color: var(--brand-orange);
    display: block;
    margin-bottom: -10px;
    letter-spacing: 1px;
    text-transform: none;
}

/* 3. Description */
.collab-desc {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.8;
    margin: 0 auto 40px;
    max-width: 700px;
}

/* 4. The 4 Circular Points */
.collab-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Light separator */
    padding-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 140px;
    border-right: 1px solid rgba(0, 0, 0, 0.1); 
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-orange);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--brand-orange);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 140, 66, 0.3);
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
    line-height: 1.4;
}

/* 5. Tagline */
.collab-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-orange);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

/* 6. Premium WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #ffffff !important;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    background-color: #20b858;
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}
/* =========================================
   SCROLL ANIMATION BASE
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        padding: 12px 20px;
    }

    .content-left {
        top: 30%;
        max-width: 100%;
    }

    .content-left h1 {
        font-size: 3rem;
    }

    .slider-container {
        bottom: 15%;
        left: 5%;
        width: 90%;
        height: 220px;
    }

    .card {
        width: 140px;
        height: 220px;
    }

    .controls {
        bottom: auto;
        top: -60px;
        left: 0;
    }
}

/* =========================================
   MEDIA QUERIES (COMPLETELY RESPONSIVE)
   ========================================= */
@media (max-width: 900px) {
    /* Navbar Mobile Fix */
    .nav-links,
    .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .main-nav {
        padding: 12px 20px;
    }

    /* 1. HERO BANNER FIX (Matches Reference Image) */
    /* 1. HERO BANNER FIX (Taller and un-stretched) */
    main {
        height: auto;
        padding: 90px 5% 10px; /* Slightly adjusted padding */
    }

    #bg-container {
        position: relative;
        height: 380px; /* INCREASED HEIGHT: Makes the banner much taller */
        border-radius: 15px; 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        
        /* FIX FOR STRETCHED IMAGE: Ensures it keeps its proper shape */
        background-size: cover !important; 
        background-position: center !important; 
        background-repeat: no-repeat !important;
    }

    #bg-container::after {
        border-radius: 15px; 
        /* Changed to a vertical gradient so centered text is easy to read */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .content-left {
        top: 50%;
        left: 50%; /* Pushes to the middle */
        transform: translate(-50%, -50%); /* Perfectly centers it vertically and horizontally */
        width: 90%;
        max-width: 100%;
        text-align: center; /* Centers the actual text alignment */
    }

    .content-left h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .content-left p {
        font-size: 0.95rem;
        /* Truncates text so it doesn't overflow the small banner */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
    }

    /* 2. TURN 3D CARDS INTO PAGINATION DOTS */
    .slider-container {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        height: 20px;
        margin-top: 15px;
        display: flex;
        justify-content: center;
    }

    #card-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    /* Target the JS generated cards and turn them into dots */
    .card {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: rgba(0, 0, 0, 0.2) !important;
        border: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    /* The Active Dot (Pill Shape) */
    .card[style*="z-index: 10"] {
        background: var(--brand-orange) !important;
        width: 24px !important;
        border-radius: 10px !important;
    }

    /* Hide the images and text inside the dots */
    .card img,
    .card .card-info {
        display: none !important;
    }

    /* 3. BOOKING SECTION GRID STACK */
    .booking-section {
        margin-top: 20px; /* Removes negative overlap from desktop */
        padding: 1rem 5%;
    }

    .booking-grid {
        grid-template-columns: 1fr; /* Stacks the cards */
        gap: 2rem;
    }

    .booking-card {
        width: 100%;
        transform: translateY(20px); /* Shortens animation travel distance */
    }

    /* 4. ABOUT SECTION FIX */
    .about-section {
        padding: 50px 5%;
    }

    .about-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .points-container {
        gap: 1.5rem;
    }

    .point-card {
        width: 100%; /* Take full width on mobile */
        padding: 2rem 1.5rem;
    }

    /* 5. COLLAB SECTION FIX */
    .collab-section {
        padding: 50px 5%;
    }

    .collab-container {
        padding: 3rem 1.5rem;
    }

    .whatsapp-btn {
        width: 100%; /* Full width button on mobile */
        justify-content: center;
    }
}