/* ============================================================
   header.css — ong_cade
   Header blanc fixe, mega menu pleine largeur,
   footer fond noir
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   HEADER PRINCIPAL — fond blanc, fixe, bordure orange
   ══════════════════════════════════════════════════════════ */

.cade-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99997;
    background: #ffffff;
    border-bottom: 3px solid #F5A623;
    transition: box-shadow 200ms ease;
}

.cade-header.scrolled {
    box-shadow: 0 4px 20px rgba(27, 58, 107, .12);
}

body {
    padding-top: 110px;
}

/* ── Barre niveau 1 : logo | (vide) | actions ─────────────── */
.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Gauche : logo + bouton don ───────────────────────────── */
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* ── Bouton don desktop ───────────────────────────────────── */
.header-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 6px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid #ffb133;
    color: #1B3A6B;
    text-decoration: none;
    letter-spacing: .3px;
    transition: all 200ms ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-donate-btn i {
    font-size: 13px;
    color: #1B3A6B;
}
.header-donate-btn:hover i{
    color: #ffffff;
}

.header-donate-btn:hover {
    background: #f5a623;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245,166,35,.35);
}

.header-donate-btn i.bi-heart-fill{
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ── l'effet qui fait battre ─────── */
@keyframes heartbeat{
    0%, 100% {
        transform:scale(1);
    }
    50%{
        transform: scale(1.2);
    }
}

/* ── l'effet qui fait battre ─────── */
.header-donate-btn:hover i.bi-heart-fill{
    animation-duration: 0.8s;
}


/* ── Actions droite : langue + espace membre + burger ─────── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Masqué sur mobile */
.header-actions__desktop {
    display: inline-flex;
}

/* ── Sélecteur de langue — toggle pill ───────────────────── */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lang-pill {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    line-height: 1;
    padding: 5px 8px;
    border-radius: 4px;
    transition: all 180ms ease;
    text-transform: uppercase;
    text-decoration: none;
}

.lang-pill--active {
    background: #1b4f8f;
    color: #fff;
    cursor: default;
}

.lang-pill--inactive {
    color: #444444;
    background: transparent;
}

.lang-pill--inactive:hover {
    color: #1b4f8f;
    background: #eef3fa;
}

.lang-sep {
    color: #C4CDD8;
    font-size: 11px;
    font-weight: 400;
    user-select: none;
}

/* ── Espace membre ────────────────────────────────────────── */
.membre-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #444444;
    border: 1.5px solid #D0DCEA;
    background: transparent;
    cursor: pointer;
    transition: all 200ms ease;
    text-decoration: none;
    white-space: nowrap;
}

.membre-btn:hover {
    background: #1b4f8f;
    color: #ffffff;
    border-color: #1b4f8f;
}

/* ── Burger — caché sur desktop ───────────────────────────── */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: 1.5px solid #D0DCEA;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    transition: border-color 200ms ease;
    flex-shrink: 0;
}

.burger-btn:hover {
    border-color: #1b4f8f;
}

.burger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: #1B3A6B;
    border-radius: 2px;
    transition: transform 250ms ease, opacity 250ms ease;
}

.burger-btn.is-open .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.is-open .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger-btn.is-open .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Bloc mobile : langue + don + membre (dans nav ouverte) ── */
.nav-mobile-footer {
    display: none;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION — centrée, niveau 2
   ══════════════════════════════════════════════════════════ */

.header-nav {
    border-top: 1px solid rgba(27, 58, 107, .08);
}

.nav-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-item {
    position: static;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 22px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #1B3A6B;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color 200ms ease, border-color 200ms ease;
}

.nav-link:hover,
.nav-item.is-open > .nav-link,
.nav-item.is-active > .nav-link {
    color: #1B5EA7;
    border-bottom-color: #F5A623;
}

.nav-chevron {
    font-size: 10px;
    transition: transform 200ms ease;
    color: #444444;
}

.nav-item.is-open .nav-chevron {
    transform: rotate(180deg);
}

/* ══════════════════════════════════════════════════════════
   MEGA PANEL — pleine largeur, centré
   ══════════════════════════════════════════════════════════ */

.mega-panel {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff !important;
    border-top: 3px solid #F5A623;
    border-bottom: 1px solid rgba(27, 58, 107, .1);
    box-shadow: 0 8px 32px rgba(27, 58, 107, .12);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
}

.nav-item.is-open .mega-panel {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0);
}

