@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --- CSS variables for Warm Savannah Explorer Theme --- */
:root {
    --bg-primary: #121110;
    --bg-secondary: #1c1a18;
    --accent-gold: #e5ba73;
    --accent-gold-rgb: 229, 186, 115;
    --accent-gold-hover: #f5d5ae;
    --accent-clay: #d96245;
    --accent-clay-hover: #e68a75;
    --text-main: #faf8f5;
    --text-muted: #b7b4af;
    --glass-bg: rgba(28, 26, 24, 0.85);
    --glass-border: rgba(229, 186, 115, 0.12);
    --glass-glow: rgba(217, 98, 69, 0.08);
    --card-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Lora', serif;
    line-height: 1.7;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(217, 98, 69, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(229, 186, 115, 0.03) 0%, transparent 40%);
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.03em;
}

p {
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* --- Core Layout & Utilities --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-clay { color: var(--accent-clay); }

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--accent-gold);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--accent-clay);
    margin: 1rem auto 0;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-muted);
}

/* --- Glassmorphic Card Panel --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(217, 98, 69, 0.25);
    box-shadow: 0 12px 40px 0 rgba(217, 98, 69, 0.12);
    transform: translateY(-5px);
}

/* --- Header / Sticky Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 17, 16, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 186, 115, 0.08);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.2rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.logo-icon {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--accent-clay);
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-clay);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* --- Burger Menu Styles --- */
.burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1051;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(18, 17, 16, 0.3) 0%,
        rgba(18, 17, 16, 0.7) 60%,
        var(--bg-primary) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-clay);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent-clay);
    color: var(--text-main);
    border: 1px solid var(--accent-clay);
    box-shadow: 0 4px 15px rgba(217, 98, 69, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-clay-hover);
    border-color: var(--accent-clay-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 98, 69, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid rgba(229, 186, 115, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(229, 186, 115, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
}

/* --- Features / Nav Grid Layout --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    text-align: center;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--accent-clay);
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Split Sections --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border);
}

.split-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 17, 16, 0.5) 0%, transparent 60%);
}

.split-image {
    transition: var(--transition-smooth);
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.split-image-container:hover .split-image {
    transform: scale(1.04);
}

.split-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(217, 98, 69, 0.1);
    border: 1px solid rgba(217, 98, 69, 0.25);
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-clay);
    margin-bottom: 1.2rem;
}

.split-content h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.split-content p {
    font-size: 1.05rem;
}

/* --- Transport Details Card --- */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.transport-card {
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.transport-icon-box {
    background: rgba(217, 98, 69, 0.08);
    border: 1px solid rgba(217, 98, 69, 0.2);
    width: 55px;
    height: 55px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-clay);
    flex-shrink: 0;
}

.transport-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
}

.transport-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(229, 186, 115, 0.08);
    padding-top: 1rem;
}

.transport-detail-item {
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.transport-detail-item span:first-child {
    color: var(--text-muted);
}

.transport-detail-item span:last-child {
    font-weight: 600;
    color: var(--text-main);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    height: 450px;
}

/* --- Tickets Pricing Flex --- */
.pricing-flex {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.pricing-card {
    flex: 1;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: rgba(217, 98, 69, 0.4);
    background: linear-gradient(135deg, rgba(28, 26, 24, 0.9) 0%, rgba(18, 17, 16, 0.85) 100%);
}

.pricing-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--accent-clay);
    color: var(--text-main);
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    text-transform: uppercase;
}

.pricing-header {
    border-bottom: 1px solid rgba(229, 186, 115, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-clay);
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    font-family: 'Cinzel', serif;
}

.pricing-amount span {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pricing-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-list-check {
    color: var(--accent-clay);
    font-weight: bold;
}

/* --- Tour Card Grid --- */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-card {
    overflow: hidden;
}

.tour-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-image {
    transform: scale(1.06);
}

.tour-provider-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.tour-provider-badge.viator {
    background-color: #ff5a5f;
    color: #fff;
}

.tour-price-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.tour-info {
    padding: 1.8rem 1.5rem 1.5rem;
}

.tour-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    min-height: 3.4rem;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f1c40f;
}

.tour-reviews {
    color: var(--text-muted);
}

.tour-duration {
    color: var(--text-muted);
}

.tour-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tour-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-features li::before {
    content: '•';
    color: var(--accent-clay);
}

.tour-button {
    width: 100%;
}

/* --- FAQ Accordion & List --- */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 2rem;
}

.faq-question {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-q-badge {
    color: var(--accent-clay);
    font-weight: 800;
}

.faq-answer {
    padding-left: 1.8rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Subtle Image Credit Utility --- */
.image-credit {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.4rem;
    padding-right: 0.5rem;
    font-style: italic;
}

.image-credit a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.image-credit a:hover {
    color: var(--text-main);
}

/* --- Weather Widget --- */
.weather-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
}

.weather-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(229, 186, 115, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-clay);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Footer --- */
.footer {
    background-color: #0c0b0a;
    border-top: 1px solid rgba(229, 186, 115, 0.08);
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-contact-icon {
    color: var(--accent-clay);
}

.footer-bottom {
    border-top: 1px solid rgba(229, 186, 115, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive & Tablet Styles (burger navigation) --- */
@media (max-width: 1024px) {
    .nav-container {
        height: 70px;
    }
    
    .burger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(18, 17, 16, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-smooth);
        z-index: 1050;
        border-top: 1px solid rgba(229, 186, 115, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-flex {
        flex-direction: column;
        gap: 2rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    .section {
        padding: 4rem 0;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.8rem;
    }
    .hero-btn-container {
        flex-direction: column;
        gap: 1rem;
    }
}
