/* ============================================================
   GAYMER FESTIVAL 2026 - Direction artistique
   Charte : fond indigo profond, arc-en-ciel 6 couleurs,
   accent crème, esthétique rétro-gaming (pixels, cœurs 8-bit).
   ============================================================ */

:root {
    /* Palette arc-en-ciel - variables officielles de la charte Figma */
    --gf-rouge:  #CB332B;
    --gf-corail: #E46E56;
    --gf-creme:  #F6D791;
    --gf-vert:   #4BAD49;
    --gf-bleu:   #476BA7;
    --gf-violet: #693983;

    /* Accent ambré (billets, titres, séparateur) */
    --gf-orange: #F5821F;
    --gf-jaune:  #FFC619;

    /* Dégradé arc-en-ciel maître : 6 bandes nettes */
    --gf-arc-en-ciel: linear-gradient(
        to right,
        var(--gf-rouge)  0%      16.667%,
        var(--gf-corail) 16.667% 33.333%,
        var(--gf-creme)  33.333% 50%,
        var(--gf-vert)   50%     66.667%,
        var(--gf-bleu)   66.667% 83.333%,
        var(--gf-violet) 83.333% 100%
    );

    /* Fonds & surfaces */
    --gf-bg:       #1D1240; /* fond violet (repris de l'édition 2025) */
    --gf-bg-edge:  #0F0E0F; /* bas du dégradé de fond */
    --gf-surface:  rgba(45, 30, 90, 0.92); /* fond violet des cartes */
    --gf-border:   #F6D791; /* contour crème (Boîte) */
    --gf-glow:     rgba(246, 215, 145, 0.18); /* halo crème doux */

    /* Texte */
    --gf-text:      #ffffff;
    --gf-text-soft: #E2E2EA;

    /* Accent principal */
    --gf-accent:    var(--gf-creme);

    /* Rayons */
    --gf-radius:    18px;
    --gf-radius-lg: 30px;
}

body {
    /* Couleurs 2025 : clair (#2D1E5A) en haut → de plus en plus sombre vers le bas (grille + carrés #fond par-dessus) */
    background: linear-gradient(180deg, #2D1E5A 0%, #2D1E5A 20%, var(--gf-bg) 58%, var(--gf-bg-edge) 100%);
    overflow-x: hidden;
}

main {
    width: 90%;
    margin: auto;
    padding-top: 20px;
}

main > section {
    width: 95%;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
    scroll-margin-top: 100px;
}

p {
    line-height: 24px;
}

h1 {
    display: block;
    position: relative;
    font-family: 'Righteous';
    font-style: normal;
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(36px, 8vw, 65px);
    line-height: 1.05;
    padding: 20px 0 30px;
    letter-spacing: -0.02em;
    color: var(--ng-white);
    margin: 60px 0 60px 0;
}

h1::after {
    display: block;
    position: absolute;
    width: 100%;
    max-width: 340px;
    height: 5px;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(images/separateur.svg) center no-repeat;
    background-size: contain;
}

h2 {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 200;
    font-size: 27px;
    line-height: 30px;
    padding: 10px 0;
    letter-spacing: -0.02em;
    color: var(--ng-white);
    margin: 0;
}

h3 {
    font-family: 'Righteous';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: -0.02em;
    color: var(--ng-white);
    margin: 0;
}

h4 {
    font-family: 'Josefin Slab';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: var(--gf-text-soft);
    margin: 0;
}

/* Bouton primaire = CTA « bandeau » DA 2026 : dégradé ambre + texte sombre */
.primary-button-gf-2024 {
    padding: 15px 32px;
    display: inline-block;

    background: linear-gradient(to right, #F5821F, #FFC619 50%, #F5821F);
    border-radius: 12px;
    color: #1a1330;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);

    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    margin: 8px;

    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.primary-button-gf-2024:hover {
    text-decoration: none;
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 8px 20px rgba(245, 130, 31, 0.35);
}

.primary-button-gf-2024:active {
    text-decoration: none;
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

/* Bouton secondaire = « ghost » à liseré crème, se remplit au survol */
.secondary-button-gf-2024 {
    padding: 13px 30px;
    display: inline-block;

    background: transparent;
    border: 2px solid var(--gf-creme);
    border-radius: 12px;
    color: var(--gf-creme);

    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    margin: 8px;

    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.secondary-button-gf-2024 img {
    height:22px;
    vertical-align: middle;
}

.secondary-button-gf-2024:hover {
    text-decoration: none;
    background: var(--gf-creme);
    color: #1a1330;
    transform: translateY(-2px);
}

.secondary-button-gf-2024:active {
    text-decoration: none;
    transform: translateY(0);
}

#hero > * {
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 700px) {

    h1 {
        /* la taille est fluide (clamp) ; on resserre juste les marges sur mobile */
        margin: 30px 0 30px 0;
    }
}

/* ============================================================
   BILLETTERIE
   ============================================================ */

#billetterie .billets {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
}

/* Carte billet « ticket » : bandeau perforé (design fourni) + contenu */
#billetterie .billet {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    text-align: left;
    background-color: var(--gf-surface);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    box-shadow: 0 0 15px var(--gf-glow);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

#billetterie .billet:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px var(--gf-glow);
}

/* Bandeau perforé + libellé (image : JOURNÉE / 4 JOURS) */
#billetterie .billet-bandeau {
    display: block;
    width: 100%;
    height: auto;
}

#billetterie .billet-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 10px 26px 26px;
}

