/* ===================================================== */
/* ===================== RESET ========================== */
/* ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}


/* ===================================================== */
/* ===================== BASE =========================== */
/* ===================================================== */

body {
    background: #F3EDE2;
    color: #1f2933;
    line-height: 1.6;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}


/* ===================================================== */
/* ===================== BANDEROLE ====================== */
/* ===================================================== */

.hero {
    background: #F3EDE2;
    padding: 20px 0;

    display: flex;
    justify-content: center;
}

.hero img {
    width: 95%;
    max-width: 1600px;
    height: 180px;

    object-fit: contain;
    display: block;
}


/* ===================================================== */
/* ===================== MENU =========================== */
/* ===================================================== */

.menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    background: #9B111E;

    position: sticky;
    top: 0;

    z-index: 10;
}

.menu a {
    padding: 20px 45px;

    text-decoration: none;

    color: white;

    font-weight: 700;
    font-size: 22px;

    letter-spacing: 1px;

    transition:
        background 0.3s,
        color 0.3s;
}

.menu a:hover,
.menu a.active {
    background: #F99B1D;
    color: #1f2933;
}


/* ===================================================== */
/* ===================== CADRE DU TITRE ================= */
/* ===================================================== */

.titre-cadre {
    width: fit-content;
    max-width: 90%;

    margin: 30px auto 20px;

    padding: 15px 35px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

    text-align: center;
}


/* ===================================================== */
/* ===================== TITRE PRINCIPAL ================ */
/* ===================================================== */

.titre-principal {
    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 46px;

    font-weight: 700;

    color: #023047;

    line-height: 1.2;
}


/* ===================================================== */
/* ===================== SOUS-BANNIERE ================= */
/* ===================================================== */

.menu-banner {
    width: 100%;
    padding: 0;

    background: #F3EDE2;
}

.menu-banner img {
    width: 100%;
    height: 140px;

    object-fit: cover;

    display: block;
}


/* ===================================================== */
/* ===================== CONTENU ======================== */
/* ===================================================== */

