/* ==========================================================
   L'HISTOIRE QUI N'EXISTE PAS ENCORE
   La Brique Impro
   Ambiance : page blanche, étincelle, spontanéité
========================================================== */

:root{
    --histoire-terracotta:#C74D33;
    --histoire-night:#3A241C;
    --histoire-gold:#E8A33D;
    --histoire-light:#FBF8F5;
    --histoire-text:#3F332C;
    --histoire-card:#FFFFFF;

    --radius:20px;

    --shadow:
        0 15px 35px rgba(0,0,0,.10);
}

/* ==========================================================
   HERO
========================================================== */

.spectacle-hero{

    min-height:80vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;

    color:white;

    background:
        linear-gradient(
            rgba(30,18,12,.72),
            rgba(30,18,12,.86)
        ),
        url("../images/spectacle1.jpg")
        center center / cover no-repeat;

    overflow:hidden;
}

.spectacle-hero::before{

    content:"";

    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at center,
            rgba(232,163,61,.14),
            transparent 60%
        );
}

.spectacle-hero-content{

    position:relative;
    z-index:1;

    max-width:850px;

    padding:140px 20px 80px;
}

.spectacle-label{

    display:inline-block;

    padding:10px 20px;

    margin-bottom:25px;

    background:var(--histoire-gold);

    color:#2b1c0e;

    border-radius:50px;

    font-weight:700;
    letter-spacing:1px;
}

.spectacle-hero h1{

    font-size:clamp(2.6rem,6vw,5rem);

    margin-bottom:25px;

    font-weight:800;
}

.spectacle-hero p{

    font-size:1.3rem;

    line-height:1.8;

    color:#f3f4f6;

    margin-bottom:40px;
}

/* ==========================================================
   PRESENTATION
========================================================== */

.spectacle-presentation{

    background:var(--histoire-light);
}

.spectacle-layout{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;
}

.spectacle-description{

    background:white;

    padding:45px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);
}

.spectacle-description h2{

    color:var(--histoire-terracotta);

    margin-top:35px;
    margin-bottom:15px;

    font-size:2rem;
}

.spectacle-description h2:first-child{

    margin-top:0;
}

.spectacle-description p{

    line-height:1.9;

    color:var(--histoire-text);

    margin-bottom:20px;
}

.intro{

    font-size:1.2rem;
}

/* ==========================================================
   CITATION
========================================================== */

.quote{

    margin:40px 0;

    padding:30px;

    border-left:6px solid var(--histoire-gold);

    border-radius:15px;

    background:#f7ede1;

    font-style:italic;

    font-size:1.25rem;

    color:var(--histoire-night);
}

/* ==========================================================
   INFORMATIONS
========================================================== */

.spectacle-details{

    background:white;

    padding:40px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    height:max-content;
}

.spectacle-details h2{

    color:var(--histoire-terracotta);

    margin-bottom:25px;
}

.detail-list{

    list-style:none;

    margin-bottom:30px;
}

.detail-list li{

    padding:18px 0;

    border-bottom:1px solid #e5e7eb;
}

.detail-label{

    display:block;

    font-weight:700;

    color:var(--histoire-night);

    margin-bottom:5px;
}

.detail-value{

    color:var(--histoire-text);
}

/* ==========================================================
   EXPERIENCE
========================================================== */

.experience-section{

    background:var(--histoire-night);

    color:white;

    text-align:center;
}

.experience-section h2{

    color:white;

    margin-bottom:60px;
}

.experience-grid{

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.experience-card{

    padding:40px 30px;

    background:
        rgba(255,255,255,.08);

    border:

        1px solid rgba(255,255,255,.12);

    border-radius:var(--radius);

    transition:.3s ease;
}

.experience-card:hover{

    transform:translateY(-8px);

    background:
        rgba(255,255,255,.12);
}

.experience-icon{

    display:block;

    font-size:3rem;

    margin-bottom:20px;
}

.experience-card h3{

    margin-bottom:15px;

    color:var(--histoire-gold);
}

.experience-card p{

    line-height:1.7;
}

/* ==========================================================
   BOOKING
========================================================== */

.booking-section{

    background:var(--histoire-light);

    text-align:center;
}

.booking-content{

    max-width:800px;

    margin:auto;
}

.booking-content h2{

    color:var(--histoire-terracotta);

    margin-bottom:25px;
}

.booking-content p{

    margin-bottom:25px;

    line-height:1.8;
}

.booking-content .actions{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;
}

.booking-content .actions a:not(.btn){

    color:var(--histoire-terracotta);

    font-weight:700;

    text-decoration:none;
}

.booking-content .actions a:not(.btn):hover{

    text-decoration:underline;
}

.booking-content > a{

    display:inline-block;

    color:var(--histoire-text);

    font-weight:600;

    text-decoration:none;
}

.booking-content > a:hover{

    text-decoration:underline;
}

/* ==========================================================
   BOUTONS
========================================================== */

.btn{

    display:inline-block;

    padding:16px 34px;

    background:var(--histoire-terracotta);

    color:white;

    text-decoration:none;

    font-weight:700;

    border-radius:50px;

    transition:.3s;
}

.btn:hover{

    background:var(--histoire-night);

    transform:translateY(-4px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.15);
}

/* ==========================================================
   REVEAL
========================================================== */

.reveal{

    opacity:0;

    transform:translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible{

    opacity:1;

    transform:translateY(0);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:900px){

    .spectacle-layout{

        grid-template-columns:1fr;
    }

    .experience-grid{

        grid-template-columns:1fr;
    }

    .spectacle-description,
    .spectacle-details{

        padding:30px;
    }
}

@media(max-width:600px){

    .spectacle-hero{

        min-height:70vh;
    }

    .spectacle-hero h1{

        font-size:2.4rem;
    }

    .spectacle-hero p{

        font-size:1.05rem;
    }

    .spectacle-description h2{

        font-size:1.6rem;
    }

    .quote{

        font-size:1.1rem;
    }
}
