:root {
    --color-primary: #d4af37;
    --color-bg: #0a0a0a;
    --color-text: #ffffff;
    --color-muted: #aaaaaa;
    --font-size-body: 1.1rem;

    --container-width: 1400px;

    --transition: all 0.3s ease;

    --spacing-section: 80px;

}

.text-body {
    font-size: var(--font-size-body);
}

/* ============================================
   1. RESET & BASE
   ============================================ */

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

/* Polices */
@font-face {
    font-family: "Nightcraftersfont";
    src: url('Fonts/SansSerifBookFLF.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Nightcraftersfont";
    src: url('Fonts/SansSerifflf.otf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Nightcraftersfont";
    src: url('Fonts/sans-serifBldFLF.otf');
    font-weight: 900;
    font-style: normal;
}


/* ============================================
   2. LAYOUT GLOBAL
   ============================================ */

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: "Nightcraftersfont", sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 0px;
    margin-top: 30vh;
}

.container {
    max-width: 1400px;
    width: 80%;
    margin: auto;
    padding-inline: clamp(20px, 5vw, 80px);
}

header {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    justify-content: center;
    position: relative;
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    pointer-events: none;
    margin: 0;
}

.header-img {
    position: absolute;
    left: 20px;
}

.header nav {
    position: absolute;
    right: 20px;
    margin-top: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-cache {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.header-cache-lent {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 1.4s ease, transform 1.4s ease;
}

.header-visible {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--color-text);
}

.logo-default {
    width: 180px;
    height: auto;
    display: block;
    margin-top: 10px;

}

.logo-link:hover .logo-default {
    filter: drop-shadow(0 0 5px var(--color-text));
}

footer {
    color: #555555;
    text-align: center;
    padding: 20px;
}

.section {
    padding-block: 80px;
}

.section-narrow {
    max-width: 700px;
    margin: auto;
    border: 0px;
}

.section-wide {
    max-width: 1400px;
    margin: auto;
    border: 0px;
}

.card {
    border: 1px solid var(--color-primary);
    padding: 30px;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h2 {
    margin-bottom: 15px;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.card-grid {
    display: grid;
    gap: 40px;
    width: 100%;
}

.card-grid-3 {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}


/* ============================================
   3. TYPOGRAPHIE GLOBALE
   ============================================ */

h1 {
    color: var(--color-text);
    margin: 10px 0;
    font-size: lighter;
}

.header-title {
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 1px;
}

h2 {
    color: var(--color-primary);
    letter-spacing: 7px;
    text-transform: uppercase;
}

h3 {
    color: var(--color-text);
    letter-spacing: 1px;
}

p {
    color: var(--color-muted);
    line-height: 1.7;
    font-size: var(--font-size-body);
}

.title-xl {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
}

.title-lg {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.title-md {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.text-body {
    font-size: var(--font-size-body);
    line-height: 1.7;
}

.text-small {
    font-size: 0.9rem;
}

/* ============================================
   4. NAVIGATION
   ============================================ */

nav {
    margin-top: 15px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    margin-right: 15px;
}

nav a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: var(--color-text);
    border-bottom: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

/*Burger caché par défaut sur desktop*/
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    top: 27px;
    right: 27px;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/*Animation du burger vers X */
.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   4b. BOUTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    min-width: 200px;
    text-align: center;
    font-family: "Nightcraftersfont", sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.85em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-text);
    border-color: var(--color-text);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-muted);
    border-color: var(--color-muted);
}

.btn-ghost:hover {
    color: var(--color-text);
    border-color: var(--color-text);
}

/* ============================================
   5. ANIMATIONS AU SCROLL
   ============================================ */
section,
article,
h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   6. PAGE INDEX
   ============================================ */
.section-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -30vh;
    padding: 40px 0;
}


.section-hero .container {
    padding-inline: 0;
    max-width: 1400px;
}

.section-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -60px;
    background-image: url(Assets/Hero/Fete_de_la_musique_2026-103.webp);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.section-hero .card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(2px);
}

.hero-divider {
    position: absolute;
    left: 0;
    bottom: -60px;

    width: 100%;
    height: 110px;

    overflow: hidden;
    pointer-events: none;
}


.hero-divider__svg {
    display: block;
    width: 100%;
    height: 100%;
}

.kick-track{
    will-change: transform;
}

.grid-poles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20vh;
}

.grid-poles a {
    text-decoration: none;
    color: inherit;
    display: block;
    user-select: none;
    outline: none;
}


.grid-poles section {
    transition: all 0.3s ease;
}


/*Section présentation*/
.section-presentation {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    margin-top: 40vh;
    padding: 60px 40px;
    gap: 40px;
}

.presentation-contenu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.presentation-texte h2 {
    margin-bottom: 30px;
}

.presentation-texte p {
    margin-bottom: 20px;
}

.presentation-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#presentation {
    padding-top: 30vh;
    scroll-margin-top: -100px;
}

/*fleche de scroll*/
.fleche-scroll {
    text-decoration: none;
    color: var(--color-primary);
    display: block;
    text-align: center;
    margin: 20px auto;
    margin-top: 20vh;
    width: fit-content;
    animation: rebound 1.5s ease 2;
}

