/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --jungle: #0E3A53;
    --gold: #F3A71E;
    --white: #F7FAFC;
    --gray: #1F2937;
    --leaf: #2FBF71;
    --shadow: rgba(0, 0, 0, 0.1);
    --text-shadow: rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray);
    background: var(--white);
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(14, 58, 83, 0.05) 1px, transparent 0);
    background-size: 20px 20px;
    padding-top: 56px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    color: var(--jungle);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    color: var(--jungle);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--gray);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

.btn-secondary {
    background: var(--jungle);
    color: var(--white);
    border-color: var(--jungle);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--jungle);
    border-color: var(--jungle);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--jungle);
    border-color: var(--jungle);
}

.btn-outline:hover {
    background: var(--jungle);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(247, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(14, 58, 83, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-logo a {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: var(--jungle);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gold);
    color: var(--gray);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--jungle);
    color: var(--white);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--jungle);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, rgba(47, 191, 113, 0.05) 100%);
    padding-top: 56px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    color: var(--jungle);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--text-shadow);
}

.hero-line {
    display: block;
}

.hero-subhead {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-proof {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    opacity: 0.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-copy {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(47, 191, 113, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 58, 83, 0.02) 100%);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow);
}

.gallery-track {
    display: flex;
    transition: transform 0.3s ease;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    font-weight: 500;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--jungle);
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: var(--gold);
    color: var(--gray);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* Visit Section */
.visit {
    padding: 6rem 0;
    background: var(--jungle);
    color: var(--white);
}

.visit h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.visit-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.visit-info {
    display: grid;
    gap: 2rem;
}

.visit-item h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.visit-map {
    position: relative;
}

.visit-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.map-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--gray);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.visit-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legend Section */
.legend {
    padding: 6rem 0;
    background: var(--white);
}

.legend h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 4rem;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: rgba(47, 191, 113, 0.05);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--jungle);
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: var(--gold);
    text-align: center;
}

.final-cta h2 {
    color: var(--gray);
    margin-bottom: 2rem;
}

.final-cta-buttons {
    margin-bottom: 2rem;
}

.final-cta-buttons .btn {
    margin: 0 0.5rem;
}

.sightings-counter {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 600;
}

#counter {
    color: var(--jungle);
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-proof {
        flex-direction: column;
        gap: 0.5rem;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visit-ctas {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons .btn {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-ctas .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 3rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 10px;
    }
}