/*
 * Theme Name: Nom de Mon Super Thème
 * Theme URI: https://mon-site-web.com
 * Author: Polariz web agency
 * Description: Thème WordPress personnalisé pour l'association Revel'Acteur.
 * Version: 1.0
 *
 * Ceci est le fichier CSS principal chargé via wp_enqueue_style.
 */

/* ------------------------------------------------------------- */


@font-face {
    font-family: 'Willond';
    src: url("../fonts/Willond.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'TT Rounds Neue';
    /* Simplifie le nom ici */
    src: url('../fonts/TT\ Rounds\ Neue\ Trial\ Condensed\ Black.ttf') format('truetype');
    font-weight: 700;
}



/* ------------------------------------------------------------- */
/* 3. STYLES DE L'EN-TÊTE (HEADER) ET DU MENU                    */
/* ------------------------------------------------------------- */

/* === HEADER DESKTOP === */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: var(--color-secondary, #fff);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
    gap: 16px;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-logo-link img {
    max-height: 55px;
    width: auto;
}

.site-description {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

/* === NAV DESKTOP === */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary, #9168f3);
    white-space: nowrap;
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

/* === SOCIAL ICONS DESKTOP === */
.social-icons {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
    flex-shrink: 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}


.social-icons a .dashicons {
    font-size: 28px !important;
    width: 28px !important;
    height: 28px !important;
    line-height: 28px !important;
    color: var(--color-primary);
}

.social-icons li {
    padding: 0;
}

/* === HAMBURGER TOGGLE === */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.menu-toggle .dashicons {
    font-size: 30px !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    color: var(--color-primary);
}

.menu-toggle .icon-close {
    display: none !important;
}

.menu-toggle .icon-burger {
    display: inline-block;
}

.menu-toggle.is-active .icon-burger {
    display: none !important;
}

.menu-toggle.is-active .icon-close {
    display: inline-block !important;
}

/* === MENU OVERLAY MOBILE === */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    overflow: hidden;
}

.menu-overlay--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* --- Contenu de l'overlay --- */
.menu-overlay__inner {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2.5vh, 24px);
    padding: 16px 32px;
    text-align: center;
    box-sizing: border-box;
}

.menu-overlay__nav {
    width: 100%;
    max-width: 460px;
}

.menu-overlay__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-overlay__nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-overlay__nav li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-overlay__nav a {
    display: block;
    padding: clamp(6px, 1.2vh, 15px) 8px;
    font-family: 'Willond', cursive;
    font-size: clamp(1.6rem, 4.5vh, 2.8rem);
    font-weight: 700;
    color: var(--color-primary, #9168f3);
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    border-radius: 8px;
}

.menu-overlay__nav a:hover,
.menu-overlay__nav a:focus {
    background-color: rgba(0, 0, 0, 0.03);
    opacity: 0.85;
}

/* Stagger animation pour les liens */
.menu-overlay--open .menu-overlay__nav li {
    animation: menuFadeIn 0.35s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.menu-overlay--open .menu-overlay__nav li:nth-child(1) {
    animation-delay: 0.04s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(2) {
    animation-delay: 0.08s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(3) {
    animation-delay: 0.12s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(4) {
    animation-delay: 0.16s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(5) {
    animation-delay: 0.20s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(6) {
    animation-delay: 0.24s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(7) {
    animation-delay: 0.28s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(8) {
    animation-delay: 0.32s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(9) {
    animation-delay: 0.36s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(10) {
    animation-delay: 0.40s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(11) {
    animation-delay: 0.44s;
}

.menu-overlay--open .menu-overlay__nav li:nth-child(12) {
    animation-delay: 0.48s;
}

/* Animation stagger pour les icônes sociales */
.menu-overlay--open .menu-overlay__social li {
    animation: menuFadeIn 0.35s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.menu-overlay--open .menu-overlay__social li:nth-child(1) {
    animation-delay: 0.52s;
}

.menu-overlay--open .menu-overlay__social li:nth-child(2) {
    animation-delay: 0.56s;
}

.menu-overlay--open .menu-overlay__social li:nth-child(3) {
    animation-delay: 0.60s;
}

.menu-overlay--open .menu-overlay__social li:nth-child(4) {
    animation-delay: 0.64s;
}

.menu-overlay--open .menu-overlay__social li:nth-child(5) {
    animation-delay: 0.68s;
}

@keyframes menuFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Icônes sociales dans l'overlay --- */
.menu-overlay__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-overlay__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(36px, 5.5vh, 46px);
    height: clamp(36px, 5.5vh, 46px);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.menu-overlay__social a:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}

.menu-overlay__social .dashicons {
    font-size: 22px !important;
    color: var(--color-primary);
    width: 22px !important;
    height: 22px !important;
    line-height: 22px !important;
}

body.menu-open {
    overflow: hidden;
}

/* === ETAPE 1 : Cacher les réseaux sociaux quand la place manque === */
@media (max-width: 1400px) {
    .site-header {
        padding: 10px 24px;
        gap: 12px;
    }

    .main-navigation a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .main-navigation ul {
        gap: 2px;
    }

    .social-icons {
        display: none !important;
    }

    .custom-logo-link img {
        max-height: 48px;
    }
}

/* === ETAPE 2 : Tablette et en dessous — passage en burger === */
@media (max-width: 991px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        gap: 8px;
    }

    .site-branding {
        flex: 0 0 auto;
        margin: 0;
    }

    .custom-logo-link img {
        max-height: 45px;
    }

    .menu-toggle {
        display: flex !important;
    }

    .site-description {
        display: none;
    }

    .main-navigation,
    .social-icons,
    .header-cta {
        display: none !important;
    }

    /* padding-top = logo 45px + padding 12px*2 + box-shadow 8px + marge */
    body {
        padding-top: 80px;
    }

    .page-hero,
    .banner {
        margin-top: -80px;
        padding-top: 80px;
    }

    .page-hero__shape,
    .home-asso__shape {
        display: none;
    }

    .menu-overlay__inner {
        padding: 80px 32px 24px;
    }

    .menu-overlay__nav a {
        font-size: clamp(1.5rem, 4vh, 2.4rem);
        padding: clamp(5px, 1.1vh, 14px) 8px;
    }
}

/* === ETAPE 3 : Petits mobiles === */
@media (max-width: 480px) {
    .site-header {
        padding: 8px 16px;
    }

    .custom-logo-link img {
        max-height: 38px;
    }

    /* padding-top = logo 38px + padding 8px*2 + box-shadow 8px + marge */
    body {
        padding-top: 66px;
    }

    .page-hero,
    .banner {
        margin-top: -66px;
        padding-top: 66px;
    }

    .menu-overlay__inner {
        padding: 66px 20px 16px;
        gap: clamp(8px, 2vh, 16px);
    }

    .menu-overlay__nav a {
        font-size: clamp(1.7rem, 7vw, 2.5rem);
        padding: clamp(4px, 1vh, 12px) 8px;
    }

    .menu-overlay__social a {
        width: clamp(32px, 5vh, 42px);
        height: clamp(32px, 5vh, 42px);
    }

    .menu-overlay__social .dashicons {
        font-size: clamp(18px, 2.5vh, 24px) !important;
        width: clamp(18px, 2.5vh, 24px) !important;
        height: clamp(18px, 2.5vh, 24px) !important;
        line-height: clamp(18px, 2.5vh, 24px) !important;
    }
}

/* === DESKTOP ONLY - cacher l'overlay === */
@media (min-width: 992px) {
    .menu-overlay {
        display: none;
    }
}

/* ------------------------------------------------------------- */
/* 4. STYLES DU BOUTON CTA (.btn-primary)                        */
/* ------------------------------------------------------------- */

.header-cta {
    /* Pour s'assurer qu'il est bien aligné */
    margin-left: 20px;
}

/* ------------------------------------------------------------- */
/* 4. STYLES DES BOUTONS (PRIMARY & SECONDARY)                   */
/* ------------------------------------------------------------- */

.btn-primary,
.btn-secondary {
    display: inline-block;
    /* INDISPENSABLE pour l'animation */
    padding: 12px 20px;
    border-width: 1px;
    border-style: solid;
    text-decoration: none;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    /* Animation fluide */
}

/* Bouton Vert (Secondary) */
.btn-secondary {
    margin: 16px;
}

/* EFFET HOVER COMMUN (Le soulèvement) */
.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9 !important;
    transform: translateY(-5px) !important;
    /* Il monte de 5px */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Optionnel: petite ombre pour l'effet de hauteur */
}

/* ------------------------------------------------------------- */
/* 6 . STYLES DU BOUTON CTA (.btn-secondary)                        */
/* ------------------------------------------------------------- */

.banner {
    background-color: var(--color-primary);
    color: #ffffff;
    text-align: left;
    font-size: 3.7rem;
    padding: 60px 0;
    font-weight: 700;
    position: relative;
    min-height: 60vh;
}

.accueil-p-1,
.accueil-p-2,
.accueil-p-3 {
    margin: 0 0 20px 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .banner {
        font-size: 3rem;
        padding: 48px 0;
        min-height: 50vh;
    }
}

@media (max-width: 768px) {
    .banner {
        font-size: 2.2rem;
        padding: 36px 0;
        min-height: 45vh;
        text-align: center;
    }

    .accueil-p-1,
    .accueil-p-2,
    .accueil-p-3 {
        text-align: center;
        display: block;
    }

    .accueil-p-3 {
        font-size: 1.1rem !important;
    }

    .banner .btn-primary {
        display: block;
        width: fit-content;
        margin: 16px auto 0;
    }
}

body {
    line-height: 1.6;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Styles des titres pour assurer la bonne taille et la bonne police */
h1 {
    font-size: 3em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 2em;
}

/* Container générique */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.4em;
    }
}

.hover-up {
    display: inline-block;
    /* Nécessaire pour que la transformation s'applique correctement */
    transition: transform 0.3s ease;
    /* Définit la durée et la fluidité */
    cursor: pointer;
}

.hover-up:hover {
    transform: translateY(-5px);
    /* Déplace l'élément de 5 pixels vers le haut */
}

/* ------------------------------------------------------------- */
/* 6. SECTION HOME 2 - Image + Texte sur fond violet             */
/* ------------------------------------------------------------- */

.home-section-deux {
    background: linear-gradient(135deg, #9370DB 0%, #8B5CF6 50%, #7C3AED 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.home-section-deux__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.home-section-deux__image-wrapper {
    flex-shrink: 0;
    width: 280px;
}

.home-section-deux__image {
    width: 100%;
    height: auto;
    display: block;
    border: 12px solid #ffffff;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.home-section-deux__content {
    flex: 1;
    max-width: 700px;
}

.home-section-deux__title {
    font-family: 'Willond', cursive;
    color: #BDFF5F;
    font-size: 3.4rem;
    line-height: 1.2;
    margin: 0 0 28px 0;
    font-weight: 400;
}

.home-section-deux__paragraph {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.home-section-deux__paragraph:last-of-type {
    margin-bottom: 0;
}

/* Responsive Tablette */
@media (max-width: 1024px) {
    .home-section-deux {
        padding: 60px 32px;
    }

    .home-section-deux__container {
        gap: 40px;
    }

    .home-section-deux__image-wrapper {
        width: 240px;
    }

    .home-section-deux__title {
        font-size: 2.5rem;
    }

    .home-section-deux__paragraph {
        font-size: 1rem;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .home-section-deux {
        padding: 50px 24px;
    }

    .home-section-deux__container {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .home-section-deux__image-wrapper {
        width: 220px;
    }

    .home-section-deux__content {
        max-width: 100%;
    }

    .home-section-deux__title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .home-section-deux__paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .home-section-deux {
        padding: 40px 20px;
    }

    .home-section-deux__image-wrapper {
        width: 180px;
    }

    .home-section-deux__image {
        border-width: 8px;
    }

    .home-section-deux__title {
        font-size: 1.75rem;
    }
}

/* ------------------------------------------------------------- */
/* 6bis. SECTION HOME "EXPLICATION ASSO"                         */
/* ------------------------------------------------------------- */

.home-asso {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 80px 32px;
}

.home-asso__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    position: relative;
    min-height: 420px;
}

.home-asso__text {
    flex: 1 1 55%;
    color: #2d2d2d;
    z-index: 1;
}

.home-asso__title {
    font-family: 'Willond', cursive;
    color: var(--color-primary);
    font-size: 3.4rem;
    line-height: 1.1;
    margin: 0 0 24px 0;
}

.home-asso__paragraph {
    margin: 0 0 20px 0;
    font-size: 1rem;
    max-width: 640px;
    line-height: 1.6;
}

.home-asso__paragraph:last-of-type {
    margin-bottom: 0;
}

.home-asso__shape {
    flex: 1 1 45%;
    position: relative;
    min-height: 320px;
}

.home-asso__shape .decoration-verte {
    position: absolute;
    left: -60%;
    bottom: -120%;
    width: 250%;
    height: auto;
    max-width: none;
    pointer-events: none;
    transform: rotate(120deg);
}

/* ------------------------------------------------------------- */
/* 6ter. BANNIÈRE HERO (Toutes les pages sauf Home)            */
/* ------------------------------------------------------------- */

.page-hero {
    height: 45vh;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero__title {
    margin: 0;
    margin-left: 10vw;
    text-align: left;
    font-family: 'Willond', cursive;
    color: var(--color-secondary);
    font-size: 6rem;
    z-index: 10;
    position: relative;
}

.page-hero__shape {
    position: absolute;
    right: 0;
    top: 10%;
    transform: translateY(-50%) rotate(-180deg);
    height: 200%;
    width: auto;
    pointer-events: none;
}

.association-content {
    padding: 50px 5vw;
    max-width: 1200px;
    margin: 0 auto;
}

.association-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.association-intro__text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
}

.association-intro__text p {
    margin-bottom: 1.2em;
}

.association-intro__text p:last-child {
    margin-bottom: 0;
}

.association-intro__lead {
    font-size: 1.15rem;
    margin-top: 1.5em !important;
}

.association-intro__image {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.association-intro img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 8px 8px 20px color-mix(in srgb, var(--color-secondary) 30%, transparent);
}

.association-section-lead {
    margin-top: 30px;
    font-size: larger;
}

@media (max-width: 1024px) {
    .page-hero {
        height: 40vh;
    }

    .page-hero__title {
        margin-left: 5vw;
        font-size: 4.5rem;
    }

    .page-hero__shape {
        height: 180%;
    }

    .association-content {
        padding: 4vw 4vw;
    }

    .association-intro {
        gap: 30px;
    }

    .association-intro {
        gap: 30px;
    }

    .association-intro__text {
        font-size: 1.05rem;
    }

    .association-intro__image {
        flex: 0 0 320px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 20vh;
    }

    .page-hero__title {
        margin-left: 5vw;
        margin-right: 5vw;
        font-size: 2.5rem;
        text-align: center;
    }


    .page-hero__shape {
        display: none;
    }

    .association-content {
        padding: 8vw 5vw;
    }

    .association-intro {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }

    .association-intro__text {
        font-size: 1rem;
    }

    .association-intro__text p {
        margin-bottom: 1em;
    }

    .association-intro__lead {
        font-size: 1.05rem;
        margin-top: 1.2em !important;
    }

    .association-intro__image {
        flex: 1;
        max-width: 100%;
    }

    .association-intro img {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }

    .association-section-lead {
        margin-top: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .home-asso {
        padding: 64px 24px;
    }

    .home-asso__container {
        gap: 32px;
        min-height: 360px;
    }

    .home-asso__title {
        font-size: 3rem;
    }


}

@media (max-width: 768px) {
    .home-asso {
        padding: 48px 16px;
    }

    .home-asso__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        min-height: auto;
    }

    .home-asso__title {
        font-size: 2rem;
    }

    .home-asso__paragraph {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .home-asso__shape {
        display: none;
    }

    .home-asso__shape .decoration-verte {
        position: relative;
        right: auto;
        top: auto;
        left: auto;
        height: auto;
        width: 100%;
        transform: rotate(120deg);
    }
}


/* ------------------------------------------------------------- */
/* 6quater. SECTION BLOCS EXPLICATION ASSOCIATION                */
/* ------------------------------------------------------------- */

.association-section-bloc-explication {
    background-color: var(--color-secondary);
    padding: 60px 5vw;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    box-sizing: border-box;
    margin-top: 50px;
}

.association-blocs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.association-section-bloc {
    background-color: var(--color-primary);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.association-section-bloc:hover {
    transform: translateY(-5px);
}

.association-section-bloc__title {
    font-family: 'Willond', cursive;
    color: var(--color-secondary);
    font-size: 2rem;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.association-section-bloc__text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .association-section-bloc-explication {
        margin-top: 40px;
        padding: 50px 4vw;
    }

    .association-blocs-grid {
        gap: 20px;
    }

    .association-section-bloc {
        padding: 30px 25px;
    }

    .association-section-bloc__title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .association-section-bloc-explication {
        margin-top: 30px;
        padding: 40px 5vw;
    }

    .association-blocs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .association-section-bloc {
        padding: 30px 20px;
    }

    .association-section-bloc__title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .association-section-bloc__text {
        font-size: 0.95rem;
    }
}

/* ------------------------------------------------------------- */
/* 6quinquies. SECTION AVENTURE RÉSEAUX                          */
/* ------------------------------------------------------------- */

.association-section-aventure-réseaux {
    background-color: var(--color-secondary);
    padding: 60px 30px;
    border-radius: 20px;
    max-width: 1200px;
    margin: 50px auto 0;
    text-align: center;
}

.association-section-aventure-réseaux>p {
    font-family: 'Willond', cursive;
    color: var(--color-primary);
    font-size: 2.5rem;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.social-networks-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.social-network-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.social-network-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-network-item a:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-network-item a .dashicons {
    font-size: 40px !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    color: var(--color-primary);
}

.social-network-item p {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 1024px) {
    .association-section-aventure-réseaux {
        padding: 50px 4vw;
        margin-top: 40px;
    }

    .association-section-aventure-réseaux>p {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .social-networks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .social-network-item a {
        width: 70px;
        height: 70px;
    }

    .social-network-item a .dashicons {
        font-size: 35px !important;
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
    }
}

@media (max-width: 768px) {
    .association-section-aventure-réseaux {
        padding: 40px 5vw;
        margin-top: 30px;
    }

    .association-section-aventure-réseaux>p {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .social-networks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .social-networks-grid .social-network-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .social-network-item a {
        width: 65px;
        height: 65px;
    }

    .social-network-item a .dashicons {
        font-size: 32px !important;
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
    }

    .social-network-item p {
        font-size: 0.9rem;
    }
}

/* =========================================
   5. NOUVEAU FOOTER (STYLE COMPLET & CORRIGÉ)
   ========================================= */

/* --- CONFIGURATION GLOBALE --- */
.site-footer-wrapper .container {

    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

/* ---------------------------------------------------------
   B. SECTION CONTACT (Fond Blanc + Forme Jaune)
--------------------------------------------------------- */
.footer-contact-section {
    background-color: var(--color-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

@media (max-width: 1024px) {
    .footer-contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .footer-contact-section {
        padding: 40px 0;
    }
}

/* Force le contenu à passer DEVANT la forme jaune */
.footer-contact-section .container {
    position: relative;
    z-index: 10;
}

/* La boite flexible qui contient Gauche (Titre+Btn) et Droite (Réseaux) */
.flex-container {
    display: flex;
    justify-content: space-between;
    /* ALIGNEMENT CLÉ : Aligne le bouton et les réseaux en BAS */
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* --- COLONNE GAUCHE --- */
.contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-title {
    font-family: 'Willond', cursive;
    color: white;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 450px;
}

@media (max-width: 1024px) {
    .contact-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.8rem;
        text-align: center;
        max-width: 100%;
    }
}

/* Reset des marges du bouton pour un alignement propre */
.footer-contact-section .contact-left .btn-primary {
    margin: 0;
    padding: 15px 30px;
    background-color: white;
    color: var(--color-primary);
}

/* --- COLONNE DROITE (Réseaux) --- */
.contact-right {
    display: flex;
    padding-bottom: 5px;
    /* Petit ajustement optique */
}

/* Force la couleur VIOLETTE pour les icôn.social-icons.purple-icons .dashicons {es */
.social-icons.purple-icons a {
    color: white !important;
    margin-left: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons.purple-icons a:hover {
    transform: translateY(-5px);
}

.social-icons.purple-icons .dashicons {
    font-size: 45px !important;
    width: 45px !important;
    height: 45px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
}

/* --- FORME JAUNE (SVG) --- */
.decoration-jaune {
    position: absolute;
    /* Position : Coin Haut Droit */
    top: -450px;
    right: -200px;

    /* Taille imposante */
    width: 900px;
    height: auto;

    z-index: 0;
    /* Derrière le texte */
    pointer-events: none;
    /* Ne gêne pas le clic */
    transform: rotate(0deg);
    /* Ajuste la rotation si besoin */
}

.decoration-verte {
    z-index: 0;
    /* Derrière le texte */
}

/* ---------------------------------------------------------
   C. BAS DE PAGE (Fond Vert + Menu)
--------------------------------------------------------- */
.footer-main-section {
    background-color: var(--color-secondary);
    /* VERT FLUO */
    padding: 30px 0 20px 0;
}

.footer-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

@media (max-width: 768px) {
    .footer-row-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Logo */
.footer-logo img {
    max-height: 70px;
    width: auto;
}

/* Menu Horizontal */
.footer-nav-horizontal {
    flex-grow: 1;
    margin: 0 40px;
}

.menu-horizontal-list {
    display: flex !important;
    flex-direction: row !important;
    /* Force l'horizontale */
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .menu-horizontal-list {
        flex-direction: column !important;
        gap: 15px;
        margin: 20px 0;
    }
}

.menu-horizontal-list li {
    display: inline-block;
}

.menu-horizontal-list a {
    color: var(--color-primary);
    /* VIOLET */
    font-weight: 700;
    text-transform: capitalize;
    /* Première lettre majuscule */
    font-size: 1rem;
    text-decoration: none;
}

.menu-horizontal-list a:hover {
    text-decoration: underline;
}

/* Ligne de séparation */
.footer-divider {
    border: 0;
    height: 2px;
    background-color: var(--color-primary);
    opacity: 0.5;
    margin: 20px 0;
    width: 100%;
}

/* Copyright */
.footer-copyright p {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* =========================================
   6. GRILLE DES PROJETS (CARDS)
   ========================================= */

/* Configuration de la grille (Grid Layout) */
.projects-grid {
    display: grid;
    /* Crée des colonnes automatiques de minimum 300px */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    /* Espace entre les cartes */
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1400px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 25px;
    }
}

.project-card-wrapper {
    height: 100%;
}

/* --- Style de la Carte --- */
.project-card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border-radius: 0;
    /* Pas d'arrondi sur la maquette */
    overflow: hidden;
    position: relative;
    /* Ombre légère pour détacher du fond (optionnel) */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    /* Monte un peu au survol */
}

/* 1. L'image (Moitié Haute) */
.card-image {
    height: 220px;
    /* Hauteur fixe pour l'image */
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 1400px) {
    .card-image {
        height: 200px;
    }
}

@media (max-width: 1200px) {
    .card-image {
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .card-image {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .card-image {
        height: 200px;
    }
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* L'image remplit la zone sans être déformée */
    transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}




/* Titre du projet */
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
}

@media (max-width: 1400px) {
    .card-title {
        font-size: 1.3rem;
        margin: 0 0 12px 0;
        min-height: 2.5em;
    }
}

@media (max-width: 1200px) {
    .card-title {
        font-size: 1.2rem;
        margin: 0 0 10px 0;
        min-height: 2.4em;
    }
}

@media (max-width: 1024px) {
    .card-title {
        font-size: 1.15rem;
        margin: 0 0 10px 0;
        min-height: 2.3em;
    }
}

@media (max-width: 768px) {
    .card-title {
        font-size: 1.1rem;
        min-height: auto;
    }
}

.card-title a {
    color: #ffffff;
    text-decoration: none;
}

/* Résumé (Excerpt) */
.card-excerpt {
    font-size: 0.9rem;
    color: #d1d5db;
    /* Blanc gris très clair */
    line-height: 1.5;
    font-weight: 300;
    /* Limite à 3 lignes max */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1400px) {
    .card-excerpt {
        font-size: 0.85rem;
    }
}

@media (max-width: 1200px) {
    .card-excerpt {
        font-size: 0.82rem;
        line-height: 1.4;
    }
}

@media (max-width: 1024px) {
    .card-excerpt {
        font-size: 0.8rem;
    }
}

.card-excerpt p {
    margin-bottom: 0;
}

/* 3. Le Bouton Flèche (Rond Violet) */
.card-btn-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;

    background-color: var(--color-primary);
    /* VIOLET */
    color: #ffffff;

    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Cercle parfait */

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.card-btn-arrow .dashicons {
    font-size: 20px;
    line-height: 20px;
}

.card-btn-arrow:hover {
    background-color: #ffffff;
    color: var(--color-primary);
    /* Inverse les couleurs au survol */
    transform: scale(1.1);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        /* Une seule colonne sur mobile */
        padding: 0;
    }
}

/* ---------------------------------------------------------
   D. RESPONSIVE (Mobile)
--------------------------------------------------------- */
@media (max-width: 900px) {

    /* Ajustement Titre et Flexbox */
    .contact-title {
        font-size: 3.5rem;
        max-width: 100%;
        /* Plus de limite de largeur sur mobile */
        text-align: center;
    }

    .flex-container {
        flex-direction: column;
        align-items: center;
        /* Tout centré */
        gap: 40px;
    }

    .contact-left {
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .contact-right {
        justify-content: center;
    }

    /* Forme Jaune Mobile */
    .decoration-jaune {
        width: 250px;
        top: 0;
        right: -50px;
        opacity: 0.4;
        /* Transparence pour lisibilité */
    }

    /* Menu Vertical sur mobile si besoin, sinon laisser horizontal avec wrap */
    .footer-row-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .menu-horizontal-list {
        flex-wrap: wrap;
        /* Permet au menu de passer à la ligne sur petit écran */
        gap: 15px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .flex-container,
    .footer-row-top {
        flex-direction: column;
        text-align: center;
    }

    .contact-right {
        margin-top: 30px;
        justify-content: center;
    }

    .menu-horizontal-list {
        flex-direction: column !important;
        /* Menu vertical sur mobile */
        gap: 15px;
        margin: 20px 0;
    }

    .footer-nav-horizontal {
        margin: 0;
    }

    .decoration-jaune {
        width: 150px;
        top: 0;
        right: -30px;
        opacity: 0.5;
        /* La rend un peu transparente sur mobile pour lisibilité */
    }
}

/* ------------------------------------------------------------- */
/* 7. SECTION M�C�NAT - POURQUOI REJOINDRE L'AVENTURE           */
/* ------------------------------------------------------------- */

/* Section Intro Mécénat */
.mecenat-intro {
    padding: 90px 5vw;
    max-width: 1200px;
    margin: clamp(40px, 6vw, 80px) auto;
    text-align: left;
}

.mecenat-intro-title {
    font-family: 'Willond', cursive;
    color: #9168f3;
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.mecenat-intro-text {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
}

/* Section Contenu Mécénat */
.mecenat-content {
    padding: 90px 5vw;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    background-image: url('../img/bg_mecenat.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.mecenat-title {
    font-family: 'Willond', cursive;
    color: var(--color-secondary);
    font-size: 4.5rem;
    text-align: center;
    margin: 0 auto 50px auto;
    max-width: 1200px;
    line-height: 1.2;
}

.mecenat-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mecenat-card {
    background-color: var(--color-primary);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mecenat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mecenat-card__title {
    font-family: 'Willond', cursive;
    color: var(--color-secondary);
    font-size: 2rem;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-align: center;
}

.mecenat-card__text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .mecenat-intro {
        padding: 75px 4vw;
    }

    .mecenat-content {
        padding: 70px 4vw;
    }

    .mecenat-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }

    .mecenat-cards-grid {
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .mecenat-intro {
        padding: 60px 3vw;
    }

    .mecenat-content {
        padding: 60px 3vw;
    }

    .mecenat-title {
        font-size: 2.5rem;
        margin-bottom: 35px;
    }

    .mecenat-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }

    .mecenat-card {
        padding: 35px 25px;
    }

    .mecenat-card__title {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .mecenat-card__text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .mecenat-intro {
        padding: 45px 5vw;
        text-align: center;
    }

    .mecenat-content {
        padding: 50px 5vw;
    }

    .mecenat-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .mecenat-cards-grid {
        gap: 20px;
    }

    .mecenat-card {
        padding: 30px 20px;
    }

    .mecenat-card__title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .mecenat-card__text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mecenat-content {
        padding: 40px 3vw;
    }

    .mecenat-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .mecenat-cards-grid {
        gap: 15px;
    }

    .mecenat-card {
        padding: 25px 15px;
    }

    .mecenat-card__title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .mecenat-card__text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ------------------------------------------------------------- */
/* 8. SECTION MÉCÉNAT - COMMENT NOUS SOUTENIR                    */
/* ------------------------------------------------------------- */

.mecenat-soutien-section {
    max-width: 1200px;
    width: min(1200px, calc(100% - 10vw));
    margin: clamp(32px, 6vw, 80px) auto;
    box-sizing: border-box;
    background-color: var(--color-primary);
    position: relative;
    z-index: 1;
    padding-top: clamp(20px, 3vw, 32px);
    border-radius: 20px;
}

.mecenat-soutien-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px) clamp(32px, 6vw, 60px);
}

.mecenat-soutien-title {
    font-family: 'Willond', cursive;
    color: var(--color-secondary);
    font-size: clamp(2rem, 5vw, 4rem);
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.mecenat-soutien-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.mecenat-soutien-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.mecenat-soutien-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mecenat-soutien-card-icon {
    width: 80px;
    height: 80px;
    background-color: #9168f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.mecenat-soutien-card-icon svg {
    width: 40px;
    height: 40px;
}

.mecenat-soutien-card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.mecenat-soutien-card-title {
    font-family: 'Willond', cursive;
    color: #9168f3;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0;
    line-height: 1.2;
}

.mecenat-soutien-card-text {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.mecenat-soutien-btn {
    display: inline-block;
    background-color: #9168f3;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.mecenat-soutien-btn:hover {
    background-color: #7a52d9;
}

.mecenat-soutien-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mecenat-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #9168f3;
    border-radius: 20px;
    color: #9168f3;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mecenat-tag:hover {
    background-color: #9168f3;
    color: #ffffff;
}

/* Section Partager notre mission */
.mecenat-partager-section {
    max-width: 1200px;
    width: min(1200px, calc(100% - 10vw));
    margin: clamp(12px, 2.5vw, 20px) auto 0;
    box-sizing: border-box;
    background-color: var(--color-secondary);
    position: relative;
    z-index: 1;
    padding: clamp(20px, 4vw, 40px) clamp(16px, 4vw, 40px);
    border-radius: 20px;
    text-align: center;
}

.mecenat-partager-title {
    font-family: 'Willond', cursive;
    color: #9168f3;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.mecenat-partager-text {
    color: #9168f3;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .mecenat-soutien-cards-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mecenat-soutien-card {
        padding: 30px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .mecenat-soutien-card-icon {
        width: 60px;
        height: 60px;
    }

    .mecenat-soutien-card-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .mecenat-soutien-card {
        padding: 25px 20px;
        gap: 15px;
    }

    .mecenat-soutien-card-content {
        gap: 12px;
    }

    .mecenat-soutien-card-text {
        font-size: 0.95rem;
    }

    .mecenat-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* ------------------------------------------------------------- */
/* 9. SECTION MECENAT - CONFIANCE & TRANSPARENCE               */
/* ------------------------------------------------------------- */

.mecenat-confiance-section {
    padding: clamp(40px, 6vw, 70px) clamp(16px, 4vw, 40px);
    max-width: 1200px;
    width: min(1200px, calc(100% - 10vw));
    margin: clamp(32px, 6vw, 80px) auto 0;
    text-align: center;
}

.mecenat-confiance-title {
    font-family: 'Willond', cursive;
    color: var(--color-primary);
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 0 0 clamp(20px, 4vw, 40px) 0;
    line-height: 1.2;
}

.mecenat-confiance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 28px);
    max-width: 100%;
    margin: 0 auto;
}

.mecenat-confiance-pill {
    background-color: #9168f3;
    color: var(--color-secondary);
    font-family: 'Willond', cursive;
    font-size: clamp(1.1rem, 2.4vw, 1.75rem);
    padding: clamp(14px, 2.5vw, 22px) clamp(18px, 3vw, 30px);
    border-radius: 14px;
    text-align: center;
}

@media (max-width: 1024px) {
    .mecenat-confiance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .mecenat-confiance-grid {
        grid-template-columns: 1fr;
    }
}


/* ------------------------------------------------------------- */
/* 9. SECTION Médias - VOS AVANTAGES                           */
/* ------------------------------------------------------------- */

.mbottom-banniere {
    margin-bottom: 40px;
}

.m-banniere {
    margin: 40px 0;
}

.twitch-embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 16px;
}

.twitch-embed-container iframe {
    width: min(100%, 720px);
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}

/* ------------------------------------------------------------- */
/* 10. FORMULAIRE DE CONTACT                                    */
/* ------------------------------------------------------------- */

.contact-form-section {
    padding: 60px 16px;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;

    padding: 10px 20px 30px;
    border-radius: 6px;
}

.contact-form-title {
    font-family: 'Willond', cursive;
    color: var(--color-primary);
    font-size: 2.2rem;
    margin: 0 0 10px 0;
}

.contact-form-subtitle {
    margin: 0 0 10px 0;
    color: #2d2d2d;
    font-size: 0.95rem;
}

.contact-form-legend {
    margin: 0 0 25px 0;
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

.contact-form-legend .required {
    color: var(--color-primary);
}

.contact-form-notice {
    margin: 0 0 20px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-notice--success {
    color: #145531;
    background-color: #e7f8ee;
    border: 1px solid #78c59c;
}

.contact-form-notice--error {
    color: #7d1d1d;
    background-color: #fdeceb;
    border: 1px solid #e69a9a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
}

.contact-form-field--phone {
    grid-column: 1 / -1;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-field label {
    font-family: 'Willond', cursive;
    font-weight: 400;
    color: #2d2d2d;
    font-size: 1.1rem;
}

.contact-form-field label .required {
    color: var(--color-primary);
}

.contact-form-field input,
.contact-form-field textarea {
    background-color: #ffffff;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.contact-form-field textarea {
    min-height: 160px;
    resize: vertical;
    font-family: 'Montserrat', sans-serif;
}

.contact-form-field--full {
    width: 100%;
}

.contact-form-submit {
    align-self: flex-start;
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 12px;
    }

    .contact-form-title {
        font-size: 1.7rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-submit {
        width: fit-content;
    }
}

/* ============================================================= */
/* UPDATED PROJECT CARD STYLES (Mockup Design) */
/* ============================================================= */

.project-card {
    display: flex;
    flex-direction: column;
    background-color: transparent !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

@media (max-width: 1400px) {
    .project-card {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 1200px) {
    .project-card {
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.09);
        border-radius: 10px !important;
    }
}

@media (max-width: 1024px) {
    .project-card {
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1200px) {
    .project-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    }
}

@media (max-width: 1024px) {
    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    }
}

/* 1. Image Section */
.card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    /* Pour positionner le badge de statut */
    flex-shrink: 0;
}

@media (max-width: 1400px) {
    .card-image {
        height: 200px;
    }
}

@media (max-width: 1200px) {
    .card-image {
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .card-image {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .card-image {
        height: 200px;
    }
}

.card-image__link {
    display: block;
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.card-image__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

/* Green Banner Between Image and Content */
.card-green-banner {
    width: 100%;
    height: 8px;
    background-color: var(--color-secondary, #BDFF5F);
}

/* 2. Content Section (Dark Blue) */
.card-content {
    background: #1E2A3A !important;
    color: #ffffff;
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative !important;
    min-height: 240px;
}

@media (max-width: 1400px) {
    .card-content {
        padding: 20px;
        min-height: 230px;
    }
}

@media (max-width: 1200px) {
    .card-content {
        padding: 18px;
        min-height: 220px;
    }
}

@media (max-width: 1024px) {
    .card-content {
        padding: 18px;
        min-height: 210px;
    }
}

@media (max-width: 768px) {
    .card-content {
        padding: 20px;
        min-height: auto;
    }
}

/* Body - Title & Description */
.card-body {
    flex-grow: 1;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

@media (max-width: 1400px) {
    .card-body {
        margin-bottom: 15px;
    }
}

@media (max-width: 1200px) {
    .card-body {
        margin-bottom: 14px;
    }
}

@media (max-width: 1024px) {
    .card-body {
        margin-bottom: 14px;
    }
}

/* Title Styles */
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin: 0 0 10px 0 !important;
    line-height: 1.25;
    letter-spacing: -0.2px;
    /* Limite à 2 lignes max */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.5em;
}

@media (max-width: 1400px) {
    .card-title {
        font-size: 1.2rem;
        margin: 0 0 9px 0 !important;
        min-height: 2.4em;
    }
}

@media (max-width: 1200px) {
    .card-title {
        font-size: 1.1rem;
        margin: 0 0 8px 0 !important;
        min-height: 2.2em;
    }
}

@media (max-width: 1024px) {
    .card-title {
        font-size: 1.05rem;
        margin: 0 0 8px 0 !important;
        min-height: 2.1em;
    }
}

@media (max-width: 768px) {
    .card-title {
        font-size: 1.1rem;
        min-height: auto;
    }
}

.card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.card-title a:hover {
    opacity: 0.8;
}

/* Description Paragraph */
.card-description {
    font-size: 0.88rem;
    color: #cfd8e3;
    line-height: 1.5;
    font-weight: 400;
    margin: 0 !important;
    /* Limite à 3 lignes max */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

@media (max-width: 1400px) {
    .card-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 1200px) {
    .card-description {
        font-size: 0.82rem;
        line-height: 1.45;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 1024px) {
    .card-description {
        font-size: 0.8rem;
        line-height: 1.4;
        -webkit-line-clamp: 3;
    }
}

/* Footer - Badge & Arrow Button */
.card-footer {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: static !important;
}

@media (max-width: 1400px) {
    .card-footer {
        gap: 10px;
    }
}

@media (max-width: 1200px) {
    .card-footer {
        gap: 9px;
    }
}

@media (max-width: 1024px) {
    .card-footer {
        gap: 8px;
    }
}

/* Category Badge */
.card-badge {
    position: absolute;
    top: 12px;
    right: 20px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 0;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

@media (max-width: 1400px) {
    .card-badge {
        font-size: 9px;
        padding: 4px 10px;
        top: 10px;
        right: 18px;
    }
}

@media (max-width: 1200px) {
    .card-badge {
        font-size: 9px;
        padding: 4px 10px;
        top: 10px;
        right: 16px;
    }
}

@media (max-width: 1024px) {
    .card-badge {
        font-size: 8px;
        padding: 4px 8px;
        top: 10px;
        right: 16px;
    }
}

.card-badge:hover {
    opacity: 0.85;
}

/* Arrow Button - Green Circle */
.card-arrow-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--color-secondary, #BDFF5F) !important;
    color: #2C3E50;
    border-radius: 50%;
    text-decoration: none;
    flex-shrink: 0;
    position: static !important;
    bottom: auto !important;
    right: auto !important;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin: 0;
    padding: 0;
}

/* ============================================================= */
/* EVENT CARD STYLES (Mockup Design) */
/* ============================================================= */

.event-card {
    display: flex !important;
    flex-direction: row !important;
    background: #1E2A3A !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease;
    height: 280px !important;
    width: 100%;
    max-width: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
}

/* Image Section (Left) */
.event-card__image {
    flex: 0 0 40% !important;
    position: relative;
    overflow: hidden;
    width: 40%;
    height: 100%;
}

.event-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    display: block !important;
    max-width: none !important;
}

.event-card:hover .event-card__image img {
    transform: scale(1.05);
}

.event-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: #2D3E50;
}

/* Content Section (Right) */
.event-card__content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1E2A3A;
    position: relative;
}

/* Category Badge */
.event-card__category {
    position: absolute;
    top: 12px;
    right: 20px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 0;
    text-transform: uppercase;
    z-index: 10;
}

/* Date and Location Container */
.event-card__date-location {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
}

/* Day Number (Big) */
.event-card__day {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 0.9;
    min-width: 80px;
}

/* Meta Info (Month + Location) */
.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
}

.event-card__month {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.event-card__location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #A0A8B0;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.event-card__location .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #A0A8B0;
}

/* Title Section with Divider */
.event-card__title-section {
    border-top: 2px solid var(--color-secondary);
    padding-top: 12px;
    margin: 12px 0;
}

.event-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Button */
.event-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-secondary);
    color: #1E2A3A;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.event-card__btn:hover {

    transform: translateY(-2px);
}

.event-card__btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Responsive Tablet */
@media (max-width: 1024px) {
    .event-card {
        height: 250px !important;
    }

    .event-card__day {
        font-size: 70px;
        min-width: 75px;
    }

    .event-card__month {
        font-size: 18px;
    }

    .event-card__title {
        font-size: 18px;
    }

    .event-card__content {
        padding: 20px;
    }

    .event-card__date-location {
        gap: 12px;
        margin-top: 18px;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column !important;
        height: auto !important;
    }

    .event-card__image {
        flex: 0 0 200px !important;
        width: 100% !important;
    }

    .event-card__content {
        padding: 24px;
    }

    .event-card__category {
        left: 20px;
    }

    .event-card__date-location {
        gap: 12px;
        margin-top: 25px;
    }

    .event-card__day {
        font-size: 72px;
        min-width: auto;
    }

    .event-card__month {
        font-size: 18px;
    }

    .event-card__title {
        font-size: 18px;
    }

    .event-card__btn {
        padding: 14px 20px;
        font-size: 12px;
    }
}

@media (max-width: 1400px) {
    .card-arrow-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 1200px) {
    .card-arrow-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1024px) {
    .card-arrow-btn {
        width: 38px;
        height: 38px;
    }
}

.card-arrow-btn .dashicons {
    font-size: 24px !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
}

@media (max-width: 1400px) {
    .card-arrow-btn .dashicons {
        font-size: 22px !important;
        width: 22px !important;
        height: 22px !important;
        line-height: 22px !important;
    }
}

@media (max-width: 1200px) {
    .card-arrow-btn .dashicons {
        font-size: 20px !important;
        width: 20px !important;
        height: 20px !important;
        line-height: 20px !important;
    }
}

.card-arrow-btn:hover {
    transform: scale(1.1);
    background-color: #ffffff !important;
    color: var(--color-primary) !important;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

/* ============================================================= */
/* PODCAST CARD STYLES */
/* ============================================================= */

/* Grille des podcasts */
.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin: 50px 0 60px 0;
}

@media (max-width: 1200px) {
    .podcasts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .podcasts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Carte podcast */
.podcast-card {
    display: flex;
    flex-direction: column;
    background: #1E2A3A;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Image Section */
.podcast-card__image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #2D3E50;
}

.podcast-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.podcast-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.podcast-card:hover .podcast-card__image img {
    transform: scale(1.05);
}

.podcast-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #7c4ddb 100%);
}

.podcast-card__image-placeholder .dashicons {
    font-size: 80px;
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.5);
}

/* Badge de durée */
.podcast-duration-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.podcast-duration-badge .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Content Section */
.podcast-card__content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Category Badge */
.podcast-card__category {
    position: absolute;
    top: 12px;
    right: 20px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 0;
    text-transform: uppercase;
    z-index: 10;
}

/* Header (Episode + Date) */
.podcast-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 35px;
}

.podcast-card__episode {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
}

.podcast-card__date {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #A0A8B0;
    text-transform: uppercase;
}

/* Title */
.podcast-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.podcast-card__title a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.podcast-card__title a:hover {
    color: var(--color-secondary);
}

/* Excerpt */
.podcast-card__excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #C0C5CC;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Links Section */
.podcast-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.podcast-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.podcast-link .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.podcast-link--audio {
    background: var(--color-secondary);
    color: #1E2A3A;
}

.podcast-link--audio:hover {
    background: #a8ff3d;
    transform: translateY(-2px);
}

.podcast-link--youtube {
    background: #FF0000;
    color: #FFFFFF;
}

.podcast-link--youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.podcast-link--spotify {
    background: #1DB954;
    color: #FFFFFF;
}

.podcast-link--spotify:hover {
    background: #1aa34a;
    transform: translateY(-2px);
}

/* Media Queries pour les podcasts */
@media (max-width: 1024px) {
    .podcast-card__content {
        padding: 20px;
    }

    .podcast-card__title {
        font-size: 16px;
    }

    .podcast-card__excerpt {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .podcasts-section {
        padding: 0;
    }

    .podcasts-section>.container {
        padding: 0 20px;
    }

    .podcast-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .podcast-card__links {
        flex-direction: column;
    }

    .podcast-link {
        width: 100%;
        justify-content: center;
    }
}

/* Section Podcasts & Twitch */
.podcasts-section,
.twitch-section {
    margin-bottom: 80px;
}

@media (max-width: 768px) {

    .podcasts-section,
    .twitch-section {
        margin-bottom: 50px;
    }
}

/* ============================================================= */
/* SINGLE PODCAST STYLES */
/* ============================================================= */

/* Hero Image */
.podcast-hero {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 60vh;
}

.podcast-hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .podcast-hero img {
        height: 40vh;
    }
}

/* Header violette */
.podcast-header-purple {
    background-color: var(--color-primary, #9168f3);
    color: white;
    padding: 60px 20px 40px;
    position: relative;
}

@media (max-width: 768px) {
    .podcast-header-purple {
        padding: 40px 20px 30px;
    }
}

.podcast-header-purple .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Category Badge */
.podcast-single-category-badge {
    display: inline-block;
    background: var(--color-secondary, #BDFF5F);
    color: #1E2A3A;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Title */
.podcast-single-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .podcast-single-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .podcast-single-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

/* Metadata */
.podcast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .podcast-meta {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.podcast-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
}

.podcast-meta .meta-item .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--color-secondary, #BDFF5F);
}

/* Content Wrapper */
.podcast-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

@media (max-width: 768px) {
    .podcast-content-wrapper {
        padding: 40px 20px;
    }
}

/* Section Title */
.podcast-content-wrapper .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary, #9168f3);
    margin-bottom: 30px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .podcast-content-wrapper .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* Audio Section */
.podcast-audio-section {
    margin-bottom: 60px;
}

.podcast-audio-player {
    background: #F5F5F5;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .podcast-audio-player {
        padding: 20px;
    }
}

.podcast-audio-player audio {
    width: 100%;
    max-width: 800px;
    height: 54px;
    outline: none;
}

/* External Links Section */
.podcast-links-section {
    margin-bottom: 60px;
}

.podcast-external-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .podcast-external-links {
        flex-direction: column;
    }
}

.podcast-platform-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    flex: 1;
    justify-content: center;
    min-width: 250px;
    text-align: center;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .podcast-platform-link {
        width: 100%;
        min-width: auto;
    }
}

.podcast-platform-link .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.youtube-link {
    background: #FF0000;
    color: #FFFFFF;
}

.youtube-link:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.spotify-link {
    background: #1DB954;
    color: #FFFFFF;
}

.spotify-link:hover {
    background: #1aa34a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.3);
}

/* Description Section */
.podcast-description-section {
    margin-bottom: 60px;
}

.podcast-description-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2C3E50;
}

.podcast-description-content p {
    margin-bottom: 20px;
}

.podcast-description-content ul,
.podcast-description-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.podcast-description-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .podcast-description-content {
        font-size: 15px;
    }
}

/* Navigation Section */
.podcast-navigation {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #E0E0E0;
}

@media (max-width: 768px) {
    .podcast-navigation {
        margin-top: 60px;
        padding-top: 40px;
    }
}

.podcast-nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .podcast-nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.podcast-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #F5F5F5;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.podcast-nav-link:hover {
    background: #FFFFFF;
    border-color: var(--color-primary, #9168f3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.podcast-nav-link .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--color-primary, #9168f3);
    flex-shrink: 0;
}

.nav-link-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.3;
}

.next-podcast {
    justify-content: flex-end;
    text-align: right;
}

@media (max-width: 768px) {
    .podcast-nav-link {
        padding: 20px;
        gap: 12px;
        align-items: flex-start;
    }

    .nav-title {
        font-size: 14px;
        word-break: break-word;
    }

    .next-podcast {
        justify-content: flex-start;
        text-align: left;
    }

    .podcast-nav-link .dashicons {
        font-size: 26px;
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .podcast-header-purple {
        padding: 28px 0 24px;
    }

    .podcast-single-category-badge {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 6px 12px;
        margin-bottom: 14px;
    }

    .podcast-single-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .podcast-meta {
        gap: 10px;
    }

    .podcast-meta .meta-item {
        width: 100%;
        font-size: 13px;
    }

    .podcast-content-wrapper {
        padding: 28px 0;
    }

    .podcast-content-wrapper .section-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .podcast-audio-section,
    .podcast-links-section,
    .podcast-description-section {
        margin-bottom: 40px;
    }

    .podcast-audio-player {
        padding: 14px;
        border-radius: 10px;
    }

    .podcast-audio-player audio {
        height: 48px;
    }

    .podcast-platform-link {
        padding: 14px 16px;
        font-size: 13px;
        gap: 10px;
    }

    .podcast-platform-link .dashicons {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }

    .podcast-description-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .podcast-description-content ul,
    .podcast-description-content ol {
        padding-left: 20px;
    }

    .podcast-navigation {
        margin-top: 40px;
        padding-top: 24px;
    }

    .podcast-nav-links {
        gap: 14px;
    }

    .podcast-nav-link {
        padding: 16px;
    }

    .podcast-nav-link .dashicons {
        font-size: 22px;
        width: 22px;
        height: 22px;
    }

    .nav-label {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .nav-title {
        font-size: 13px;
    }
}

/* Mobile polish - single podcast */
@media (max-width: 768px) {
    .podcast-single-custom .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .podcast-content-wrapper {
        padding-top: 30px;
        padding-bottom: 36px;
    }

    .podcast-audio-section,
    .podcast-links-section,
    .podcast-description-section {
        background: #ffffff;
        border-radius: 16px;
        padding: 18px;
        box-shadow: 0 10px 24px rgba(25, 30, 45, 0.06);
    }

    .podcast-audio-player {
        border-radius: 12px;
    }

    .podcast-platform-link {
        border-radius: 12px;
    }

    .podcast-navigation {
        margin-top: 34px;
        padding-top: 20px;
    }

    .podcast-nav-link {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .podcast-single-custom .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .podcast-content-wrapper {
        padding-top: 24px;
        padding-bottom: 30px;
    }

    .podcast-audio-section,
    .podcast-links-section,
    .podcast-description-section {
        border-radius: 14px;
        padding: 14px;
    }

    .podcast-audio-player {
        padding: 12px;
    }

    .podcast-navigation {
        margin-top: 28px;
        padding-top: 18px;
    }
}

/* ============================================================= */
/* HOME PAGE - LATEST PROJECTS SECTION */
/* ============================================================= */

.home-latest-events {
    margin-bottom: 40px;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .home-latest-events {
        padding: 0;
    }
}

.home-latest-events .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 1024px) {
    .home-latest-events .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .home-latest-events .container {
        padding: 0 16px;
    }
}



.home-latest-events .section-title-wrapper {
    background-color: var(--color-secondary, #BDFF5F);
}

.home-latest-events .section-title {
    font-family: 'Willond', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-primary, #9168F3);
    text-align: left;
    margin: 0 0 50px 0;
    text-transform: none;
    padding: 12px 0;
}

@media (max-width: 768px) {
    .home-latest-events .section-title {
        margin-bottom: 30px;
    }
}

.home-latest-projects {
    background-color: #ffffff;
}

.home-latest-projects .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 1024px) {
    .home-latest-projects .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .home-latest-projects .container {
        padding: 0 16px;
    }
}



.home-latest-projects .section-title-wrapper {
    background-color: var(--color-secondary, #BDFF5F);
}

.home-latest-projects .section-title {
    font-family: 'Willond', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-primary, #9168F3);
    text-align: left;
    margin: 0 0 50px 0;
    text-transform: none;
    padding: 12px 0;
}

@media (max-width: 768px) {
    .home-latest-projects .section-title {
        margin-bottom: 30px;
    }
}

/* Grid 3 colonnes pour la page d'accueil */
.projects-grid--home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto 50px auto;
    width: 100%;
}

@media (max-width: 1300px) {
    .projects-grid--home {
        gap: 35px;
    }
}

@media (max-width: 1100px) {
    .projects-grid--home {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .projects-grid--home {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .projects-grid--home {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        margin-bottom: 35px;
    }
}

/* Centrer le bouton "Voir plus" */
.home-projects-cta {
    display: flex;
    justify-content: center;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary, #9168F3);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #7a52d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 104, 243, 0.3);
}


/* ========================================
   Bandeau Filtres Projets
======================================== */
.projects-filters {

    padding: 30px 0;


}

.filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
}

.filter-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--color-primary, #9168F3);
    border: 2px solid var(--color-primary, #9168F3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-primary, #9168F3);
    color: var(--color-secondary, #BDFF5F);
    border-color: var(--color-primary, #9168F3);
}

@media (max-width: 768px) {
    .projects-intro {
        padding: 50px 0;
    }

    .filters-list {
        gap: 10px;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

/* ========================================
   Alignement containers page Nos Projets
======================================== */


/* ========================================
   Grille de projets - Page Nos Projets
======================================== */
.page-template-nos-projets .projects-grid {
    padding: 60px 0;
}

@media (max-width: 768px) {

    .page-template-nos-projets .projects-grid {
        padding: 40px 0;
    }
}


/*Project Single Page Styles */


/* --- Hero Image (Celle qui était pixelisée) --- */
.project-hero {
    position: relative;
    /* Pour positionner le badge de statut */
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.project-hero img {
    width: 100%;
    height: 60vh;
    /* Ajuste la hauteur selon tes besoins */
    object-fit: cover;
    /* Garde les proportions sans déformer */
    display: block;
}

/* --- Bandeau Titre Violet --- */
.project-header-purple {
    background-color: var(--color-primary, #9168f3);
    /* Violet de la maquette */
    color: #ffffff;
    padding: 40px 0;
    margin-bottom: 50px;
}

.project-title {
    font-family: 'Fredoka One', cursive;
    /* Ou une police arrondie similaire */
    font-size: 3.5rem;
    margin: 0 0 15px 0;
}

.project-meta {
    display: flex;
    gap: 20px;
}

.meta-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Titres de Sections --- */
.section-title {
    color: var(--color-primary, #9168f3);
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    margin: 40px 0 20px 0;
}

/* --- Bloc Conclusion --- */
.project-conclusion-card {
    margin: 60px 0;
}

.conclusion-inner {
    background-color: var(--color-primary, #9168f3);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.conclusion-inner h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* --- CTA Contact --- */
.project-contact-footer {
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    color: var(--color-primary, #9168f3);
    line-height: 1.1;
}

.cta-title .highlight {
    color: var(--color-primary, #9168f3);
    /* Tu peux changer si besoin */
}

.btn-contact {
    display: inline-block;
    background-color: var(--color-primary, #9168f3);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 25px;
    transition: transform 0.3s ease;
}

.btn-contact:hover {
    transform: scale(1.05);
}

/* --- Navigation --- */
.project-nav-bottom {
    border-top: 1px solid #eee;
    padding: 30px 0;
    margin-top: 40px;
}



.page-hero-projet {

    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero-projet__title {
    margin: 0;
    margin-left: 10vw;
    text-align: left;
    font-family: 'Willond', cursive;
    color: var(--color-secondary);
    font-size: 6rem;
    z-index: 10;
    position: relative;
}

/* =========================================
   VIGNETTES DE STATUT DES PROJETS
========================================= */

/* Badge de statut sur les cartes projet */
.project-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white !important;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--color-secondary) !important;
    color: #1E2A3A !important;
    font-size: 60% !important;
}

/* Responsive pour le badge de statut */
@media (max-width: 1600px) {
    .project-status-badge {
        padding: 7px 15px;
        font-size: 0.82rem;
        top: 14px;
        right: 14px;
    }
}

@media (max-width: 1400px) {
    .project-status-badge {
        padding: 7px 14px;
        font-size: 0.8rem;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 1200px) {
    .project-status-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 1024px) {
    .project-status-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
        top: 10px;
        right: 10px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 768px) {
    .project-status-badge {
        padding: 4px 8px;
        font-size: 0.65rem;
        top: 8px;
        right: 8px;
        letter-spacing: 0.2px;
    }
}


/* Badge dans la page single projet (sur l'image hero) */
.project-hero .project-status-badge {
    top: 30px;
    right: 30px;
    padding: 12px 24px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .project-hero .project-status-badge {
        top: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* =========================================
   ÉVÉNEMENTS - GRILLES ET CARTES
========================================= */

/* Grille des événements (2 colonnes) */
.events-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px;
    margin-bottom: 60px;
    max-width: 95% !important;
    margin-left: auto;
    margin-right: auto;
}

.event-card-wrapper {
    width: 100%;
    height: 100%;
}

@media (max-width: 1300px) {
    .events-grid {
        gap: 25px !important;
    }
}

@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
        max-width: 90% !important;
    }
}

@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ============================================================= */
/* ANCIENS STYLES EVENT-CARD - DÉSACTIVÉS */
/* Les nouveaux styles sont définis plus haut dans le fichier */
/* ============================================================= */

/* Meta informations dans la carte */
.event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0;
    font-size: 0.85rem;
    color: #666;
    min-height: 2.8em;
}

@media (max-width: 1400px) {
    .event-meta {
        font-size: 0.82rem;
        gap: 6px;
        margin: 7px 0;
        min-height: 2.6em;
    }
}

@media (max-width: 1200px) {
    .event-meta {
        font-size: 0.8rem;
        gap: 5px;
        min-height: 2.5em;
    }
}

@media (max-width: 1024px) {
    .event-meta {
        font-size: 0.78rem;
        min-height: 2.4em;
    }
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta-item .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: var(--color-primary, #9168f3);
}

@media (max-width: 1400px) {
    .event-meta-item .dashicons {
        font-size: 17px;
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 1200px) {
    .event-meta-item .dashicons {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }

    .event-meta-item {
        gap: 5px;
    }
}

/* Filtres d'événements */
.events-filters {
    padding: 30px 0;
}

.events-filters .filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
}

/* Badges de statut pour événements */
.event-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white !important;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--color-secondary) !important;
    color: #1E2A3A !important;
    font-size: 60% !important;
}

/* Responsive pour le badge de statut */
@media (max-width: 1600px) {
    .event-status-badge {
        padding: 7px 15px;
        font-size: 0.82rem;
        top: 14px;
        right: 14px;
    }
}

@media (max-width: 1400px) {
    .event-status-badge {
        padding: 7px 14px;
        font-size: 0.8rem;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 1200px) {
    .event-status-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 1024px) {
    .event-status-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
        top: 10px;
        right: 10px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 768px) {
    .event-status-badge {
        padding: 4px 8px;
        font-size: 0.65rem;
        top: 8px;
        right: 8px;
        letter-spacing: 0.2px;
    }
}


/* =========================================
   SINGLE ÉVÉNEMENT
========================================= */

/* Hero de l'événement */
.event-hero {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.event-hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

.event-hero .event-status-badge {
    top: 30px;
    right: 30px;
    padding: 12px 24px;
    font-size: 1rem;
}

/* Header violet de l'événement */
.event-header-purple {
    background-color: var(--color-primary, #9168f3);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.page-hero-event__title {
    margin: 0 0 30px 0;
    font-family: 'Willond', cursive;
    color: white;
    font-size: 4rem;
    z-index: 10;
    position: relative;
}

.event-meta-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.event-meta-header .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: white;
}

.event-meta-header .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Grille avec contenu principal et sidebar */
.event-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

@media (max-width: 1024px) {
    .event-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.event-section {
    margin-bottom: 40px;
}

/* Sidebar avec informations pratiques */
.event-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

@media (max-width: 1024px) {
    .event-sidebar {
        position: relative;
        top: 0;
    }
}

.event-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary, #9168f3);
}

.event-info-card h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--color-primary, #9168f3);
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item .dashicons {
    flex-shrink: 0;
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: var(--color-primary, #9168f3);
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.info-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.event-address {
    font-size: 0.9rem;
    margin-top: 5px !important;
    font-style: italic;
}

/* CTA d'inscription */
.event-cta-card {
    margin-top: 30px;
}

.btn-event-register {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background-color: var(--color-secondary, #8BC34A);
    color: white;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-event-register:hover {
    background-color: var(--color-secondary-hover, #7CB342);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
}

/* Section contact footer */
.event-contact-footer {
    text-align: center;
    padding: 80px 0;
    margin-top: 60px;
}

.event-contact-footer .cta-title {
    font-size: 3rem;
    color: var(--color-primary, #9168f3);
    line-height: 1.2;
    margin-bottom: 30px;
}

.event-contact-footer .highlight {
    color: var(--color-secondary, #8BC34A);
}

/* Navigation entre événements */
.event-nav-bottom {
    background-color: #f8f9fa;
    padding: 30px 0;
    margin-top: 60px;
}

.event-nav-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--color-primary, #9168f3);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link-center {
    color: var(--color-primary, #9168f3);
    text-decoration: underline;
    font-weight: 500;
}

.nav-link-disabled {
    width: 150px;
    /* Pour équilibrer l'espace */
}

@media (max-width: 768px) {
    .page-hero-event__title {
        font-size: 2.5rem;
    }

    .event-meta-header {
        flex-direction: column;
        gap: 15px;
    }

    .event-hero .event-status-badge {
        top: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .event-contact-footer .cta-title {
        font-size: 2rem;
    }

    .event-nav-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-link-disabled {
        display: none;
    }
}

/* =========================================
   MENTIONS LÉGALES
========================================= */

.mentions-legales-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5vw;
    line-height: 1.8;
}

.mentions-section {
    margin-bottom: 50px;
}

.mentions-section h2 {
    color: var(--color-primary, #9168F3);
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
    border-bottom: 2px solid var(--color-secondary, #BDFF5F);
    padding-bottom: 10px;
}

.mentions-section h3 {
    color: var(--color-primary, #9168F3);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.mentions-section p {
    margin-bottom: 15px;
    color: #333;
}

.mentions-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style: disc;
}

.mentions-section ul li {
    margin-bottom: 10px;
    color: #333;
}

.mentions-section a {
    color: var(--color-primary, #9168F3);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.mentions-section a:hover {
    opacity: 0.7;
}

.mentions-section strong {
    color: #2d2d2d;
    font-weight: 600;
}

.mentions-update {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .mentions-legales-content {
        padding: 40px 5vw;
    }

    .mentions-section h2 {
        font-size: 1.5rem;
    }

    .mentions-section h3 {
        font-size: 1.2rem;
    }

    .mentions-section {
        margin-bottom: 40px;
    }
}

/* ===================================
   SINGLE EVENT PAGE - MOCKUP DESIGN
   =================================== */

.event-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header avec badge, titre et image */
.event-single-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.event-single-header__left {
    flex: 1;
    min-width: 0;
}

.event-single-header__image {
    flex: 0 0 45%;
    max-width: 500px;
}

.event-single-header__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Badge catégorie */
.event-single-category-badge {
    display: inline-block;
    background-color: var(--color-primary, #9168f3);
    color: white;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

/* Titre de l'événement */
.event-single-title {
    font-family: 'Willond', cursive;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-primary, #9168F3);
    margin: 0;
    font-weight: 400;
}

/* Contenu / Description */
.event-single-content {
    margin-bottom: 50px;
    color: #1E2A3A;
    line-height: 1.8;
    font-size: 15px;
}

.event-single-content p {
    margin-bottom: 1.2em;
}

/* Boîtes d'information en bas (location et horaire) */
.event-single-info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.event-info-box {
    background-color: var(--color-secondary, #BDFF5F);
    padding: 30px;
    border-radius: 4px;
    text-align: left;
}

.event-info-box__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1E2A3A;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.event-info-box__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary, #9168F3);
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .event-single-title {
        font-size: 2.8rem;
    }

    .event-single-header__image {
        flex: 0 0 40%;
    }
}

@media (max-width: 768px) {
    .event-single-header {
        flex-direction: column;
    }

    .event-single-header__image {
        flex: none;
        max-width: 100%;
        width: 100%;
        order: -1;
        margin-bottom: 30px;
    }

    .event-single-title {
        font-size: 2.2rem;
    }

    .event-single-info-boxes {
        grid-template-columns: 1fr;
    }

    .event-single-container {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .event-single-title {
        font-size: 1.8rem;
    }

    .event-info-box {
        padding: 20px;
    }

    .event-info-box__value {
        font-size: 1.2rem;
    }
}



/* ============================================================= */
/* PAGE PARTENAIRES                                               */
/* ============================================================= */

/* --- Section Nos Partenaires Engagés --- */
.partenaires-section {
    padding: 80px 0 60px;
    background-color: #fff;
}

.partenaires-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
}

.partenaires-section__title {
    font-family: 'Willond', cursive;
    color: var(--color-secondary);
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 400;
}

.partenaires-section__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    max-width: 600px;
    margin-bottom: 60px;
}

/* --- Bandeau de logos défilant --- */
.partenaires-logos-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

.partenaires-logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    will-change: transform;
}

.partenaires-logos-track:hover {
    animation-play-state: paused;
}

.partenaires-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 120px;
}

.partenaires-logo-item img {
    max-height: 70px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partenaires-logo-item img:hover {
    transform: scale(1.08);
}


/* --- Section catégories de partenaires --- */
.partenaires-categories {
    padding: 0;
}

.partenaires-categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.partenaires-cat-card {
    padding: 60px 50px;
    position: relative;
}

.partenaires-cat-card:nth-child(odd) {
    background-color: var(--color-primary);
    color: #fff;
}

.partenaires-cat-card:nth-child(even) {
    background-color: #fff;
    color: var(--color-primary);
    border-top: 4px solid var(--color-primary);
}

.partenaires-cat-card__title {
    font-family: 'Willond', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.partenaires-cat-card:nth-child(odd) .partenaires-cat-card__title {
    color: #fff;
}

.partenaires-cat-card:nth-child(even) .partenaires-cat-card__title {
    color: var(--color-primary);
}

.partenaires-cat-card__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 480px;
}

.partenaires-cat-card:nth-child(odd) .partenaires-cat-card__text {
    color: rgba(255, 255, 255, 0.9);
}

.partenaires-cat-card:nth-child(even) .partenaires-cat-card__text {
    color: #333;
}

/* --- RESPONSIVE PARTENAIRES --- */

@media (max-width: 1024px) {
    .partenaires-section {
        padding: 60px 0 40px;
    }

    .partenaires-section__title {
        font-size: 2.8rem;
    }

    .partenaires-section__description {
        margin-bottom: 40px;
    }

    .partenaires-cat-card {
        padding: 40px 36px;
    }

    .partenaires-cat-card__title {
        font-size: 2rem;
    }

    .partenaires-logos-track {
        gap: 40px;
    }

    .partenaires-logo-item {
        height: 65px;
        min-width: 100px;
    }

    .partenaires-logo-item img {
        max-height: 55px;
        max-width: 130px;
    }
}

@media (max-width: 768px) {
    .partenaires-section {
        padding: 48px 0 30px;
    }

    .partenaires-section__title {
        font-size: 2.2rem;
    }

    .partenaires-section__description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .partenaires-categories__grid {
        grid-template-columns: 1fr;
    }

    .partenaires-cat-card {
        padding: 36px 24px;
    }

    .partenaires-cat-card__title {
        font-size: 1.8rem;
    }

    .partenaires-logos-track {
        gap: 30px;
    }

    .partenaires-logo-item {
        height: 55px;
        min-width: 80px;
    }

    .partenaires-logo-item img {
        max-height: 45px;
        max-width: 110px;
    }
}

@media (max-width: 480px) {
    .partenaires-section__title {
        font-size: 1.8rem;
    }

    .partenaires-section__description {
        font-size: 0.9rem;
    }

    .partenaires-cat-card {
        padding: 30px 20px;
    }

    .partenaires-cat-card__title {
        font-size: 1.5rem;
    }

    .partenaires-cat-card__text {
        font-size: 0.85rem;
    }

    .partenaires-logos-track {
        gap: 24px;
    }

    .partenaires-logo-item {
        height: 45px;
        min-width: 70px;
    }

    .partenaires-logo-item img {
        max-height: 38px;
        max-width: 90px;
    }
}

@media (min-width:1820px) {
    .container {
        max-width: 1400px;
    }

}