/* Roadtrip Showcase Styles */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.7;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Intro Section */
.intro-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.intro-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.intro-text p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Container Narrow */
.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

/* Reveal Sections */
.reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile: No fancy animations, just show content */
@media (max-width: 768px) {
    .reveal-section {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Section Headers */
.reveal-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Stats Section */
.stats-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Route Map Section */
.map-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.route-map {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.route-map iframe {
    border-radius: 12px;
    display: block;
}

/* Bests Section */
.bests-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.best-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.best-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.best-image {
    width: 350px;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    flex-shrink: 0;
}

.best-content {
    flex: 1;
    min-width: 0;
}

.best-category {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.best-name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.best-description {
    opacity: 0.8;
    line-height: 1.6;
}

.best-description p {
    margin: 0 0 1rem 0;
}

.best-description p:last-child {
    margin-bottom: 0;
}

/* Wildlife Section */
.wildlife-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.wildlife-section > .container-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.wildlife-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
}

.wildlife-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.wildlife-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.wildlife-video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.wildlife-content {
    padding: 1.5rem;
}

.wildlife-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.wildlife-description {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Timeline Section */
.timeline-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.timeline {
    position: relative;
    padding-left: 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    align-items: center;
}

.timeline-image {
    width: 350px;
    height: 233px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.revealed .timeline-item {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }
.timeline-item:nth-child(6) { transition-delay: 0.6s; }
.timeline-item:nth-child(7) { transition-delay: 0.7s; }
.timeline-item:nth-child(8) { transition-delay: 0.8s; }
.timeline-item:nth-child(9) { transition-delay: 0.9s; }
.timeline-item:nth-child(10) { transition-delay: 1s; }
.timeline-item:nth-child(11) { transition-delay: 1.1s; }

.timeline-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

.timeline-number {
    font-size: 3rem;
    font-weight: 600;
    opacity: 0.3;
    min-width: 80px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    min-width: 0;
}

.timeline-content h3 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
}

.timeline-content p {
    margin: 0 0 0.5rem 0;
    opacity: 0.8;
    line-height: 1.6;
}

.timeline-date {
    font-size: 0.875rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Section */
.footer-section {
    padding: 4rem 2rem;
    text-align: center;
    opacity: 0.7;
}

.footer-section p {
    margin: 1rem 0;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .intro-text {
        font-size: 1.2rem;
    }

    .reveal-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .best-card {
        flex-direction: column;
    }

    .best-image {
        width: 100%;
        height: 200px;
    }

    .wildlife-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .timeline-image {
        width: 100%;
        height: auto;
        aspect-ratio: 3/2;
    }

    .timeline-number {
        font-size: 2rem;
        min-width: auto;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }

    .waypoint-labels .label {
        font-size: 0.7rem;
    }

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