#billetterie .billet-scope {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: var(--gf-text-soft);
    margin: 4px 0 16px;
}

#billetterie .billet ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

#billetterie .billet li {
    position: relative;
    padding-left: 26px;
    margin: 8px 0;
    line-height: 1.4;
}

/* Puce ■ violette */
#billetterie .billet li::before {
    content: '\25A0';
    position: absolute;
    left: 2px;
    top: 1px;
    font-size: 12px;
    color: var(--gf-violet);
}

/* CTA aligné en bas de la carte */
#billetterie .billet .primary-button-gf-2024 {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 700px) {
    #billetterie .billet { max-width: 460px; }
}


/* ============================================================
   PROGRAMME
   ============================================================ */


.programme_column {
    width: 100%;
    margin-top: 20px;
}

.programme_column .prog_date {
    display: inline-block;
    color: #241a4d;
    white-space: nowrap;
    font-size: 26px;
    font-family: "Figtree";
    text-transform: uppercase;
    font-weight: 600;
    padding: 0px 30px;
    vertical-align: middle;
    border-radius: 10px;
    /* Design plat précédent, couleurs DA 2026 : argent/chrome + bords violets + texte navy */
    background: linear-gradient(to right, #bebac7, #fff, #bebac7);
    border-left: 5px solid #693983;
    border-right: 5px solid #693983;
    box-shadow: 0 5px 10px #0d0b18;
    margin-bottom: 15px;
}

.programme_column .prog_date span {
    display: inline-block;
    transform: translateY(-4px);
}

.programme_column .prog_date strong {
    display: inline-block;
    font-size: 40px;
    font-weight: 900;
}

.programme_column .prog_hour {
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 20;
    white-space: nowrap;

    font-family: 'Righteous';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    color: #1a1330;
    padding: 3px 18px 5px 18px;

    transform: translateX(-50%) translateY(-50%);

    border-radius: 10px;
    box-shadow: 0 5px 0px #b5630f;
    background: linear-gradient(to right, #F5821F, #FFC619 50%, #F5821F);
}

#programme-wrapper {
    margin: auto;
    display: grid;
    flex-wrap: wrap;
    column-gap: 70px;
    grid-template-columns: 1fr;
    padding-top: 0px;
    justify-items: center;
    max-width: 1800px;
}

@media (min-width: 700px) {
    #programme-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    #programme-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

#jdr,
#programme {
    width: 100%;
    --prog_main_color: #fff;
    --prog_event_color: #693983;
    --prog_event_gradient: linear-gradient(90deg, #CB332B 16.9%, #E46E56 17%, #E46E56 33.9%, #F6D791 34%, #F6D791 49.9%, #4BAD49 50%, #4BAD49 66.5%, #476BA7 66.9%, #476BA7 83.9%, #693983 84%);
    --prog_table_color: #476BA7;
    --prog_jdr_color: #4BAD49;
}

.programme_content {
    position: relative;
    margin: 0 auto;
    width: 100%;
    background-color: rgba(45, 30, 90, 0.8);
    border-radius: 30px;
    padding-top: 0px;
    padding-bottom: 4px;
    max-width: 400px;
    box-shadow: 0 0 15px var(--gf-glow);
    margin-bottom: 20px;
}

.programme_content.prg_event,
.programme_content.prg_ouverture,
.programme_content.prg_table,
.programme_content.prg_atelier,
.programme_content.prg_jdr {
    margin-top: 40px;
    padding-top: 15px;
}

.programme_content .prog_border {
    position: absolute;
    z-index: 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background: #fff;
    width: 100%;
    height: 32px;
    bottom: 0;
}

.programme_content.prg_event .prog_border {
    background: var(--prog_event_gradient);
}

.programme_content.prg_atelier .prog_border,
.programme_content.prg_table .prog_border {
    background: var(--prog_table_color);
}
.programme_content.prg_jdr .prog_border {
    background: var(--prog_jdr_color);
}

.programme_content .prog_wrapper {
    z-index: 5;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background-color: rgba(45, 30, 90, 1);
}

.programme_content.prg_atelier .prog_wrapper,
.programme_content.prg_ouverture .prog_wrapper,
.programme_content.prg_jdr .prog_wrapper,
.programme_content.prg_table .prog_wrapper {
    padding-bottom: 10px;
}

.programme_content .prog_title {
    display: block;
    width: 100%;
    margin: 20px 0 10px 0;
    font-family: 'Righteous';
    font-style: normal;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    position: relative;
    padding: 0 10px;
    box-sizing: border-box;
    padding-bottom: 15px;
}

.programme_content.prg_table .prog_title::before {
    content:'Table ronde';
    display: block;
    width: 100%;
    font-family: 'Josefin Slab';
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 23px;
    letter-spacing: -0.02em;
    color: var(--prog_table_color);
    margin: 0;
}

/* Libellé « Spectacle » : calqué sur « Table ronde », en jaune */
.programme_content .prog_title.spectacle::before {
    content: 'Spectacle';
    display: block;
    width: 100%;
    font-family: 'Josefin Slab';
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 23px;
    letter-spacing: -0.02em;
    color: var(--gf-jaune);
    margin: 0;
}

.programme_content .prog_title.spectacle {
    font-size: 22px;
    line-height: 24px;
    padding-bottom: 0;
}

.programme_content .prog_title.spectacle::after {
    display: none;
}

/* Carte spectacle : bordure ambre (au lieu de l'arc-en-ciel des évènements).
   :has() non supporté -> repli sur la bordure arc-en-ciel, acceptable. */
.programme_content.prg_event:has(.prog_title.spectacle) .prog_border {
    background: linear-gradient(to right, var(--gf-orange), var(--gf-jaune), var(--gf-orange));
}

/* Élément en attente des visuels / annonces 2026 (image, invité·es…) */
.a-venir {
    display: none !important;
}

.programme_content .prog_title::after {
    display: block;
    position: absolute;
    width: 70%;
    max-width: 180px;
    height: 4px;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url('./images/separateur.svg') center no-repeat;
    background-size: contain;
}

.programme_content.prg_ouverture .prog_title,
.programme_content.prg_atelier .prog_title,
.programme_content.prg_table .prog_title,
.programme_content.prg_jdr .prog_title {
    font-size: 22px;
    line-height: 24px;
    padding-bottom: 0px;
}

.programme_content.prg_table .prog_title {
    padding-bottom: 0px;
}

.programme_content.prg_ouverture .prog_title::after,
.programme_content.prg_table .prog_title::after,
.programme_content.prg_atelier .prog_title::after,
.programme_content.prg_jdr .prog_title::after {
    display: none;
}

.programme_content.prg_ouverture .prog_title {
    background: url('images/prog/icons.png') center no-repeat;
    background-size: contain;
}

.programme_content .prog_desc {
    font-size: 15px;
    line-height: 21px;
    margin: 10px 0;
    padding: 0 10px;
}

.programme_content span.cast {
    font-family: "Figtree", sans-serif;
    font-weight: 900;
    display: inline-block;
    white-space: nowrap;
    text-transform: uppercase;
    margin: 0 2px;
}

.programme_content img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

#prog_sort {
    margin: 20px 0 20px 0;
}

@media (max-width: 961px) {
    .programme_column .prog_date {
        position: sticky;
        top: 10px;
        z-index: 200;
    }
    /* Filtres réactivés sur mobile : barre statique centrée (style DA),
       non sticky pour ne pas heurter le burger fixe ni les pastilles de date */
    #prog_sort {
        display: block;
        max-width: 94%;
        margin: 0 auto 18px;
        background: rgba(20, 14, 38, 0.85);
        padding: 10px 8px;
        border-radius: 14px;
        border: 1px solid var(--gf-border);
    }
    #prog_sort .prog_sort_label {
        display: none;
    }
    #prog_sort button {
        font-size: 14px;
        padding: 5px 11px;
        margin: 4px;
    }
}

