/* ============================================
   THÉÂTRE DE ROUGEMONT — EXACT DESIGN MATCH
   Color palette extracted from screenshots/PDFs
   ============================================ */

:root {
    /* Primary palette from design */
    --maroon: #4a1018;           /* Section titles, headings */
    --maroon-dark: #3b1510;      /* Nav, footer background */
    --maroon-deep: #2d1510;      /* Darkest footer */
    --red-accent: #8b1a2b;       /* Labels, dividers, highlights */
    --red-bright: #d32027;       /* Hearts, badges bright red */
    --terracotta: #c1694f;       /* Hero left, S'abonner button */
    --cream: #f5efe6;            /* Billetterie background */
    --peach: #e8c08a;            /* Infolettre background */
    --gold: #c9a050;             /* Prices, social borders */
    --white: #ffffff;
    --text-dark: #2d1e1a;        /* Body text dark */
    --text-body: #4a3830;        /* Body text regular */
    --text-light: #6b5d57;       /* Secondary text */

    /* Fonts */
    --font-display: 'Gabarito', Arial, sans-serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --font-serif: 'Gabarito', Arial, sans-serif;

    --transition: all 0.3s ease;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* === Reset === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);color:#000;background:var(--white);line-height:1.7;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:var(--transition)}
ul{list-style:none}

.container{max-width:1200px;margin:0 auto;padding:0 2rem}

/* ============================================
   NAVIGATION — dark maroon bar
   ============================================ */
.nav{
    position:fixed;top:0;left:0;right:0;z-index:1000;
    background:var(--maroon-dark);
    border-bottom:1px solid rgba(201,160,80,0.12);
}
.nav-container{
    max-width:1400px;margin:0 auto;padding:0 2rem;
    display:flex;justify-content:space-between;align-items:center;
    height:90px;
}
.nav-logo img{height:80px;width:auto;transition:var(--transition)}
.nav-logo img:hover{transform:scale(1.03)}
.nav-menu{display:flex;gap:2.5rem;align-items:center}
.nav-menu a{
    color:#f4e8d8;font-weight:400;font-size:0.9rem;
    letter-spacing:1px;text-transform:uppercase;
    position:relative;padding:0.5rem 0;
}
.nav-menu a::after{
    content:'';position:absolute;bottom:0;left:0;
    width:0;height:2px;background:var(--gold);
    transition:width 0.4s ease;
}
.nav-menu a:hover::after{width:100%}
.nav-active{color:var(--gold) !important}
.nav-active::after{width:100% !important}