.fleche-scroll:hover svg {
    color: var(--color-text);
    transition: all 0.3s ease;
}

@keyframes rebound {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   6.b PAGE UNDERGROUND
   ============================================ */
.page-underground {
    padding: 0;
    margin-top: 0;
}

/*Hero*/
.hero-underground {
    position: relative;
    height: 100vh;
    overflow: hidden;
    border: none;
    margin: 0;
    padding: 0;
}

.hero-underground video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-underground img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
}

.hero-underground::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.9),
            rgba(10, 10, 10, 0.2))
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 2;
}

.breadcrumb {
    color: var(--color-muted);
    font-size: 0.85em;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-titre {
    font-size: 5em;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text);
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}

.accent {
    color: var(--color-primary);
}

/*Description*/
.us-description {
    max-width: 700px;
    padding-block: var(--spacing-section);
    border: none;
    margin: 0;
}

.us-description p {
    font-size: 1.05em;
    margin-bottom: 25px;
}

/*Services*/
.us-services {
    padding-block: var(--spacing-section);
    border: none;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/*Citation*/

.citation-contenu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: right;
}

.us-citation {
    padding: 60px;
    border: none;
    margin: 0;
}

.us-citation blockquote {
    font-size: 1.8em;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    color: var(--color-text);
    font-style: normal;
    line-height: 1.4;
    margin: 0;
}

/*CTA*/
.us-cta {
    padding: 0 60px 60px 60px;
    border: none;
    margin: 0;
    max-width: 700px;
}

.us-cta p {
    font-size: 1.05em;
    margin-bottom: 40px;
}

.us-cta strong {
    color: var(--color-text);
    font-weight: bold;
}

.cta-boutons {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}



/* ============================================
   7. PAGE CONTACT — Coordonnées
   ============================================ */

.section-coordonnees {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border: none;
    padding: 0;
    margin: 0;
    margin-top: 25vh;
    margin-bottom: 60vh;
    min-height: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coordonnees-grid {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 20px 40px;
    justify-content: center;
}

.coordonnees-labels {
    text-align: right;
}

.coordonnees-valeurs {
    text-align: left;
}

.coordonnees-labels p {
    color: var(--color-primary);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9em;
    margin: 0;
}

.coordonnees-valeurs p {
    color: var(--color-text);
    margin: 0;
}

.coordonnees-valeurs a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.coordonnees-valeurs a:hover {
    color: var(--color-text);
    border-bottom: 1px solid var(--color-primary);
    transition: all 0.3s ease;
}




/* ============================================
   8. PAGE CONTACT — Formulaire
   ============================================ */

.section-formulaire {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 1px;
}

.contact-form {
    width: 100%;
    max-width: 800px;
    padding-top: 60px;
    padding-bottom: 20px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 0px solid var(--color-primary);
    border-radius: 2px;
}

.contact-form input,
.contact-form select {
    padding: 12px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-bg);
    ;
    color: var(--color-text);
    font-family: "Nightcraftersfont", sans-serif;
    font-size: 1em;
}

.contact-form textarea {
    padding: 12px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-bg);
    ;
    color: var(--color-text);
    font-family: "Nightcraftersfont", sans-serif;
    font-size: 1em;
    resize: none;
    min-height: 100px;
    overflow: hidden;
    transition: height 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-muted);
}

select {
    color: var(--color-muted);
}

select:valid {
    color: var(--color-text);
}

#form-status {
    margin-top: 20px;
    color: var(--color-primary);
    text-align: center;
    letter-spacing: 2px;
}

/* ============================================
   9. PAGE ÉVÉNEMENTS
   ============================================ */
.carte-info {
    padding: 15px;
}

.carte-info h3 {
    color: var(--color-text);
    margin: 0 0 8px 0;
}

.lieu-evenement {
    color: var(--color-primary);
    font-size: 0.9em;
    margin: 0;
}

.carte-date {
    color: var(--color-muted);
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
}

.card-event {
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}

.card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.03);
}



/* ============================================
   10. RESPONSIVE
   ============================================ */

/* Desktop*/
@media (max-width: 1440px) {}


/*Laptop standard*/
@media (max-width: 1280px) {}