.spectacle-section {
    width: 95%;
    max-width: 1200px;

    margin: 0 auto 40px;

    padding: 40px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* ===================================================== */
/* ===================== BLOCS TEXTE + PHOTO ============ */
/* ===================================================== */

.spectacle-bloc {
    display: flex;

    align-items: center;

    gap: 35px;

    width: 100%;
}


/* ===================================================== */
/* ===================== TEXTE =========================== */
/* ===================================================== */

.spectacle-texte {
    flex: 1;

    font-size: 18px;

    line-height: 1.6;

    font-weight: 400;
}

.spectacle-texte p {
    margin-bottom: 18px;

    font-weight: 400;
}


/* Suppression du gras imposé par les <strong> */

.spectacle-texte strong,
.spectacle-texte b {
    font-weight: 400;
}


/* ===================================================== */
/* ===================== PHOTOS ========================= */
/* ===================================================== */

.spectacle-photo {
    width: 380px;

    flex-shrink: 0;
}

.spectacle-photo img {
    width: 100%;

    height: 280px;

    object-fit: contain;

    display: block;

    border-radius: 12px;
}


/* ===================================================== */
/* ===================== TITRES SECONDAIRES ============== */
/* ===================================================== */

.titre-media {
    text-align: center;

    font-size: 32px;

    font-weight: 400;

    color: #023047;

    margin: 30px 0 20px;

    text-transform: uppercase;
}


/* ===================================================== */
/* ===================== VIDEOS ========================= */
/* ===================================================== */

.video-container {
    display: flex;

    justify-content: center;

    width: 100%;

    margin: 20px auto 25px;
}

.video-container iframe {
    width: 560px;

    max-width: 100%;

    aspect-ratio: 16 / 9;

    height: auto;

    border: none;

    border-radius: 12px;
}


/* ===================================================== */
/* ===================== TEXTE CENTRE =================== */
/* ===================================================== */

.texte-centre {
    font-size: 18px;

    line-height: 1.6;

    text-align: left;

    margin: 20px 0 20px;

    font-weight: 400;
}


/* ===================================================== */
/* ===================== PHOTO CENTRALE ================= */
/* ===================================================== */

.photo-centre {
    display: flex;

    justify-content: center;

    margin: 20px 0 30px;
}

.photo-centre img {
    width: 450px;

    max-width: 100%;

    height: auto;

    display: block;

    object-fit: contain;

    border-radius: 12px;
}


/* ===================================================== */
/* ===================== PETIT BLOC ===================== */
/* ===================================================== */

.petit-bloc {
    margin-top: 30px;
}

.petit-bloc .spectacle-texte {
    font-size: 18px;

    line-height: 1.6;
}

.petit-bloc .spectacle-photo {
    width: 380px;
}

.petit-bloc .spectacle-photo img {
    height: 280px;
}


/* ===================================================== */
/* ===================== AFFICHE ======================== */
/* ===================================================== */

.affiche-titre {
    margin-top: 30px;
}

.affiche {
    display: flex;

    flex-direction: column;

    align-items: center;

    margin-top: 15px;
}

.affiche img {
    width: 220px;

    max-width: 100%;

    height: auto;

    display: block;

    object-fit: contain;

    border-radius: 8px;

    cursor: pointer;

    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.affiche img:hover {
    transform: scale(1.03);

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

.affiche p {
    font-size: 14px;

    margin-top: 8px;

    text-align: center;

    color: #555;
}


/* ===================================================== */
/* ===================== FOOTER ========================= */
/* ===================================================== */

footer {
    background: #9B111E;

    color: #ffffff;

    text-align: center;

    padding: 12px 10px;

    margin-top: auto;

    font-size: 14px;
}

footer a {
    color: #ffffff;

    text-decoration: none;
}

footer a:hover {
    color: #F99B1D;
}


/* ===================================================== */
/* ===================== TABLETTE ======================= */
/* ===================================================== */

@media screen and (max-width: 768px) {

    /* ===================== MENU ===================== */

    .menu a {
        padding: 14px 25px;

        font-size: 18px;
    }


    /* ===================== CADRE DU TITRE ===================== */

    .titre-cadre {
        width: fit-content;
        max-width: 90%;

        margin: 25px auto 15px;

        padding: 12px 25px;

        border-radius: 18px;
    }

    .titre-principal {
        font-size: 36px;
    }


    /* ===================== CADRE PRINCIPAL ===================== */

    .spectacle-section {
        width: 95%;

        margin: 0 auto 30px;

        padding: 30px 25px;

        border-radius: 18px;
    }


    /* ===================== BLOCS ===================== */

    .spectacle-bloc {
        gap: 20px;
    }


    /* ===================== TEXTE ===================== */

    .spectacle-texte {
        font-size: 16px;

        line-height: 1.6;
    }

    .spectacle-texte p {
        margin-bottom: 15px;
    }


    /* ===================== PHOTOS ===================== */

    .spectacle-photo {
        width: 42%;
    }

    .spectacle-photo img {
        height: auto;

        max-height: 260px;
    }


    /* ===================== TITRES ===================== */

    .titre-media {
        font-size: 26px;

        margin: 25px 0 15px;
    }


    /* ===================== VIDEOS ===================== */

    .video-container {
        margin: 15px auto 20px;
    }


    /* ===================== TEXTE ===================== */

    .texte-centre {
        font-size: 15px;

        line-height: 1.55;
    }


    /* ===================== PHOTO CENTRALE ===================== */

    .photo-centre img {
        width: 350px;

        max-width: 100%;
    }


    /* ===================== PETIT BLOC ===================== */

    .petit-bloc .spectacle-texte {
        font-size: 15px;
    }

    .petit-bloc .spectacle-photo {
        width: 42%;
    }

    .petit-bloc .spectacle-photo img {
        height: auto;

        max-height: 260px;
    }


    /* ===================== AFFICHE ===================== */

    .affiche img {
        width: 180px;
    }

    .affiche p {
        font-size: 12px;
    }
}


/* ===================================================== */
/* ===================== PETIT TELEPHONE ================ */
/* ===================================================== */

@media screen and (max-width: 480px) {

    /* ===================== BANDEROLE ===================== */

    .hero img {
        height: 140px;
    }


    /* ===================== MENU ===================== */

    .menu a {
        padding: 12px 15px;

        font-size: 16px;
    }


    /* ===================== CADRE DU TITRE ===================== */

    .titre-cadre {
        width: fit-content;
        max-width: 94%;

        margin: 20px auto 12px;

        padding: 10px 18px;

        border-radius: 15px;
    }

    .titre-principal {
        font-size: 28px;
    }


    /* ===================== SOUS-BANNIERE ===================== */

    .menu-banner img {
        height: 100px;
    }


    /* ===================== CADRE PRINCIPAL ===================== */

    .spectacle-section {
        width: 96%;

        margin: 0 auto 25px;

        padding: 25px 15px;

        border-radius: 15px;
    }


    /* ===================== BLOCS ===================== */

    .spectacle-bloc {
        gap: 10px;

        align-items: center;
    }


    /* ===================== TEXTE ===================== */

    .spectacle-texte {
        font-size: 13px;

        line-height: 1.55;
    }

    .spectacle-texte p {
        margin-bottom: 12px;
    }


    /* ===================== PHOTOS ===================== */

    .spectacle-photo {
        width: 42%;
    }

    .spectacle-photo img {
        height: auto;

        max-height: 210px;
    }


    /* ===================== TITRES ===================== */

    .titre-media {
        font-size: 21px;

        margin: 22px 0 12px;
    }


    /* ===================== TEXTE SOUS VIDEO ===================== */

    .texte-centre {
        font-size: 12px;

        line-height: 1.5;
    }


    /* ===================== PHOTO CENTRALE ===================== */

    .photo-centre img {
        width: 280px;

        max-width: 100%;
    }


    /* ===================== PETIT BLOC ===================== */

    .petit-bloc .spectacle-texte {
        font-size: 12px;

        line-height: 1.5;
    }

    .petit-bloc .spectacle-photo {
        width: 42%;
    }

    .petit-bloc .spectacle-photo img {
        max-height: 210px;
    }


    /* ===================== AFFICHE ===================== */

    .affiche img {
        width: 140px;
    }

    .affiche p {
        font-size: 10px;
    }
}