/* =========================================================
   RESET & BASE
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #f5f5f5;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}


/* =========================================================
   MENU
========================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;

    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(8px);

    border-bottom: 1px solid rgba(255, 122, 0, 0.15);
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 18px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 56px;
    width: auto;
    display: block;
}

.logo span {
    font-family: "French Script MT", cursive;
    font-size: 35px;
    font-weight: normal;
}

nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
}

nav a {
    color: #eee;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #ff7a00;
}


/* =========================================================
   BOUTONS
========================================================= */

.bouton {
        margin: 0 auto;
    display: inline-block;
    padding: 14px 28px;
    background: #ff7a00;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.bouton:hover {
    background: #ff941f;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.25);
}


.bouton2 {
    display: block;
    width: fit-content;
    margin: 20px auto;

    padding: 10px 20px;

    background: transparent;
    color: white !important;

    text-decoration: none;
    font-weight: bold;
    text-align: center;

    border: 1px solid #ff7a00;
    border-radius: 4px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.bouton2:hover {
    background: #ff7a00;
    color: white !important;
    transform: translateY(-1px);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.75)
        ),
        url("../Images/accueil.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 100px 20px 60px;
}

.hero-content {
    max-width: 900px;
}

.hero-content .hero-description {
    max-width: 700px;
    margin: 50px auto 0;
    font-size: 18px;
    line-height: 1.6;
    color:#cfcfcf;
    text-align: justify;
}

.hero-sous-titre {
    font-size: 22px;
    margin-bottom: 15px;
    color: #eee;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.hero-content p {
    font-size: 22px;
    color: #eee;
    margin-bottom: 35px;
}


/* =========================================================
   CONTENU GENERAL
========================================================= */


main {
    width: 100%;
}

section {
    max-width: 1200px;
    margin: auto;
    padding: 90px 30px;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

section h2::after {
    content: "";
    display: block;

    width: 55px;
    height: 3px;

    background: #ff7a00;

    margin-top: 14px;
}

section > p {
    max-width: 850px;
    color: #cfcfcf;
}


/* =========================================================
   GRILLES
========================================================= */

.show-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    margin-top: 0px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-top: 35px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-top: 35px;
}


/* =========================================================
   CARTES SPECTACLES
========================================================= */
.page-intro {
    padding-top: 130px;
    padding-bottom: 0px;
}

.show-card {

    
    background: #171717;

    border: 1px solid #292929;
    border-radius: 8px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.show-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 122, 0, 0.6);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.show-card img {
    width: 100%;
    height: 350px;

    object-fit: cover;
    display: block;

    transition: transform 0.4s ease;
}

.show-card:hover img {
    transform: scale(1.04);
}

.show-card-content {
    padding: 25px;
}

.show-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.show-card p {
    color: #c7c7c7;
    font-size: 15px;
    margin-bottom: 20px;
}

.show-card a {
    color: #ff7a00;
    text-decoration: none;
    font-weight: bold;
}

.show-card a:hover {
    color: #ffad5c;
}



/* =========================================================
   THEMES
========================================================= */

.theme-card {
    background: #161616;

    border: 1px solid #292929;

    padding: 25px;

    border-radius: 6px;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.theme-card:hover {
    border-color: #ff7a00;
    transform: translateY(-3px);
}

.theme-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.theme-card p {
    color: #bbb;
    font-size: 14px;
}


/* =========================================================
   EVENEMENTS
========================================================= */

.event-card {
    background: #151515;

    padding: 25px;

    border: 1px solid #292929;
    border-radius: 6px;
}

.event-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.event-card p {
    color: #bbb;
    font-size: 14px;
}


/* =========================================================
   ZONE TARIF / CTA
========================================================= */

.cta-section {
    text-align: center;

    max-width: none;

    background:
        linear-gradient(
            rgba(255, 122, 0, 0.08),
            rgba(255, 122, 0, 0.02)
        );

    border-top: 1px solid rgba(255, 122, 0, 0.15);
    border-bottom: 1px solid rgba(255, 122, 0, 0.15);

    padding: 80px 30px;
}

.cta-section h2 {
    max-width: 800px;
    margin: auto;
}

.cta-section h2::after {
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    margin: 15px auto 25px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #080808;

    color: #888;

    text-align: center;

    padding: 35px 20px;

    font-size: 14px;

    border-top: 1px solid #1f1f1f;
}


/* =========================================================
   RESPONSIVE TABLETTE
========================================================= */

@media (max-width: 900px) {

    .hero-content h1 {
        font-size: 48px;
    }

    .fire-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .theme-grid,
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 700px) {

    nav {
        padding: 15px 20px;
    }

    nav ul {
        gap: 15px;
    }

    nav a {
        font-size: 13px;
    }

    .logo {
        font-size: 17px;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content h1 {
        font-size: 38px;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 18px;
    }

    section {
        padding: 65px 20px;
    }

    section h2 {
        font-size: 30px;
    }

    .show-grid,
    .fire-grid,
    .theme-grid,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .show-card img {
        height: 200px;
    }
}


.galerie-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.photo-item {
    width: 100%;
    text-align: center;
}

.photo-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    border: 1px solid #555;
}

.photo-label {
    margin: 5px 0 0;
    padding: 0;
    font-size: 0.95rem;
}


.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 40px 0 0 0;
}

