/* Premium Destination Styles */
:root {
    /* Default Colors (Serengeti Theme) - Override in specific pages */
    --color-primary: #8B4513;
    /* SaddleBrown */
    --color-secondary: #D2B48C;
    /* Tan */
    --color-accent: #DAA520;
    /* GoldenRod */
    --color-text: #333;
    --color-bg: #FDF5E6;
    /* OldLace */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --section-padding: 80px 0;
    --transition-speed: 0.4s;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.hero-subtitle,
.section-title {
    font-family: var(--font-heading);
}

/* --- Hero Section --- */
.premium-hero {
    height: 100vh;
    min-height: 600px;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Intro Section --- */
.intro-editorial {
    padding: var(--section-padding);
    background: #fff;
    position: relative;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.drop-cap::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 10px;
    color: var(--color-primary);
}

.quick-facts {
    background: var(--color-bg);
    padding: 30px;
    border-top: 3px solid var(--color-accent);
}

.fact-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-label {
    font-weight: 600;
    color: var(--color-primary);
}

/* --- Map Section --- */
.map-section {
    padding: var(--section-padding);
    background-image: url('../images/acacia-bg.png');
    /* Ensure this assumes assets/css relative path */
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.9);
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-card img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.did-you-know {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-left: 4px solid var(--color-accent);
    font-style: italic;
}

/* --- Full Width Parallax Map --- */
.parallax-map-section {
    position: relative;
    width: 100%;
    height: 600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.parallax-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* --- Showcase Section --- */
.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
}

.showcase-block:nth-child(even) .showcase-img {
    order: 2;
}

.showcase-img {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.showcase-block:hover .showcase-img img {
    transform: scale(1.05);
}

.showcase-text {
    padding: 60px;
}

.showcase-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.showcase-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin-top: 10px;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.showcase-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.showcase-list li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* --- Experience Strip --- */
.experience-strip {
    background: var(--color-primary);
    color: #fff;
    padding: 60px 0;
}

.exp-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.exp-item {
    flex: 1;
    min-width: 200px;
    transition: transform var(--transition-speed);
}

.exp-item:hover {
    transform: translateY(-5px);
}

.exp-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-accent);
}

/* --- Accordion Itinerary --- */
.itinerary-section {
    padding: var(--section-padding);
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header:hover,
.accordion-header[aria-expanded="true"] {
    color: var(--color-primary);
}

.accordion-icon {
    transition: transform 0.3s;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 20px;
    color: #555;
}

.day-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/serengeti-hero.jpg') center/cover fixed;
    /* Fallback or override */
    text-align: center;
    color: #fff;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 15px;
}

/* --- Responsive --- */
@media (max-width: 768px) {

    .editorial-grid,
    .map-grid,
    .showcase-block {
        grid-template-columns: 1fr;
    }

    .showcase-block:nth-child(even) .showcase-img {
        order: -1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .showcase-text {
        padding: 40px 20px;
    }
}

/* --- Navbar Shrink --- */
.navbar.shrink {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.shrink .logo {
    font-size: 1.2rem;
}