#prog_sort button {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    background: transparent;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5), inset 0px -3px 4px rgba(0, 0, 0, 0.15);
    border-radius: 93px;
    border: 1px solid #ffffff44;
    color: #fff;

    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    transition: .2s ease;
    cursor: pointer;
}

#prog_sort button.btn_all:hover {background: #ffffff66;}
#prog_sort button.btn_event:hover {background: var(--prog_event_color);}
#prog_sort button.btn_tables:hover {background: var(--prog_table_color)}
#prog_sort button.btn_jdr:hover {background: var(--prog_jdr_color) }


#prog_sort button.btn_all.selected {background: #ffffffff; color:rgba(24, 18, 54, 1); box-shadow: 0 0 10px #fff;}
#prog_sort button.btn_event.selected {background: var(--prog_event_color); box-shadow: 0 0 10px var(--prog_event_color) ;}
#prog_sort button.btn_tables.selected {background: var(--prog_table_color); box-shadow: 0 0 10px var(--prog_table_color);}
#prog_sort button.btn_jdr.selected {background: var(--prog_jdr_color); box-shadow: 0 0 10px var(--prog_jdr_color);}

#programme-wrapper h2 {
    font-weight: 700;
    font-size: 39.06px;
    line-height: 46px;
}

#programme-wrapper h3 {
    font-weight: 600;
    font-size: 20px;
}