.mega-inner {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 24px;
    gap: 0;
    min-height: 220px;
}

/* ── Colonne gauche : liens ───────────────────────────────── */
.mega-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 20px;
    border-right: 1px solid rgba(27, 58, 107, .08);
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #1B3A6B;
    text-decoration: none;
    transition: all 200ms ease;
    white-space: nowrap;          /* empêche le retour à la ligne */
}

/* Icône avec background */
.mega-link i {
    font-size: 15px;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: #F0F4F8;
    color: #3A7FCA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 200ms ease, color 200ms ease;
}

.mega-link:hover {
    background: #F0F4F8;
    color: #1B5EA7;
}

.mega-link:hover i {
    background: #1B5EA7;
    color: #ffffff;
}

.mega-link.is-active {
    background: #EBF4FF;
    color: #1B5EA7;
}

.mega-link.is-active i {
    background: #1B5EA7;
    color: #ffffff;
}

/* Lien CTA (Faire un don) */
.mega-link--cta {
    color: #F5A623;
    margin-top: 6px;
    border-top: 1px solid rgba(27, 58, 107, .08);
    padding-top: 13px;
}
.mega-link--cta i {
    color: #F5A623;
    background: #FFF4E0;
}
.mega-link--cta:hover {
    background: #FFF4E0;
    color: #B8730A;
}
.mega-link--cta:hover i {
    background: #F5A623;
    color: #ffffff;
}

/* ── Colonne centre : carte SVG ──────────────────────────── */
.mega-map {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.mega-map-container {
    width: 160px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-map-container svg {
    width: 100%;
    height: 100%;
}

.map-placeholder {
    width: 160px;
    height: 180px;
    background: #F0F4F8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8AB4D9;
}

.map-placeholder i {
    font-size: 56px;
}
/* Logo au centre du mega menu */
.mega-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid rgba(27, 58, 107, .08);
    padding: 16px;
}

.mega-logo-center img {
    width: 140px;
    height: auto;
    object-fit: contain;
}


/* ── Colonne droite : description ────────────────────────── */
.mega-desc {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    border-left: 1px solid rgba(27, 58, 107, .08);
}

.mega-desc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #F0F4F8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1B3A6B;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.mega-desc-text {
    font-size: 12.5px;
    color: #444444;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 0;
}

.mega-desc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    background: #1B3A6B;
    color: #ffffff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 200ms ease;
    align-self: flex-start;
}

.mega-desc-cta:hover {
    background: #1B5EA7;
    color: #ffffff;
    transform: translateX(3px);
}

.mega-desc-cta--orange {
    background: #F5A623;
    color: #1B3A6B;
}
.mega-desc-cta--orange:hover {
    background: #e8941a;
    color: #1B3A6B;
}
.mega-desc-cta--blue {
    background: #3A7FCA;
    color: #ffffff;
}
.mega-desc-cta--blue:hover {
    background: #1B5EA7;
    color: #f4f7fa;
}

.mega-desc-cta--teal {
    background: #1A6B5A;
    color: #ffffff;
}
.mega-desc-cta--teal:hover {
    background: #155a4a;
    color: #ffffff;
}

/* ── Overlay mobile ──────────────────────────────────────── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 99996;
    opacity: 0;
    transition: opacity 300ms ease;
}
.nav-overlay.is-visible {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS CARTE SVG PAR MENU
   ══════════════════════════════════════════════════════════ */