.galerie figure {
    margin: 0;
}

.galerie img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.galerie figcaption {
    margin-top: 8px;
    text-align: center;
}

/* Menu déroulant Spectacles */

.menu-deroulant {
    position: relative;
}

.sous-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #242222;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.menu-deroulant:hover .sous-menu,
.menu-deroulant:focus-within .sous-menu {
    display: block;
}

/* Navigation de la page d'accueil sur petits écrans */
.menu-responsive .menu-mobile-toggle,
.menu-responsive .sous-menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    .menu-responsive nav {
        flex-wrap: wrap;
        padding: 12px 20px;
    }

    .menu-responsive .logo span {
        font-size: 27px;
    }

    .menu-responsive .menu-mobile-toggle,
    .menu-responsive .sous-menu-toggle {
        display: inline-block;
        padding: 8px 12px;
        border: 1px solid #ff7a00;
        border-radius: 4px;
        background: #242222;
        color: #fff;
        cursor: pointer;
    }

    .menu-responsive nav > ul {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        gap: 0;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        padding: 12px 0;
    }

    .menu-responsive nav > ul.ouvert {
        display: flex;
    }

    .menu-responsive nav > ul > li {
        padding: 8px 0;
    }

    .menu-responsive .sous-menu-toggle {
        margin-left: 8px;
    }

    .menu-responsive .menu-deroulant .sous-menu,
    .menu-responsive .menu-deroulant:hover .sous-menu,
    .menu-responsive .menu-deroulant:focus-within .sous-menu {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .menu-responsive .menu-deroulant.ouvert .sous-menu {
        display: block;
    }
}

.sous-menu li {
    width: 100%;
}

.sous-menu li a {
    display: block;
    padding: 10px 18px;
    white-space: nowrap;
}

.sous-menu li a:hover {
    background-color: #f2f2f2;
}

body {
    text-align: justify;
}

.type-public {
    margin-left: 50px;
}

/* =========================================================
   SECTIONS AGRÈS
========================================================= */

.agres-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.agres-section .agres-content {
    flex: 1;
}

.agres-section img {
    width: 42%;
    max-width: 450px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.agres-section.reverse {
    flex-direction: row-reverse;
}

/* Mobile */
@media (max-width: 700px) {

    .agres-section,
    .agres-section.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .agres-section img {
        width: 100%;
        max-width: 500px;
    }
}

.agres-section a {
    color: #ff7a00;
    text-decoration: none;
    font-weight: bold;
}

.agres-section a:hover {
    color: #ffad5c;
}

.show-card-content a {
    color: inherit;
    text-decoration: none;
}

.show-card-content a h3 {
    color: #ffffff;
}

/* ============================= */
/* SOUS-MENU DE NIVEAU 2 */
/* ============================= */

.menu-deroulant-sous {
    position: relative;
}

/* Flèche à droite des catégories */
.menu-deroulant-sous > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

/* Deuxième niveau */
.sous-menu-niveau-2 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #222;
    z-index: 1000;
}

/* Affichage au survol */
.menu-deroulant-sous:hover > .sous-menu-niveau-2 {
    display: block;
}

/* Liens du deuxième niveau */
.sous-menu-niveau-2 li {
    width: 100%;
}