#informations-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    padding-top: 30px;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 700px) {
    #informations-grid {
        flex-wrap: wrap;
    }
}
.informations-card {
    max-width: 600px;
}

#informations-grid .bloc_title {
    display: inline-block;
    margin: 10px auto;
    z-index: 20;

    font-family: 'Righteous';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    color: #1a1330;
    padding: 3px 18px 5px 18px;
    text-transform: uppercase;

    border-radius: 10px;
    box-shadow: 0 5px 0px #b5630f;
    background: linear-gradient(to right, #F5821F, #FFC619 50%, #F5821F);
}

.gradient-border-box {
    --b:3px;
    --r:30px;

    padding: calc(var(--b) + 13px) calc(var(--b) + 29px);
    display: inline-block;
    position:relative;
    z-index:0;
    /* Fond violet plein (comme les blocs « À venir ») : occulte les carrés
       animés du fond pour garder le texte parfaitement lisible. */
    background-color: var(--gf-surface);
    border-radius: var(--r);
    filter: drop-shadow(0px 0px 30px var(--gf-glow));
    font-weight: 700;
    transition: color 400ms ease;
}

.gradient-border-box:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: var(--b);
    border-radius: var(--r);
    background: var(--c, var(--gf-creme));
    -webkit-mask:
       linear-gradient(rgba(0,0,0,1) 0 0) content-box,
       linear-gradient(rgba(0,0,0,0.9) 0 0);
    -webkit-mask-composite: xor;
    mask:
       linear-gradient(rgba(0,0,0,1) 0 0) content-box,
       linear-gradient(rgba(0,0,0,0.9) 0 0);
    mask-composite: exclude;
}

#location-card:before {
    background: var(--c, var(--gf-creme));
}

#catering-card:before {
    background: var(--c, var(--gf-creme));
}

#map-wrapper {
    text-align: center;
}

#map-bubble {
    width: 250px;
    border-radius: 100%;
    object-fit: cover;
    filter: drop-shadow(0px 0px 10px rgba(246, 215, 145, 0.3));

    transition: 400ms ease;
}

#map-bubble:hover, #map-bubble:active {
    filter: drop-shadow(0px 0px 15px rgba(246, 215, 145, 0.65));
}

.partners-box-logos {
    margin: auto;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.partners-box-logos > * {
    margin: 15px;
}

#partners-boxes img {
    filter: drop-shadow(0px 0px 10px rgba(246, 215, 145, 0.3));
    transition: 400ms ease;
    transform: scale(.8);
}

#partners-boxes img:hover, #partners-boxes img:active {
    filter: drop-shadow(0px 0px 15px rgba(246, 215, 145, 0.65));
}

@media (min-width: 961px) {
    main {
        padding-top: 10px;
    }
}

#nos-reseaux div {
    padding-top: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: 310px;
    justify-content: center;
}

@media (min-width: 650px) {
    #nos-reseaux div {
        grid-template-columns: repeat(2, 310px);
    }
}

@media (min-width: 980px) {
    #nos-reseaux div {
        grid-template-columns: repeat(3, 310px);
    }
}

.reseau {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 140px;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 200;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    background-color: rgba(45, 30, 90, 0.5);
    color: #E2E2EA;
    cursor: pointer;
    transition: 400ms ease;
}