/* Tablettes tablettes paysages - petits laptops*/
@media (max-width: 1024px) {

    .page-underground {
        margin-top: 0;
    }

    .grid-poles a:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablettes portrait*/
@media (max-width: 768px) {

    .burger {
        display: flex;
    }

    #nav {
        display: block;
        position: absolute;
        top: 0px;
        right: 60px;
        background-color: transparent;
        border: none;
        padding: 15px 20px;
        z-index: 999;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    #nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    nav ul {
        flex-direction: column;
        padding: 5px;
        margin: 0;
    }

    nav li {
        display: block;
        margin: 20px 0;
        text-align: right;
    }

    .logo-link img {
        width: 60px;
        height: 60px;
    }

    .modal-panel {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 92vh;
        border-radius: 2px 2px 0 0;
        border-left: none;
        border-right: none;
        transform: translateY(60px);
        opacity: 0;
    }

    .modal-panel.open {
        transform: translateY(0);
        opacity: 1;
    }

    .modal-handle {
        display: block;
    }

    .modal-galerie {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-titre {
        font-size: 3.8em;
    }

    .grid-poles {
        gap: 20px;
    }
}


/* Mobile - Smartphone Paysage */
@media (max-width: 600px) {

    :root {
        --hero-offset: 20vh;
    }

    main {
        padding: 0px;
    }

    .logo-link img {
        width: 48px;
        height: 48px;
    }

    .section-narrow {
        margin-top: -10vh;
        margin-bottom: -10vh;

    }

    .grid-poles {
        grid-template-columns: repeat(1, 1fr);
        margin-top: -5vh;
    }

    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }



    .presentation-contenu {
        grid-template-columns: 1fr;
    }

    .presentation-photo {
        display: none;
    }

    .fleche-scroll {
        display: none;
        margin-top: 10px;

    }

    /*Responsive Underground Series*/
    .hero-titre {
        font-size: 2.2em;
    }

    .hero-overlay {
        left: 30px;
        bottom: 40px;
    }

    .us-description,
    .us-services,
    .us-cta {
        padding: 40px 30px;
    }

    .us-citation {
        margin: 0 30px 40px 30px;
        padding: 40px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .header-break::before {
        content: "\A";
        white-space: pre;
    }

    #presentation {
        padding-top: 10vh;
    }

}

/* Mobile - Smartphone Standard */
@media (max-width: 480px) {

    main {
        padding: 0px;
    }

    section {
        padding: 13px;
        margin: 0px 0;
    }

    .grid-poles {
        grid-template-columns: repeat(1, 1fr);
        margin-top: -5vh;
    }

    .grille-evenements {
        grid-template-columns: repeat(1, 1fr);
    }

    h1 {
        font-size: 1.5em;
    }

    .logo-link img {
        width: 38px;
        height: 38px;
    }

    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .modal-body {
        padding: 20px 20px 32px;
    }

    .modal-galerie {
        grid-template-columns: repeat(2, 1fr);
    }


    /*Responsive Underground Series*/
    .hero-titre {
        font-size: 2.2em;
    }

    .cta-boutons {
        flex-direction: column;
        align-items: center;
    }

    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .citation-contenu {
        grid-template-columns: 1fr;
    }
}


/*Mobile - Petits Smartphones*/
@media (max-width: 375px) {
    .logo-link img {
        width: 30px;
        height: 30px;
    }

    .header-title {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        margin-top: 10px;
    }
}

/* ============================================
   11. MODALE ÉVÉNEMENT
   ============================================ */

/* Backdrop */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* Panel — desktop */
.modal-panel {
    position: fixed;
    z-index: 1101;
    background-color: #111111;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 2px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.97);
    width: min(92vw, 920px);
    max-height: 88vh;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.modal-panel.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

/* Empêcher que scroll.js capture la modale */

.modal-panel * {
    opacity: 1;
}

/* Verrou scroll body */
body.modal-active {
    overflow: hidden;
}

/* Drag handle (mobile uniquement) */
.modal-handle {
    display: none;
    width: 40px;
    height: 4px;
    background: rgba(212, 175, 55, 0.35);
    border-radius: 2px;
    margin: 14px auto 0;
}

/* Bouton fermer */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-muted);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, border-color 0.2s;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Hero image */
.modal-hero {
    position: relative;
    width: 100%;
    height: clamp(200px, 40vh, 360px);
    overflow: hidden;
    background: #1a1a1a;
}

.modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
}

.modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 60%);
}

.modal-hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 4px 10px;
}

/* Corps */
.modal-body {
    padding: 28px 32px 40px;
}

.modal-titre {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 8px;
    padding-right: 40px;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modal-meta span {
    color: var(--color-muted);
}

.modal-meta .meta-lieu {
    color: var(--color-primary);
}

.modal-sep {
    width: 40px;
    height: 1px;
    background: var(--color-primary);
    margin-bottom: 24px;
    opacity: 0.6;
}

.modal-description {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Labels de section */
.modal-section-titre {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 14px;
}

/* Galerie photos */
.modal-galerie {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 32px;
}

.modal-galerie-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    cursor: zoom-in;
}

.modal-galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: transform 0.4s ease, filter 0.3s ease;
}

.modal-galerie-item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
}

/* Affiches scroll horizontal */
.modal-affiches {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.modal-affiches::-webkit-scrollbar {
    display: none;
}

.modal-affiche {
    flex: 0 0 auto;
    width: 140px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-affiche img {
    width: 100%;
    display: block;
}

/* Zone vidéo */
.modal-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 32px;
    cursor: pointer;
}

.modal-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal-video-play {
    width: 56px;
    height: 56px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-video-container:hover .modal-video-play {
    background: rgba(212, 175, 55, 0.15);
}

.modal-video-play svg {
    margin-left: 4px;
}

.modal-video-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-muted);
}

/* Tags */
.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-muted);
    border: 1px solid rgba(170, 170, 170, 0.25);
    padding: 4px 10px;
}