/* =============================================
   WING IT ON WHEELS - Story Page Styles
   ============================================= */

/* Story Hero */
.story-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-darker) 50%, var(--color-dark) 100%);
    text-align: center;
    position: relative;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(227, 24, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(227, 24, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.story-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.story-subtitle {
    font-size: 1.3rem;
    color: var(--color-light-gray);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Story Page Section */
.story-page-section {
    padding: 80px 0;
    background: var(--color-black);
}

.story-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.story-intro p {
    font-size: 1.2rem;
    color: var(--color-light-gray);
    line-height: 1.8;
}

/* Story Timeline Full */
.story-timeline-full {
    max-width: 900px;
    margin: 0 auto;
}

/* Story Chapter */
.story-chapter {
    background: var(--color-dark);
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid rgba(227, 24, 55, 0.3);
    transition: var(--transition);
}

.story-chapter:hover {
    border-color: var(--color-red);
    box-shadow: var(--shadow);
}

.chapter-header {
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.chapter-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.chapter-title {
    flex: 1;
}

.chapter-title h2 {
    font-size: 1.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.chapter-date {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
    font-family: var(--font-body);
}

.chapter-content {
    padding: 35px;
}

.chapter-content p {
    color: var(--color-light-gray);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.chapter-content p:last-child {
    margin-bottom: 0;
}

/* Story Lists */
.story-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.story-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(227, 24, 55, 0.1);
    border-left: 4px solid var(--color-red);
    border-radius: 0 10px 10px 0;
    color: var(--color-light-gray);
    line-height: 1.7;
}

.story-list li strong {
    color: var(--color-white);
}

/* Future Chapter */
.story-chapter-future {
    border: 2px dashed var(--color-red);
    background: transparent;
}

.story-chapter-future .chapter-header {
    background: transparent;
    border-bottom: 2px dashed var(--color-red);
}

.story-chapter-future .chapter-title h2 {
    color: var(--color-red);
}

.coming-soon-large {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-red);
    text-align: center;
    letter-spacing: 3px;
    padding: 30px 0;
}

/* Story CTA */
.story-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-darker) 100%);
}

.story-cta .cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.story-cta .cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .story-hero {
        padding: 150px 0 80px;
    }

    .story-hero h1 {
        font-size: 2.5rem;
    }

    .chapter-header {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .chapter-title h2 {
        font-size: 1.5rem;
    }

    .chapter-content {
        padding: 25px;
    }

    .chapter-content p {
        font-size: 1rem;
    }

    .story-list li {
        padding: 12px 15px;
    }

    .coming-soon-large {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .chapter-header {
        padding: 15px 20px;
    }

    .chapter-icon {
        font-size: 2rem;
    }

    .chapter-title h2 {
        font-size: 1.3rem;
    }

    .chapter-content {
        padding: 20px;
    }

    .story-cta .cta-box h2 {
        font-size: 2rem;
    }
}