/* DROPDOWN PROGRAMMATION */
.nav-dropdown{position:relative}
.nav-dropdown>a{cursor:pointer}
.nav-dropdown>a::before{
    content:'▾';margin-left:5px;font-size:0.7em;opacity:0.7;
    display:inline;
}
.nav-dropdown-menu{
    position:absolute;top:100%;left:50%;transform:translateX(-50%);
    background:var(--maroon-dark);
    border:1px solid rgba(201,160,80,0.2);
    border-radius:8px;
    padding:0.5rem 0;
    min-width:200px;
    opacity:0;visibility:hidden;
    transition:opacity 0.3s ease, visibility 0.3s ease;
    box-shadow:0 8px 30px rgba(0,0,0,0.4);
    z-index:1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu{
    opacity:1;visibility:visible;
}
.nav-dropdown-menu li{list-style:none}
.nav-dropdown-menu a{
    display:block !important;
    padding:0.6rem 1.2rem !important;
    font-size:0.82rem !important;
    letter-spacing:0.5px;
    white-space:nowrap;
    text-transform:none !important;
    color:#f4e8d8 !important;
    transition:background 0.2s ease, color 0.2s ease;
}
.nav-dropdown-menu a::after{display:none !important}
.nav-dropdown-menu a:hover{
    background:rgba(201,160,80,0.12);
    color:var(--gold) !important;
}

/* BILLETTERIE button in nav */
.nav-btn-billetterie{
    border:2px solid var(--red-accent) !important;
    padding:0.6rem 1.8rem !important;
    border-radius:50px;
    color:white !important;
    font-weight:700 !important;
}
.nav-btn-billetterie::after{display:none !important}
.nav-btn-billetterie:hover{background:var(--red-accent)}

/* Mobile toggle */
.nav-toggle{display:none;flex-direction:column;gap:6px;cursor:pointer}
.nav-toggle span{width:28px;height:3px;background:#f4e8d8;border-radius:2px;transition:var(--transition)}
.nav-toggle.active span:nth-child(1){transform:rotate(45deg) translate(6px,6px)}
.nav-toggle.active span:nth-child(2){opacity:0}
.nav-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(6px,-6px)}

/* ============================================
   CAROUSEL — full-width image slides
   ============================================ */
.carousel-section{padding-top:90px;background:var(--maroon-dark)}
.carousel{position:relative;width:100%;overflow:hidden}
.carousel-track{position:relative;width:100%}
.carousel-slide{display:none;width:100%;cursor:pointer}
.carousel-slide.active{display:block;animation:fadeSlide 0.7s ease}
@keyframes fadeSlide{from{opacity:0}to{opacity:1}}
.carousel-slide>picture{display:block;width:100%}
.carousel-slide>picture>img,.carousel-slide>img{width:100%;display:block;height:calc(100vh - 90px);object-fit:cover;object-position:top center}

.carousel-btn{
    position:absolute;top:50%;transform:translateY(-50%);
    background:rgba(0,0,0,0.35);color:#fff;border:none;
    width:46px;height:46px;border-radius:50%;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:var(--transition);z-index:10;
}
.carousel-btn:hover{background:var(--red-accent);transform:translateY(-50%) scale(1.1)}
.carousel-btn-prev{left:20px}
.carousel-btn-next{right:20px}

.carousel-dots{
    position:absolute;bottom:24px;left:50%;transform:translateX(-50%);
    display:flex;gap:10px;z-index:10;
}
.carousel-dot{
    width:12px;height:12px;border-radius:50%;
    border:2px solid rgba(255,255,255,0.7);background:transparent;
    cursor:pointer;padding:0;transition:var(--transition);
}
.carousel-dot.active{background:#fff;border-color:#fff}
.carousel-dot:hover{background:rgba(255,255,255,0.5)}

/* ============================================
   SECTION HEADINGS — dark maroon, Playfair
   ============================================ */
.section-heading{
    font-family:var(--font-display);font-weight:700;
    font-size:clamp(2rem,4vw,3rem);
    text-align:center;color:var(--maroon);
    margin-bottom:3rem;
}

/* ============================================
   BUTTONS — exact design match
   ============================================ */
.btn{
    display:inline-block;text-align:center;
    padding:0.85rem 2rem;border-radius:50px;
    font-size:0.95rem;font-weight:600;
    cursor:pointer;transition:var(--transition);border:none;
    font-family:var(--font-body);
}
/* Outline — thin border, dark text */
.btn-outline{
    background:transparent;border:1.5px solid var(--text-dark);
    color:var(--text-dark);
}
.btn-outline:hover{background:var(--text-dark);color:#fff}
/* Primary — dark maroon fill */
.btn-primary{background:var(--maroon);color:#fff}
.btn-primary:hover{background:#3a0c12;transform:translateY(-1px)}
/* Dark — very dark brown (Acheter des billets) */
.btn-dark{
    background:var(--maroon-dark);color:#fff;
    border-radius:50px;padding:0.75rem 2rem;
}
.btn-dark:hover{background:#4a2520;transform:translateY(-1px)}
/* Terracotta — S'abonner */
.btn-terracotta{background:var(--terracotta);color:#fff;border-radius:50px;padding:0.85rem 2.5rem}
.btn-terracotta:hover{background:#a85a42}

/* ============================================
   PROGRAMMATION — white background
   ============================================ */
.section-programmation{padding:5rem 0;background:var(--white)}
.prog-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.prog-card{background:var(--white);border-radius:12px;overflow:hidden;box-shadow:var(--shadow)}
.prog-card-img-wrap{position:relative;overflow:hidden;padding:1rem 1rem 0}
.prog-card-img-wrap img{width:100%;height:auto;object-fit:contain;border-radius:12px;transition:transform 0.4s ease}
.prog-card:hover .prog-card-img-wrap img{transform:scale(1.03)}
.prog-badge{
    position:absolute;top:28px;left:28px;
    background:#fff;color:var(--maroon);
    padding:0.4rem 1.1rem;border-radius:50px;
    font-size:0.75rem;font-weight:700;letter-spacing:1px;
}
.prog-badge-comedie{background:#fff;color:var(--maroon)}
.prog-card-title{font-family:var(--font-display);font-size:1.6rem;font-weight:700;color:var(--text-dark);padding:1.5rem 1.5rem 0.25rem}
.prog-card-dates{font-size:0.95rem;color:#9f3c2c;padding:0 1.5rem;line-height:1.5;font-family:var(--font-display);font-weight:400}
.prog-card-highlight{color:var(--red-accent);font-weight:700;font-size:0.85rem;letter-spacing:1px;padding:0.5rem 1.5rem 0}
.prog-card-buttons{padding:1.25rem 1.5rem 1.75rem;display:flex;flex-direction:column;gap:0.75rem}

/* ============================================
   BILLETTERIE — cream background
   ============================================ */
.section-billetterie{padding:5rem 0;background:var(--cream)}
.bill-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-bottom:3rem}
.bill-sub-title{
    font-family:var(--font-display);font-size:1rem;
    font-weight:700;color:var(--maroon);
    letter-spacing:1px;margin-bottom:1rem;text-transform:uppercase;
}
.bill-text{color:#000;margin-bottom:0.5rem;line-height:1.7}
.bill-schedule{margin-bottom:0.25rem}
.text-link{color:var(--text-dark);text-decoration:underline}
.text-link:hover{color:var(--red-accent)}

.tarif-row{display:flex;justify-content:space-between;align-items:center;padding:1rem 0;border-bottom:1px solid rgba(0,0,0,0.08)}
.tarif-row:last-child{border-bottom:none}
.tarif-price{font-family:var(--font-display);font-weight:700;font-size:1.15rem;color:var(--gold)}

.bill-reservation{padding:2.5rem 0;border-top:1px solid rgba(0,0,0,0.08);margin-bottom:2rem}
.bill-reservation .bill-sub-title{color:var(--red-accent)}

.bill-shows{border-top:1px solid rgba(0,0,0,0.08)}
.bill-show-row{display:flex;justify-content:space-between;align-items:center;padding:1.25rem 0;border-bottom:2px solid var(--red-accent)}
.bill-show-name{font-family:var(--font-display);font-size:1.3rem;font-weight:700;color:var(--red-accent)}

/* ============================================
   NOUS JOINDRE — white background
   ============================================ */
.section-contact{padding:5rem 0;background:var(--white)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.contact-venue{font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:var(--text-dark);margin-bottom:2rem}
.contact-block{margin-bottom:1.75rem;padding-bottom:1.75rem;border-bottom:2px solid var(--red-accent)}
.contact-block:last-child{border-bottom:none}
.contact-label{
    font-family:var(--font-display);font-size:0.85rem;
    font-weight:700;color:var(--red-accent);
    letter-spacing:1.5px;text-transform:uppercase;margin-bottom:0.5rem;
}
.contact-info p{color:#000}
.contact-info a{color:#000}
.contact-info a:hover{color:var(--red-accent)}
.contact-map{width:100%;min-height:450px;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.contact-map iframe{width:100%;height:100%;min-height:450px}

/* ============================================
   INFOLETTRE — peach background
   ============================================ */
.section-infolettre{padding:5rem 0;background:var(--peach);text-align:center}
.section-infolettre .section-heading{color:var(--maroon)}
.infolettre-text{max-width:700px;margin:0 auto 2rem;color:var(--text-dark);font-size:1.05rem;line-height:1.7}
.infolettre-form{display:flex;gap:0;justify-content:center;max-width:600px;margin:0 auto}
.infolettre-input{
    flex:1;padding:1rem 1.5rem;
    border:2px solid rgba(0,0,0,0.1);border-right:none;
    border-radius:50px 0 0 50px;
    font-size:1rem;font-family:var(--font-body);
    background:#fff;outline:none;transition:var(--transition);
}
.infolettre-input:focus{border-color:var(--terracotta)}
.infolettre-form .btn-terracotta{border-radius:0 50px 50px 0;white-space:nowrap}

/* ============================================
   FOOTER — very dark maroon
   ============================================ */
.site-footer{background:#4c0b06;color:#f4e8d8;padding:4rem 0 2rem}
.footer-grid{
    display:grid;grid-template-columns:auto 1fr 1fr 1fr;
    gap:3rem;margin-bottom:3rem;padding-bottom:3rem;
    border-bottom:1px solid rgba(201,160,80,0.2);
}
.footer-col-logo{display:flex;align-items:flex-start}
.footer-logo-img{height:100px;width:auto}
.footer-nav{display:flex;flex-direction:column;gap:0.5rem}
.footer-nav a{color:#f4e8d8;font-size:0.9rem;letter-spacing:0.5px;transition:var(--transition)}
.footer-nav a:hover{color:var(--gold);padding-left:4px}
.footer-col-title{font-family:var(--font-display);font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:1rem}
.footer-col p{font-size:0.9rem;line-height:1.6;opacity:0.9}
.footer-col a{color:#f4e8d8}
.footer-col a:hover{color:var(--gold)}
.footer-social{display:flex;gap:1rem;margin-top:1.25rem}
.social-circle{
    display:flex;align-items:center;justify-content:center;
    width:44px;height:44px;border-radius:50%;
    border:2px solid var(--gold);color:var(--gold);
    transition:var(--transition);
}
.social-circle:hover{background:var(--gold);color:#fff;border-color:var(--gold);transform:translateY(-3px)}
.social-circle:hover svg path,
.social-circle:hover svg rect,
.social-circle:hover svg circle,
.social-circle:hover svg line{fill:#fff !important;stroke:#fff !important}
.social-circle:hover svg[fill="none"] rect,
.social-circle:hover svg[fill="none"] circle,
.social-circle:hover svg[fill="none"] line{fill:none !important;stroke:#fff !important}

.footer-legal{display:flex;justify-content:space-between;align-items:center;font-size:0.85rem;color:rgba(244,232,216,0.6);padding-top:1.5rem}
.footer-legal-links{display:flex;gap:0.75rem;align-items:center}
.footer-legal-links a{color:rgba(244,232,216,0.8)}
.footer-legal-links a:hover{color:var(--gold)}
.footer-legal-links .sep{color:rgba(201,160,80,0.3)}
.footer-copyright{margin:0}

/* ============================================
   LEGAL PAGES — Confidentialité, Conditions, Loi 25
   ============================================ */
.legal-page{padding-top:90px;background:var(--white)}
.legal-hero{
    background:linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 60%, var(--red-accent) 100%);
    padding:4rem 0 3rem;
    position:relative;
    overflow:hidden;
}
.legal-hero::before{
    content:'';position:absolute;top:0;left:0;right:0;bottom:0;
    background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a050' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.legal-hero .container{position:relative;z-index:1}
.legal-hero-icon{
    width:56px;height:56px;border-radius:50%;
    background:rgba(201,160,80,0.15);border:2px solid rgba(201,160,80,0.3);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:1.25rem;
}
.legal-hero-icon svg{color:var(--gold)}
.legal-hero h1{
    font-family:var(--font-display);font-size:clamp(1.8rem,4vw,2.6rem);
    font-weight:700;color:#fff;margin-bottom:0.5rem;
}
.legal-hero p{
    font-family:var(--font-body);font-size:1.05rem;
    color:rgba(244,232,216,0.7);max-width:600px;
}
.legal-hero-date{
    display:inline-block;margin-top:1rem;
    font-size:0.85rem;color:rgba(201,160,80,0.8);
    border:1px solid rgba(201,160,80,0.25);
    padding:0.3rem 0.9rem;border-radius:50px;
}
.legal-content{padding:3rem 0 4rem}
.legal-content .container{max-width:860px}
.legal-nav{
    background:var(--cream);border-radius:var(--radius);
    padding:1.5rem 2rem;margin-bottom:2.5rem;
    border-left:4px solid var(--gold);
}
.legal-nav-title{
    font-family:var(--font-display);font-size:0.85rem;
    text-transform:uppercase;letter-spacing:1.5px;
    color:var(--text-light);margin-bottom:0.75rem;font-weight:600;
}
.legal-nav ol{counter-reset:toc;padding-left:0}
.legal-nav ol li{counter-increment:toc;margin-bottom:0.4rem}
.legal-nav ol li a{
    color:var(--maroon);font-size:0.95rem;
    transition:var(--transition);display:inline-block;
}
.legal-nav ol li a::before{
    content:counter(toc) ". ";color:var(--gold);font-weight:700;
}
.legal-nav ol li a:hover{color:var(--red-accent);padding-left:4px}
.legal-section{margin-bottom:2.5rem}
.legal-section-number{
    display:inline-block;
    font-family:var(--font-display);font-size:0.75rem;
    font-weight:700;color:var(--gold);
    background:rgba(201,160,80,0.1);
    padding:0.15rem 0.6rem;border-radius:50px;
    margin-bottom:0.5rem;letter-spacing:0.5px;
}
.legal-section h2{
    font-family:var(--font-display);font-size:1.4rem;
    font-weight:700;color:var(--maroon);margin-bottom:1rem;
}
.legal-section p{
    color:var(--text-body);line-height:1.85;
    margin-bottom:0.75rem;font-size:0.95rem;
}
.legal-section ul{margin:0.75rem 0 0.75rem 1.5rem;list-style:disc}
.legal-section ul li{
    color:var(--text-body);line-height:1.8;
    margin-bottom:0.35rem;font-size:0.95rem;
}
.legal-section a{color:var(--red-accent);text-decoration:underline;text-underline-offset:3px}
.legal-section a:hover{color:var(--maroon)}
.legal-highlight{
    background:var(--cream);border-radius:var(--radius);
    padding:1.25rem 1.5rem;margin:1rem 0;
    border-left:3px solid var(--terracotta);
}
.legal-highlight p{margin-bottom:0;color:var(--text-dark);font-weight:400}
.legal-contact-box{
    background:linear-gradient(135deg,rgba(201,160,80,0.08),rgba(201,160,80,0.02));
    border:1px solid rgba(201,160,80,0.2);
    border-radius:var(--radius);padding:2rem;margin-top:2rem;
    text-align:center;
}
.legal-contact-box h3{
    font-family:var(--font-display);font-size:1.15rem;
    font-weight:700;color:var(--maroon);margin-bottom:0.5rem;
}
.legal-contact-box p{color:var(--text-body);font-size:0.95rem;margin-bottom:0}
.legal-contact-box a{color:var(--red-accent);font-weight:700}

/* ============================================
   PAGE HEADER — white background (matches PDFs)
   ============================================ */
.page-header{padding-top:90px;background:var(--white);padding-bottom:1rem}
.page-header .container{padding-top:3rem}
.page-header-title{font-family:var(--font-display);font-size:clamp(2rem,5vw,3rem);font-weight:700;color:var(--maroon);margin-bottom:0.5rem}
.page-header-sub{font-family:var(--font-display);font-size:1.3rem;color:#9f3c2c;line-height:1.6;font-weight:400}

/* ============================================
   FORFAITS PAGE
   ============================================ */
.forfait-section{padding:3rem 0;background:var(--white)}
.forfait-block{display:grid;grid-template-columns:350px 1fr;gap:2.5rem;align-items:start;margin-bottom:2rem}
.forfait-img img{width:100%;border-radius:var(--radius)}
.forfait-title{font-family:var(--font-display);font-size:1.6rem;font-weight:700;color:var(--text-dark);margin-bottom:0.75rem}
.forfait-subtitle{font-family:var(--font-display);font-weight:400;color:#9f3c2c;margin-bottom:0.75rem;font-size:1.05rem}
.forfait-content p{color:#000;line-height:1.7;margin-bottom:0.75rem}
.forfait-buttons{display:flex;gap:1rem;margin-top:1rem}
.forfait-video{max-width:750px;margin:0 auto 1rem}
.section-divider{border:none;border-top:3px solid var(--gold);margin:0}

/* Certificat-cadeau — dark maroon */
.section-certificat{background:#9f3c2c;padding:4rem 0;text-align:center}
.certificat-title{font-family:var(--font-display);font-size:clamp(1.8rem,4vw,2.5rem);font-weight:700;color:#fff;margin-bottom:1.5rem}
.certificat-text{color:rgba(255,255,255,0.85);max-width:700px;margin:0 auto 0.75rem;line-height:1.7}

/* ============================================
   À PROPOS PAGE
   ============================================ */
.apropos-bio{padding:4rem 0;background:var(--white)}
.bio-grid{display:grid;grid-template-columns:300px 1fr;gap:3rem;align-items:center;max-width:800px}
.bio-photo{text-align:left}
.bio-photo img{width:300px;height:350px;object-fit:cover;border-radius:var(--radius);margin-bottom:0.75rem}
.bio-photo-caption{font-size:0.8rem;color:#6b5d57;line-height:1.6;text-align:left}
.bio-photo-caption strong{color:#000}
.bio-text p{color:#000;line-height:1.7;font-size:1.35rem;font-weight:400;max-width:400px}

/* Heritage — dark maroon background */
.apropos-heritage{background:var(--maroon);padding:4rem 0;color:#fff}
.heritage-grid{display:grid;grid-template-columns:350px 400px;gap:4rem}
.heritage-col:first-child p{line-height:1.7;font-size:1.15rem;font-weight:700}
.heritage-grid .heritage-col:last-child p{line-height:1.7;font-size:0.9rem !important;opacity:0.9;font-weight:400 !important}

/* Stats — beige background */
.apropos-stats{background:#e7dbc7;padding:4rem 0;text-align:center}
.stats-title{font-family:var(--font-display);font-size:1.8rem;font-weight:700;color:#4b0a05;margin-bottom:2.5rem}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem;max-width:800px;margin:0 auto}
.stat-item{text-align:center}
.stat-number{display:block;font-family:var(--font-display);font-size:3rem;font-weight:700;color:#8b1a2b;line-height:1.2}
.stat-label{display:block;font-size:0.95rem;color:#6b5d57;letter-spacing:0.5px;margin-top:0.25rem}

/* Content sections — white */
.apropos-section{padding:3rem 0;background:var(--white)}
.apropos-section .container{max-width:1200px;padding:0 350px 0 2rem}
.apropos-section-title{font-family:var(--font-display);font-size:2rem;font-weight:700;color:#4b0a05;margin-bottom:1.5rem}
.apropos-section p{color:#6b5d57;line-height:1.8;margin-bottom:0.75rem;font-size:0.95rem}
.talents-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.25rem 2rem;margin-top:1rem}
.talents-col p{font-size:0.95rem;margin-bottom:0.3rem;color:var(--text-dark)}

/* Spectacles incontournables — background image */
.apropos-spectacles{
    background-image:url('../img/theatre-rougemont-a-propos-fond.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:5rem 0;text-align:center;
}
.spectacles-main-title{font-family:var(--font-display);font-size:2.2rem;font-weight:700;color:#fff;margin-bottom:3rem}
.spectacles-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;max-width:750px;margin:0 auto 2.5rem}
.spectacle-stat{
    border:2px solid rgba(201,160,80,0.7);
    border-radius:8px;overflow:hidden;
    padding:8px;
    background:rgba(255,255,255,0.05);
}
.spectacle-name{display:block;font-size:0.8rem;letter-spacing:2px;color:var(--gold);font-weight:700;margin-bottom:0.5rem}
.spectacle-number{display:block;font-family:var(--font-display);font-size:3rem;font-weight:700;color:#fff;line-height:1.2}
.spectacle-label{display:block;font-size:0.95rem;color:rgba(255,255,255,0.7);margin-top:0.25rem}
.spectacles-note{color:rgba(255,255,255,0.55);font-size:0.85rem;max-width:700px;margin:0 auto;line-height:1.6}

/* Pôle culturel */
.pole-grid{display:grid;grid-template-columns:1fr auto;gap:3rem;align-items:center}
.pole-text .apropos-section-title{font-family:var(--font-display);font-size:2rem;font-weight:700;color:#4b0a05;margin-bottom:1.25rem}
.pole-text p{font-size:1.1rem;color:#aa5344;line-height:1.8}
.pole-quote{font-family:var(--font-display);font-weight:700;font-size:1.3rem;color:#9f3c2c;margin-top:1.5rem !important}

/* Citation finale — peach background */
.apropos-quote{background:#f0c48a;padding:4rem 0;text-align:center}
.final-quote{font-family:var(--font-display);font-size:clamp(1.1rem,2.5vw,1.4rem);color:#4c0b06;line-height:1.8;max-width:700px;margin:0 auto;font-weight:700}

/* ============================================
   SHOW DETAIL PAGES (12hommes, fleursdacier)
   Matches PDF designs exactly
   ============================================ */
.show-hero{padding-top:90px;background:var(--white)}
.show-hero-img{max-width:1200px;margin:0 auto;padding:1rem 2rem}
.show-hero-img img{width:100%;height:auto;display:block;border-radius:var(--radius)}

.show-page{padding:2rem 0 4rem;background:var(--cream)}
.show-page-badge{
    color:var(--red-bright);font-weight:700;
    font-size:0.9rem;letter-spacing:2px;
    text-transform:uppercase;margin-bottom:0.75rem;
}
.show-page-title{
    font-family:var(--font-display);
    font-size:clamp(2.5rem,6vw,3.5rem);
    font-weight:700;color:#4b0a05;
    margin-bottom:0.5rem;line-height:1.15;
}
.show-page-subtitle{
    font-family:var(--font-display);font-weight:400;
    font-size:clamp(1.2rem,2.5vw,1.5rem);
    color:#9f3c2c;
    margin-bottom:2.5rem;
}

.show-page-grid{display:grid;grid-template-columns:1fr 340px;gap:3rem;margin-bottom:5rem}
.show-page-synopsis p{color:#000;line-height:1.85;margin-bottom:1.25rem;font-size:1.05rem}

/* Sidebar — bordered box, cream bg */
.show-page-sidebar{
    border:2px solid #f7c189;
    border-radius:var(--radius);
    padding:2rem;background:var(--white);
    align-self:start;
}
.sidebar-title{
    font-family:var(--font-display);font-size:0.95rem;
    font-weight:700;color:var(--red-accent);
    letter-spacing:1px;text-transform:uppercase;
    margin-bottom:0.75rem;padding-bottom:0.5rem;
    border-bottom:2px solid var(--red-accent);
}
.sidebar-dates{font-weight:700;color:var(--text-dark);margin-bottom:0.25rem}
.show-page-sidebar p{font-size:0.95rem;color:#000;margin-bottom:0.15rem}

/* Tarif stacked: label above, price below */
.sidebar-tarif{
    padding:0.6rem 0;border-bottom:1px solid rgba(0,0,0,0.08);
}
.sidebar-tarif:last-of-type{border-bottom:none}
.sidebar-tarif-label{
    display:block;font-size:0.9rem;color:#000;
    margin-bottom:0.1rem;
}
.sidebar-price{
    display:block;
    font-family:var(--font-display);font-weight:700;
    font-size:1.15rem;color:#4b0a05;
}
.sidebar-btn{
    margin-top:1.5rem;width:100%;text-align:center;
    display:block;
}

/* Photos grid — tighter spacing */
.show-page-photos{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:5rem}
.show-page-photos img{width:100%;height:400px;object-fit:cover;border-radius:var(--radius)}

/* Sections */
.show-page-section{margin-bottom:2.5rem;padding-top:2rem;padding-bottom:2rem;border-top:3px solid var(--gold);border-bottom:none}
.show-page-section:last-of-type{border-bottom:none}
.show-page-section-title{
    font-family:var(--font-display);font-size:1rem;
    font-weight:700;color:var(--red-accent);
    letter-spacing:1.5px;text-transform:uppercase;
    margin-bottom:1rem;
}
.show-page-section p{color:#000;line-height:1.7;margin-bottom:0.25rem}

/* Cast grid — 4 columns (12 hommes) and 2 columns (fleurs) */
.show-page-cast{display:grid;gap:0.5rem 2rem}
.show-page-cast-4col{grid-template-columns:repeat(4,1fr)}
.show-page-cast-2col{grid-template-columns:repeat(2,1fr)}
.cast-col p{color:var(--text-dark);font-size:0.95rem;margin-bottom:0.35rem}

/* Video */
.show-page-video{margin-bottom:2.5rem;max-width:750px;margin-left:auto;margin-right:auto}
.show-page-video video{width:100%;border-radius:var(--radius);background:#000}
.video-coming-soon{
    background:linear-gradient(135deg,#7ec8e3 0%,#a8d8ea 100%);
    border-radius:var(--radius);padding:4rem 2rem;text-align:center;
    min-height:300px;display:flex;flex-direction:column;
    align-items:center;justify-content:center;
}
.coming-soon-text{
    font-family:var(--font-display);font-size:1.4rem;
    font-weight:700;color:#fff;margin-bottom:1.5rem;
    text-shadow:0 2px 8px rgba(0,0,0,0.15);
}
.coming-soon-play{opacity:0.7}

/* CTA */
.show-page-cta{text-align:center;padding:1rem 0}

/* ============================================
   MODAL (kept for fallback)
   ============================================ */
.modal-overlay{
    position:fixed;inset:0;z-index:9999;
    background:rgba(0,0,0,0.7);backdrop-filter:blur(4px);
    display:flex;align-items:center;justify-content:center;
    opacity:0;visibility:hidden;transition:opacity 0.3s ease,visibility 0.3s ease;
}
.modal-overlay.open{opacity:1;visibility:visible}
.modal-box{
    background:#fff;border-radius:12px;
    max-width:700px;width:90%;max-height:90vh;
    overflow-y:auto;padding:3rem;position:relative;
    transform:translateY(20px);transition:transform 0.3s ease;
}
.modal-overlay.open .modal-box{transform:translateY(0)}
.modal-close{position:absolute;top:1rem;right:1.25rem;background:none;border:none;font-size:2rem;cursor:pointer;color:var(--text-light);line-height:1;transition:var(--transition)}
.modal-close:hover{color:var(--red-accent)}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1024px){
    .nav-menu{gap:1.5rem}
    .nav-menu a{font-size:0.8rem}
    .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
}
@media(max-width:968px){
    .nav-menu{
        position:fixed;top:90px;left:0;right:0;
        background:var(--maroon-dark);
        flex-direction:column;padding:2rem;
        transform:translateX(-100%);transition:transform 0.4s ease;
        box-shadow:0 8px 30px rgba(0,0,0,0.3);
    }
    .nav-menu.active{transform:translateX(0)}
    .nav-toggle{display:flex}
    .nav-btn-billetterie{align-self:flex-start}
    .nav-dropdown-menu{
        position:static;transform:none;
        opacity:1;visibility:visible;
        box-shadow:none;border:none;
        background:rgba(0,0,0,0.15);
        border-radius:6px;
        margin:0.3rem 0 0.3rem 0;
        padding:0.3rem 0;
    }
    .nav-dropdown-menu a{
        padding:0.5rem 1.5rem !important;
        font-size:0.8rem !important;
    }
    .prog-grid{grid-template-columns:1fr}
    .bill-grid{grid-template-columns:1fr}
    .contact-grid{grid-template-columns:1fr}
    .bill-show-row{flex-direction:column;gap:1rem;align-items:flex-start}
    .forfait-block{grid-template-columns:1fr}
    .forfait-img img{max-width:100% !important}
    .bio-grid{grid-template-columns:1fr;text-align:center;max-width:100%}
    .bio-photo{text-align:center}
    .bio-photo img{margin:0 auto}
    .bio-photo-caption{text-align:center}
    .bio-text p{max-width:100%;margin:0 auto;font-size:1.15rem}
    .heritage-grid{grid-template-columns:1fr;gap:2rem}
    .heritage-col:first-child p{font-size:1.05rem}
    .pole-grid{grid-template-columns:1fr}
    .pole-photo{text-align:center}
    .pole-photo img{max-width:100% !important;margin:0 auto}
    .show-page-grid{grid-template-columns:1fr}
    .show-page-sidebar{margin-top:1rem}
    .show-page-photos{grid-template-columns:1fr}
    .show-page-photos img{height:300px}
    .show-page-cast-4col{grid-template-columns:repeat(2,1fr)}
    .show-page-cast-2col{grid-template-columns:repeat(2,1fr)}
    .apropos-section .container{padding:0 2rem}
    .spectacles-grid{grid-template-columns:1fr 1fr}
    .footer-grid{grid-template-columns:1fr 1fr}
    .footer-col-logo{justify-content:center;grid-column:1/-1}
}
@media(max-width:640px){
    .nav-container{height:75px}
    .nav-logo img{height:65px}
    .nav-menu{top:75px}
    .carousel-section{padding-top:75px}
    .show-hero{padding-top:75px}
    .page-header{padding-top:75px}
    .carousel-slide>picture>img,.carousel-slide>img{height:calc(100vh - 75px)}
    .carousel-btn{width:36px;height:36px}
    .carousel-btn svg{width:16px;height:16px}
    .carousel-btn-prev{left:10px}
    .carousel-btn-next{right:10px}
    .carousel-dots{bottom:14px;gap:8px}
    .carousel-dot{width:10px;height:10px}
    .section-heading{font-size:1.8rem;margin-bottom:2rem}
    .prog-card-title{font-size:1.3rem;padding:1rem 1rem 0.25rem}
    .prog-card-dates{padding:0 1rem;font-size:0.9rem}
    .prog-card-highlight{padding:0.5rem 1rem 0}
    .prog-card-buttons{padding:1rem}
    .prog-card-img-wrap{padding:0.75rem 0.75rem 0}
    .bill-sub-title{font-size:0.9rem}
    .tarif-price{font-size:1rem}
    .bill-show-name{font-size:1.1rem}
    .contact-venue{font-size:1.2rem}
    .contact-map{min-height:300px}
    .contact-map iframe{min-height:300px}
    .stats-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}
    .stat-number{font-size:2.2rem}
    .stat-label{font-size:0.85rem}
    .stats-title{font-size:1.4rem}
    .talents-grid{grid-template-columns:1fr 1fr}
    .spectacles-grid{grid-template-columns:1fr}
    .spectacles-main-title{font-size:1.6rem;margin-bottom:2rem}
    .show-page-title{font-size:2rem}
    .show-page-subtitle{font-size:1.1rem}
    .show-page-photos img{height:250px}
    .show-page-cast-4col{grid-template-columns:repeat(2,1fr)}
    .show-page-cast-2col{grid-template-columns:1fr}
    .apropos-section .container{padding:0 1.25rem}
    .apropos-section-title{font-size:1.5rem}
    .bio-photo img{width:250px;height:300px}
    .bio-text p{font-size:1.05rem}
    .heritage-col:first-child p{font-size:1rem}
    .pole-text .apropos-section-title{font-size:1.5rem}
    .pole-text p{font-size:1rem}
    .pole-quote{font-size:1.1rem}
    .final-quote{font-size:1.1rem}
    .page-header-title{font-size:1.8rem}
    .page-header-sub{font-size:1.1rem}
    .forfait-title{font-size:1.3rem}
    .forfait-video{max-width:100%}
    .certificat-title{font-size:1.6rem}
    .section-certificat{padding:3rem 0}
    .infolettre-form{flex-direction:column;gap:0.75rem}
    .infolettre-input{border-radius:50px;border-right:2px solid rgba(0,0,0,0.1)}
    .infolettre-form .btn-terracotta{border-radius:50px}
    .footer-grid{grid-template-columns:1fr;text-align:center;gap:1.5rem}
    .footer-col-logo{justify-content:center}
    .footer-social{justify-content:center}
    .footer-nav{align-items:center}
    .footer-nav a:hover{padding-left:0}
    .footer-legal{flex-direction:column;gap:1rem;text-align:center}
    .footer-legal-links{flex-wrap:wrap;justify-content:center}
}
@media(max-width:400px){
    .container{padding:0 1rem}
    .nav-container{padding:0 1rem}
    .carousel-slide>picture>img,.carousel-slide>img{height:calc(100vh - 75px)}
    .section-heading{font-size:1.5rem}
    .bio-photo img{width:200px;height:260px}
    .bio-text p{font-size:0.95rem}
    .stat-number{font-size:1.8rem}
    .stats-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
    .apropos-section-title{font-size:1.3rem}
    .spectacles-main-title{font-size:1.3rem}
    .show-page-title{font-size:1.6rem}
    .prog-card-title{font-size:1.1rem}
    .btn{padding:0.75rem 1.5rem;font-size:0.85rem}
    .talents-grid{grid-template-columns:1fr}
}