.sous-menu-niveau-2 li a {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

/* Survol */
.sous-menu-niveau-2 li a:hover {
    background-color: #333;
}

/* Séparateur */
.sous-menu-niveau-2 .separateur {
    height: 1px;
    margin: 5px 10px;
    background-color: #555;
}

/* =========================================================
   BOUTON TRIBE SCHOOL
========================================================= */

.bouton-tribe {
    display: inline-block;
    padding: 14px 28px;
    background: #ff7a00;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.bouton-tribe:hover {
    background: #ff941f;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.25);
}

.bouton-tribe-container {
    text-align: center;
}

.separateur-menu {
    border-left: 2px solid #ff7a00;
    padding-left: 22px;
}

/* =========================================================
   FORMULAIRE DE CONTACT
========================================================= */

.contact-section {
    max-width: 1000px;
    padding-top: 55px;
}

.contact-content {
    background: #171717;
    border: 1px solid #292929;
    border-radius: 8px;
    padding: 40px 45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.contact-content h2 {
    margin-bottom: 15px;
}

.contact-content > p {
    max-width: 800px;
    color: #aaa;
    margin-bottom: 35px;
}


/* -------------------------
   FORMULAIRE
------------------------- */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


/* Deux colonnes */

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* Groupe */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* Labels */

.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #ddd;
}


/* Champs */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    background: #0f0f0f;
    color: #f5f5f5;
    border: 1px solid #333;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}


/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7a00;
    background: #121212;
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.12);
}


/* Select */

.form-group select {
    cursor: pointer;
}


/* Textarea */

.form-group textarea {
    min-height: 170px;
    resize: vertical;
    line-height: 1.6;
}


/* -------------------------
   CASE À COCHER
------------------------- */

.form-checkbox {
    margin-top: 2px;
    padding: 15px 18px;
    background: #111;
    border: 1px solid #292929;
    border-radius: 4px;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
}

.form-checkbox input {
    width: 17px;
    height: 17px;
    accent-color: #ff7a00;
    cursor: pointer;
}


/* -------------------------
   BOUTON
------------------------- */

.bouton-contact {
    align-self: center;
    padding: 14px 30px;
    background: #ff7a00;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.bouton-contact:hover {
    background: #ff941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.25);
}


/* -------------------------
   CHAMPS OBLIGATOIRES
------------------------- */

.champs-obligatoires {
    margin-top: -8px;
    color: #777;
    font-size: 13px;
}


/* -------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 700px) {

    .contact-section {
        padding-top: 40px;
    }

    .contact-content {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bouton-contact {
        width: 100%;
    }
}

/* =========================================================
   CONTACT DIRECT
========================================================= */

.contact-direct {
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    margin: 25px auto;
    padding: 14px 20px;
    background: #171717;
    border: 1px solid #292929;
    border-left: 3px solid #ff7a00;
    border-radius: 5px;
}

.contact-direct-icon {
    font-size: 25px;
}

.contact-direct strong {
    color: #ddd;
    font-size: 14px;
}

.contact-direct a {
    display: inline-block;
    margin-top: 3px;
    color: #ff7a00;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.contact-direct a:hover {
    color: #ffad5c;
}

/* =========================================================
   LIENS SECONDAIRES DE L'ACCUEIL
========================================================= */

.hero-liens {
    max-width: 700px;
    margin: 35px auto 0;
    color: #aaa;
    font-size: 18px;
    line-height: 1.6;
}

.hero-liens p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 20px;
}

.hero-liens .bouton2 {
    font-size: 15px;
}

.boutons-secondaires {
    display: flex;
    gap: 20px;
    max-width: 700px;
    margin: 20px auto 0;
}

.boutons-secondaires .bouton2 {
    flex: 1;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 700px) {
    .boutons-secondaires {
        flex-direction: column;
        gap: 10px;
    }
}

/* Accueil : accès aux spectacles, événements et apprentissage */
.page-accueil .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.page-accueil .hero-actions .bouton,
.page-accueil .hero-actions .bouton2 {
    margin: 0;
}

