/* Landing Page Base Styles - Extends your main styles.css */
.dark-theme {
    background-color: #000;
    color: #f4f4f4; /* --color-tertiary from your palette */
}



*, *::before, *::after {
    /* Use border-box model for easy sizing and layout */
    box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    margin: 0;
}

ul[role='list'], ol[role='list'] {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}



/* ============================================== */
/* 2. BASE STYLES & UTILITIES */
/* ============================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-text-light);
    overflow-x: hidden;
}

/* Track (the main bar area) */
::-webkit-scrollbar {
    width: 8px; /* Width of the entire scrollbar */
}

/* Thumb (the movable part) */
::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary); /* Gold/Yellow color */
    border-radius: 4px; /* Rounded corners */
    /* Add a subtle dark border/shadow to separate it from the background */
    border: 2px solid var(--color-primary); 
}

/* Track background */
::-webkit-scrollbar-track {
    background: var(--color-primary); /* Dark background for the track */
}

/* On hover, make it slightly brighter */
::-webkit-scrollbar-thumb:hover {
    background-color: #f1d380; /* Lighter gold on hover */
}

/* HERO */
.landing-hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Cinematic parallax */
    position: relative;
}
.private-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('/images/dawn-dusk-nature-outdoors-thumb.jpg');
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, #000 100%);
}
.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 6rem;
}
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #e8c16f; /* Gold accent */
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero-subheadline {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(244, 244, 244, 0.9);
    line-height: 1.7;
}
.btn-gold {
    background-color: #e8c16f;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #f5d078;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 193, 111, 0.2);
}
.btn-outline-gold {
    border: 1px solid #e8c16f;
    color: #e8c16f;
    background: transparent;
}

/* SECTIONS */
.landing-section {
    padding: 5rem 1rem;
}
.bg-charcoal {
    background-color: #111111;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(244, 244, 244, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-top: 3px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #e8c16f;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.feature-card h3 {
    color: #e8c16f;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

/* Split Content */
.split-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 992px) {
    .split-content {
        grid-template-columns: 1fr 1fr;
    }
}
.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.benefits-list {
    list-style: none;
    padding: 0;
}
.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    line-height: 1.6;
}

/* Itinerary Timeline */
.itinerary-timeline {
    max-width: 800px;
    margin: 3rem auto;
}
.timeline-day {
    display: flex;
    margin-bottom: 2.5rem;
    gap: 2rem;
}
.day-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(232, 193, 111, 0.1);
    color: #e8c16f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: serif;
    font-size: 1.5rem;
    font-weight: bold;
}
.day-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Experience Pillars */
.experience-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.pillar-card {
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
}
.pillar-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.pillar-card:hover .pillar-image {
    transform: scale(1.05);
}
.pillar-content {
    padding: 1.5rem;
}
.pillar-content h3 {
    color: #e8c16f;
    margin-bottom: 0.5rem;
}

/* Trust Signals */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 3rem auto;
}
@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.trust-stat {
    padding: 1.5rem;
}
.stat-number, .stat-icon {
    font-size: 2.5rem;
    color: #e8c16f;
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}
.faq-item summary {
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
    list-style: none; /* Hide default arrow */
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: #e8c16f;
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    content: '-';
}
.faq-item p {
    padding-top: 1rem;
    color: rgba(244, 244, 244, 0.8);
    line-height: 1.7;
}

/* FINAL CTA */
.final-cta {
    position: relative;
    text-align: center;
    padding: 6rem 1rem;
    background-size: cover;
    background-position: center;
}
.final-cta .container {
    position: relative;
    z-index: 2;
}
.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}
.cta-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(244, 244, 244, 0.9);
}
.cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
@media (min-width: 576px) {
    .cta-button-group {
        flex-direction: row;
        justify-content: center;
    }
}
.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}
.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .landing-hero {
        background-attachment: scroll; /* Better performance */
        min-height: 85vh;
    }
    .hero-container {
        padding-top: 4rem;
    }
    .landing-section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .split-content {
        gap: 2rem;
    }
    .timeline-day {
        flex-direction: column;
        gap: 1rem;
    }
    .day-marker {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    .cta-title {
        font-size: 2.2rem;
    }
}