@keyframes pulse-country {
    0%, 100% { opacity: .4; }
    50%       { opacity: 1; }
}
.mega-map-container[data-active-menu="about"] .country-member {
    animation: pulse-country 2s ease-in-out infinite;
    fill: #3A7FCA;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%       { transform: scale(1.2); }
    28%       { transform: scale(1); }
    42%       { transform: scale(1.15); }
    56%       { transform: scale(1); }
}
.mega-map-container[data-active-menu="support"] .map-heart {
    animation: heartbeat 1.2s ease-in-out infinite;
    transform-origin: center;
    fill: #F5A623;
}

@keyframes dash-extend {
    0%   { stroke-dashoffset: 100; opacity: 0; }
    50%  { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: .7; }
}
.mega-map-container[data-active-menu="resources"] .connection-line {
    stroke-dasharray: 100;
    animation: dash-extend 1.5s ease-out infinite;
    stroke: #1A6B5A;
}

/* ══════════════════════════════════════════════════════════
   FOOTER — fond noir
   ══════════════════════════════════════════════════════════ */

.site-footer {
    background: #0A0A0A;
    color: rgba(255,255,255,.65);
}

/* Footer principal — 4 colonnes */
.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Colonne brand */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #F5A623;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #D0DCEA;
    margin-bottom: 20px;
}

/* Réseaux sociaux */
.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 200ms ease;
}

.social-link:hover {
    background: #1B5EA7;
    border-color: #1B5EA7;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-link-youtube {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 200ms ease;
}

.social-link-youtube:hover {
    background: #e70303;
    border-color: #e70303;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Titres colonnes */
.footer-col-title {
    font-size: 11px;
    font-weight: 800;
    color: #F5A623;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Liens */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-link {
    display: block;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    padding: 4px 0 4px 0;
    border-left: 2px solid transparent;
    transition: all 200ms ease;
}

.footer-link:hover {
    color: #F5A623;
    padding-left: 8px;
    border-left-color: #F5A623;
}

.footer-link--cta {
    color: #F5A623;
    font-weight: 700;
}
.footer-link--cta:hover {
    color: #ffffff;
}

/* Coordonnées */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-style: normal;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact-item i {
    font-size: 14px;
    color: #8AB4D9;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: #D0DCEA;
}

.footer-email,
.footer-phone {
    color: #D0DCEA;
    text-decoration: none;
    transition: color 200ms ease;
}
.footer-email:hover,
.footer-phone:hover {
    color: #F5A623;
}

/* Newsletter */
.footer-newsletter-title {
    font-size: 12px;
    font-weight: 800;
    color: #B8730A;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.footer-newsletter-desc {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    margin-bottom: 12px;
    line-height: 1.55;
}

.newsletter-input-group {
    display: flex;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    margin-bottom: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 9px 12px;
    background: rgba(255,255,255,.07);
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 12px;
    outline: none;
    transition: background 200ms ease;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,.3);
}

.newsletter-input:focus {
    background: rgba(255,255,255,.1);
}

.newsletter-btn {
    padding: 9px 14px;
    background: #F5A623;
    border: none;
    color: #1B3A6B;
    cursor: pointer;
    font-size: 14px;
    transition: background 200ms ease;
    display: flex;
    align-items: center;
}

.newsletter-btn:hover {
    background: #e8941a;
}

.newsletter-note {
    font-size: 10px;
    color: rgba(255,255,255,.25);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Footer bas */
.footer-bottom {
    padding: 14px 0;
    background: rgba(0,0,0,.3);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,.3);
    margin: 0;
}

.footer-bottom-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    font-size: 11px;
    color: rgba(255,255,255,.3);
    text-decoration: none;
    transition: color 200ms ease;
}

.footer-bottom-link:hover {
    color: rgba(255,255,255,.75);
}

.footer-lang-link {
    font-weight: 800;
    letter-spacing: .5px;
}

.footer-lang-link.active {
    color: #F5A623;
}

.footer-sep {
    color: rgba(255,255,255,.18);
    font-size: 11px;
}

.footer-admin-link {
    font-size: 14px;
    opacity: .3;
}