.page-accueil .accueil-evenements,
.page-accueil .accueil-apprentissage {
    max-width: 1200px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-accueil .accueil-evenements > p,
.page-accueil .accueil-apprentissage > p {
    max-width: 750px;
    margin: 0 0 30px;
    line-height: 1.7;
}

.page-accueil .accueil-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.page-accueil .accueil-event-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
    padding: 24px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #171717;
    color: #fff;
    font-size: 19px;
    font-weight: bold;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-accueil .accueil-event-card span {
    color: #cfcfcf;
    font-size: 15px;
    font-weight: normal;
}

.page-accueil .accueil-event-card:hover,
.page-accueil .accueil-event-card:focus-visible {
    border-color: #ff7a00;
    transform: translateY(-3px);
}

.page-accueil .accueil-apprentissage {
    border-top: 1px solid #292929;
}

.page-accueil .accueil-apprentissage .bouton2 {
    margin: 0;
}

@media (max-width: 700px) {
    .page-accueil .hero-actions {
        flex-direction: column;
    }

    .page-accueil .hero-actions .bouton,
    .page-accueil .hero-actions .bouton2 {
        width: min(100%, 320px);
        text-align: center;
    }

    .page-accueil .accueil-evenements,
    .page-accueil .accueil-apprentissage {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Cartes et liens de la page spectacles */
.page-spectacles a.theme-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.page-spectacles a.theme-card:focus-visible,
.page-spectacles .spectacles-event-card:focus-visible {
    border-color: #ff7a00;
    outline: 2px solid #ff7a00;
    outline-offset: 3px;
}

.page-spectacles .event-grid > article,
.page-spectacles .spectacles-event-card {
    display: block;
    padding: 25px;
    border: 1px solid #292929;
    border-radius: 6px;
    background: #151515;
}

.page-spectacles .spectacles-event-card {
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-spectacles .spectacles-event-card:hover {
    border-color: #ff7a00;
    transform: translateY(-3px);
}

.page-spectacles .event-grid h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.page-spectacles .event-grid p {
    color: #bbb;
    font-size: 14px;
}

/* Liens des événements sur la page prestations */
.page-prestations .prestation-event-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-prestations .prestation-event-link:hover,
.page-prestations .prestation-event-link:focus-visible {
    border-color: #ff7a00;
    transform: translateY(-3px);
}

.page-prestations .prestation-event-link:focus-visible {
    outline: 2px solid #ff7a00;
    outline-offset: 3px;
}

/* Cartes d'événements accessibles sur toute leur surface */
.page-evenements .evenement-lien {
    display: block;
    color: inherit;
    text-decoration: none;
}

.page-evenements .evenement-lien:focus-visible {
    border-color: #ff7a00;
    outline: 2px solid #ff7a00;
    outline-offset: 3px;
}

/* Liens d'apprentissage de la section bâton */
.page-jonglage #staff .staff-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.page-jonglage #staff .staff-actions .bouton2 {
    margin: 0;
}

.page-apprentissage #tribe-school,
.page-apprentissage #tribe-forge {
    scroll-margin-top: 100px;
}

.page-apprentissage #tribe-school h2 {
    text-align: left;
}

.page-galerie .galerie-section {
    padding-top: 40px;
}

/* Liens contextuels des pages spectacles */
.spectacle-lien { color: inherit; text-decoration: none; }
.spectacle-lien:hover, .spectacle-lien:focus-visible { color: #ff7a00; text-decoration: underline; }

/* Cartes « Pour quels événements ? » des pages spectacles */
.spectacle-evenements > article {
    padding: 25px;
    border: 1px solid #292929;
    border-radius: 6px;
    background: #151515;
}

.spectacle-evenements h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.spectacle-evenements p {
    color: #bbb;
    font-size: 14px;
}

.spectacle-evenements > .spectacles-event-card {
    display: block;
    padding: 25px;
    border: 1px solid #292929;
    border-radius: 6px;
    background: #151515;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.spectacle-evenements > .spectacles-event-card:hover {
    border-color: #ff7a00;
    transform: translateY(-3px);
}

.spectacle-evenements > .spectacles-event-card:focus-visible {
    border-color: #ff7a00;
    outline: 2px solid #ff7a00;
    outline-offset: 3px;
}

/* Titres des cartes : éviter les grands espaces entre les mots */
.theme-grid h3,
.event-grid h3 {
    text-align: left;
}

/* Énumérations de la page Sécurité */
.page-securite main ul {
    margin: 12px 0 24px;
    padding-left: 36px;
}

/* Accueil : sécurité et tarifs */
.page-accueil .accueil-securite,
.page-accueil .accueil-tarifs {
    max-width: 1200px;
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid #292929;
}

.page-accueil .accueil-securite p,
.page-accueil .accueil-tarifs p {
    max-width: 750px;
    margin: 0 0 22px;
    line-height: 1.7;
}

.page-accueil .accueil-securite .bouton2,
.page-accueil .accueil-tarifs .bouton2 {
    margin: 0;
}

@media (max-width: 700px) {
    .page-accueil .accueil-securite,
    .page-accueil .accueil-tarifs {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