#nos-reseaux a:hover {
    text-decoration: none;
}

.reseau:hover {
    background-color: var(--gf-violet);
}

.warning {
    color: #F6D791;
}

/* ============================================================
   FOND ANIMÉ - grille + carrés (DA 2026)
   ============================================================ */
#fond {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    /* Grille rétro */
    background-image:
        linear-gradient(rgba(215, 202, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 202, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Carré de couleur (taille/position/opacité définies en JS) qui scintille */
.carre {
    position: absolute;
    background: var(--c, var(--gf-violet));
    box-shadow: 0 0 9px var(--c, var(--gf-violet));
    opacity: 0;
    animation-name: carre-twinkle;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    will-change: opacity;
}

@keyframes carre-twinkle {
    0%, 100% { opacity: 0; }
    50%      { opacity: var(--op, 0.2); }
}

@media (prefers-reduced-motion: reduce) {
    .carre { animation: none; opacity: 0.08; }
}

.replays {
    display: grid;
    align-items: start;
    gap: 20px;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    margin: 50px auto;
}

@media (max-width: 640px) {
    .replays {
        grid-template-columns: 1fr;
    }
}

.replays a {
    display: block;
    aspect-ratio: 16/9;
    transition: all 0.2s;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px #ffffff29;
}

.replays img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
}

.replays a:hover {
    box-shadow: 0 0 50px rgba(246, 215, 145, 0.6);
    transform: rotate(-2deg);
}

/* ============================================================
   COMPOSANTS DA 2026
   ============================================================ */

/* ---- Barre de couleurs (arc-en-ciel) ---- */
.barre-couleurs {
    display: block;
    width: 100%;
    height: 14px;
    background: var(--gf-arc-en-ciel);
    border-radius: 4px;
}

/* ---- Cœurs pixel (décor) ---- */
.coeurs {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin: 22px 0;
}

.coeur {
    height: 30px;
    width: auto;
    aspect-ratio: 14 / 11;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45));
}

/* ---- Hero ---- */
#hero {
    /* Dégage la barre de navigation fixe (desktop) */
    padding-top: 120px;
    padding-bottom: 10px;
}

@media (max-width: 960px) {
    #hero { padding-top: 80px; }
}

#hero #gf-logo {
    width: 540px;
    max-width: 88%;
    height: auto;
    margin: 6px auto 2px;
    filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.55));
}

/* La ligne de dates reprend la police d'affichage en crème */
#hero-subtitle {
    font-family: 'Righteous';
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(19px, 4.6vw, 30px);
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--gf-creme);
    margin: 6px 0;
}

#hero h4 {
    color: var(--gf-text-soft);
    max-width: 760px;
    margin: 4px auto;
}

#hero .barre-couleurs {
    max-width: 520px;
    margin: 24px auto 6px;
}

@media (max-width: 700px) {
    #hero #gf-logo { margin-top: 10px; }
}


/* ---- Bloc « À venir » (sections en préparation) ---- */
.bientot {
    max-width: 640px;
    margin: 30px auto 10px;
    padding: 48px 32px;
    text-align: center;
    background-color: var(--gf-surface);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-lg);
    box-shadow: 0 0 15px var(--gf-glow);
}

.bientot .bientot-label {
    display: block;
    font-family: 'Josefin Slab';
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gf-jaune);
    margin-bottom: 6px;
}

.bientot h3 {
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 12px;
}

.bientot p {
    color: var(--gf-text-soft);
    max-width: 480px;
    margin: 0 auto;
}

.bientot .coeurs {
    margin-top: 24px;
    margin-bottom: 0;
}


/* ---- Burger mobile à l'identité DA (remplace le rond violet par défaut) ---- */
#main-nav-burger {
    background: #251A46;
    border: 2px solid var(--gf-border);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.40);
}


/* ---- Footer : touche DA 2026 (structure GF conservée) ---- */
footer {
    position: relative;
    background-color: #191333; /* indigo sombre, cohérent avec la DA */
}

/* Liseré arc-en-ciel en haut du footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gf-arc-en-ciel);
    border-radius: 16px 16px 0 0;
}

.footer-topper {
    padding-top: 6px;
}

.footer-coeurs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 6px 0 10px;
}

.footer-coeurs .coeur {
    height: 24px;
}

.footer-fest {
    font-family: 'Righteous';
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 16px;
    color: var(--gf-creme);
    margin: 0 0 20px;
}