.footer-admin-link:hover {
    opacity: .8;
    color: #ffffff;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE MOBILE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 991px) {

    body { padding-top: 80px; }

    /* Burger visible sur mobile */
    .burger-btn { display: flex; }

    /* Langue + membre cachés dans la barre du haut sur mobile */
    .header-actions__desktop { display: none !important; }

    /* Bouton don desktop caché sur mobile
       (la version mobile est dans nav-mobile-footer) */
    .header-donate-btn:not(.header-donate-btn--mobile) {
        display: none;
    }

    .header-top-inner {
        padding: 10px 20px;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: #1B3A6B;
        z-index: 99998;
        overflow-y: auto;
        transition: left 300ms cubic-bezier(.4,0,.2,1);
        padding-top: 64px;
        border-right: 1px solid rgba(255,255,255,.1);
        display: flex;
        flex-direction: column;
    }

    .header-nav.is-open { left: 0; }
    .nav-overlay { display: block; }

    .nav-list {
        flex-direction: column;
        justify-content: flex-start;
        padding: 16px 0;
        flex: 1;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .nav-link {
        color: rgba(255,255,255,.85);
        padding: 14px 20px;
        font-size: 14px;
        border-bottom: none;
        width: 100%;
        justify-content: space-between;
    }

    .nav-link:hover,
    .nav-item.is-active > .nav-link {
        color: #ffffff;
        background: rgba(255,255,255,.07);
        border-bottom: none;
    }

    /* Mega panel mobile : accordéon */
    .mega-panel {
        position: static;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.04) !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 300ms ease, visibility 0ms 300ms;
    }

    .nav-item.is-open .mega-panel {
        max-height: 600px;
        visibility: visible;
        pointer-events: auto;
        transition: max-height 300ms ease, visibility 0ms 0ms;
    }

    /* Mobile : cacher carte et description */
    .mega-map, .mega-desc { display: none; }

    .mega-inner {
        grid-template-columns: 1fr;
        padding: 8px 0;
        min-height: auto;
    }

    .mega-links {
        padding: 0;
        border: none;
        gap: 0;
    }

    .mega-link {
        color: rgba(255,255,255,.75);
        padding: 10px 24px;
        border-radius: 0;
        white-space: nowrap;
    }

    .mega-link i {
        background: rgba(255,255,255,.1);
        color: rgba(255,255,255,.75);
    }

    .mega-link:hover {
        background: rgba(255,255,255,.07);
        color: #ffffff;
    }

    /* ── Bloc bas du menu mobile : langue + don + membre ───── */
    .nav-mobile-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 16px 20px 24px;
        border-top: 1px solid rgba(255,255,255,.1);
        margin-top: auto;
    }

    /* Sélecteur de langue dans le burger */
    .nav-mobile-footer .lang-switcher {
        justify-content: flex-start;
        gap: 6px;
        margin-bottom: 4px;
    }

    .nav-mobile-footer .lang-pill--active {
        background: #F5A623;
        color: #1B3A6B;
        font-size: 12px;
        padding: 6px 12px;
    }

    .nav-mobile-footer .lang-pill--inactive {
        color: rgba(255,255,255,.6);
        font-size: 12px;
        padding: 6px 12px;
        border: 1px solid rgba(255,255,255,.2);
        border-radius: 4px;
    }

    .nav-mobile-footer .lang-pill--inactive:hover {
        background: rgba(255,255,255,.1);
        color: #ffffff;
    }

    .nav-mobile-footer .lang-sep {
        color: rgba(255,255,255,.3);
    }

    /* Bouton don mobile — pleine largeur */
    .header-donate-btn--mobile {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 7px;
        background: #F5A623;
        color: #1B3A6B;
    }

    .header-donate-btn--mobile:hover {
        background: #e8941a;
        transform: none;
        box-shadow: none;
    }

    /* Espace membre mobile — pleine largeur */
    .membre-btn--mobile {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 7px;
        color: rgba(255,255,255,.75);
        border-color: rgba(255,255,255,.2);
        background: rgba(255,255,255,.05);
    }

    .membre-btn--mobile:hover {
        background: rgba(255,255,255,.12);
        color: #ffffff;
        border-color: rgba(255,255,255,.35);
    }
}

/* Footer responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col--brand {
        grid-column: auto;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
