/* ==================== BASE & COULEURS ORIGINALES ==================== */
* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: Futura, 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
    background: #111;
    color: #EEEEEE;
    line-height: 1.6;
    font-size: 16px;
}

a { color: #9C1F1F; text-decoration: none; }
a:hover { color: #EEEEEE; }
a:focus-visible {
    outline: 2px solid #EEEEEE;
    outline-offset: 4px;
}

main p,
.section p {
    text-align: justify;
}

/* ==================== HEADER & NAV ==================== */
.header {
    position: sticky;
    top: 0;
    background: #111;
    border-bottom: 2px solid #9C1F1F;
    z-index: 100;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #9C1F1F;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 18px;
    font-size: 1rem;
}

.nav-menu li {
    flex-shrink: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #EEEEEE;
    border-bottom: 2px solid #9C1F1F;
}

/* Bouton Acheter DVD */
.btn-buy {
    background: #9C1F1F;
    color: #111;
    padding: 8px 20px;
    font-weight: bold;
    border: 2px solid #9C1F1F;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-buy:hover {
    background: #111;
    color: #9C1F1F;
}

/* Hamburger */
.hamburger {
    appearance: none;
    background: transparent;
    border: 0;
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span { 
    width: 30px; 
    height: 3px; 
    background: #9C1F1F; 
}

/* ==================== HERO ==================== */
.hero {
    min-height: 90vh;
    background: #111;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.2rem;
    color: #9C1F1F;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.teaser-video {
    border: 2px solid #9C1F1F;
    display: block;
    width: 100%;
}

.subtitle {
    font-size: 1.35rem;
    color: #AAA;
    margin-bottom: 40px;
    font-style: italic;
    text-align: center;
}

.subtitle .cyber {
    font-style: normal;
    color: #9C1F1F;
}

.twenty-years-note {
    max-width: 820px;
    margin: 0 auto 42px;
    color: #CCCCCC;
    font-size: 1.15rem;
    line-height: 1.75;
    text-align: justify;
}

.twenty-years-note strong {
    display: block;
    color: #C83A3A;
    font-size: 1.28rem;
    line-height: 1.45;
    margin-bottom: 12px;
    text-align: center;
}

.excerpt-intro {
    max-width: 820px;
    margin: 48px auto 26px;
    text-align: left;
}

.excerpt-kicker {
    color: #9C1F1F;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: left;
}

.excerpt-intro h2 {
    color: #EEEEEE;
    font-size: 1.55rem;
    line-height: 1.35;
    margin-bottom: 12px;
}

.excerpt-intro p {
    color: #CCCCCC;
    line-height: 1.75;
}

.excerpt-credit {
    color: #AAAAAA;
    font-size: 0.95rem;
    margin-top: 14px;
}

.excerpt-credit strong {
    color: #EEEEEE;
}

.dream-quote {
    background: #1A1A1A;
    border: 1px solid #9C1F1F;
    padding: 35px 40px;
    margin: 50px auto;
    max-width: 680px;
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.45;
    color: #EEEEEE;
}

.hero-cta {
    margin: 60px 0 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: bold;
}

.btn-primary {
    background: #9C1F1F;
    color: #111;
}

.btn-secondary {
    border: 2px solid #9C1F1F;
    color: #9C1F1F;
}

/* ==================== ÉLÉMENTS SPÉCIFIQUES AUX NOUVELLES PAGES ==================== */
.timeline-item, .credits-grid > div > div {
    background: #1A1A1A;
    border-left: 4px solid #9C1F1F;
    padding: 22px 28px;
    margin-bottom: 28px;
    line-height: 1.75;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #111;
    border: 2px solid #9C1F1F;
    margin: 50px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.synopsis {
    max-width: 820px;
    margin: 60px auto;
    text-align: left;
    line-height: 1.75;
    font-size: 1.1rem;
    color: #EEEEEE;
}

/* ==================== FOOTER ==================== */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
}

footer p {
    text-align: center;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1180px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #111;
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        gap: 35px;
        font-size: 1.5rem;
        transition: left 0.3s;
    }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    .logo a { font-size: 1.05rem; letter-spacing: 1px; }
    .hero h1 { font-size: 2.15rem; letter-spacing: 2px; }
    .subtitle { font-size: 1.1rem; }
    .twenty-years-note { font-size: 1rem; text-align: left; }
    .twenty-years-note strong { font-size: 1.08rem; text-align: center; }
    .excerpt-intro h2 { font-size: 1.28rem; }
}
