/* =========================================
   ABMV - Association Buamu Ma Vii
   Style principal — Refonte complète
   ========================================= */

/* ===== VARIABLES ===== */
:root {
    --blue:        #1e90e0;
    --blue-dark:   #156bb0;
    --blue-deep:   #0d3d6b;
    --gold:        #d99b3a;
    --gold-light:  #f0b84a;
    --gold-dark:   #b07820;
    --white:       #ffffff;
    --off-white:   #f8f6f2;
    --text:        #1a1a2e;
    --text-muted:  #5a6474;
    --border:      #e8e4dc;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', 'Segoe UI', sans-serif;

    --max-w: 1180px;
    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow:    0 6px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
    --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInDown {
    from { opacity:0; transform:translateY(-24px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(32px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
    from { opacity:0; }
    to   { opacity:1; }
}
@keyframes float {
    0%,100% { transform:translateY(0); }
    50%      { transform:translateY(-10px); }
}
@keyframes scrollText {
    0%   { transform:translateX(0);     opacity:1; }
    5%   { transform:translateX(110%);  opacity:0; }
    6%   { transform:translateX(-110%); opacity:0; }
    12%  { transform:translateX(0);     opacity:1; }
    15%  { transform:translateX(0);     opacity:1; }
    20%  { transform:translateX(110%);  opacity:0; }
    21%  { transform:translateX(-110%); opacity:0; }
    27%  { transform:translateX(0);     opacity:1; }
    30%  { transform:translateX(0);     opacity:1; }
    35%  { transform:translateX(110%);  opacity:0; }
    36%  { transform:translateX(-110%); opacity:0; }
    42%  { transform:translateX(0);     opacity:1; }
    100% { transform:translateX(0);     opacity:1; }
}
@keyframes scrollDown {
    0%   { transform:translateY(0);   opacity:1; }
    75%  { transform:translateY(10px);opacity:0; }
    100% { transform:translateY(0);   opacity:0; }
}
@keyframes pulse-ring {
    0%   { transform:scale(1);   opacity:0.6; }
    100% { transform:scale(1.5); opacity:0; }
}
@keyframes countUp {
    from { opacity:0; transform:scale(0.7); }
    to   { opacity:1; transform:scale(1); }
}

/* ===== SCROLL REVEAL ===== */
.reveal, .reveal-left, .reveal-right, .reveal-zoom {
    opacity:0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal       { transform:translateY(40px); }
.reveal-left  { transform:translateX(-48px); }
.reveal-right { transform:translateX(48px); }
.reveal-zoom  { transform:scale(0.88); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible {
    opacity:1;
    transform:none;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    animation: fadeInDown 0.6s ease both;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo img {
    height: 52px;
    width: auto;
    transition: transform 0.4s ease;
}
.logo img:hover { transform: rotate(-4deg) scale(1.08); }

/* Navbar */
.navbar ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: inline-block;
    padding: 7px 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.nav-link:hover {
    background: var(--off-white);
    color: var(--blue);
}
.nav-link.active-link {
    color: var(--blue);
    font-weight: 600;
}

/* Bouton Adhérer dans le nav */
.btn-nav {
    background: var(--blue);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

/* Menu hamburger stylé */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-deep);
}

.hero__bg-image {
    position: absolute;
    inset: 0;
}
.hero__bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* ← ajuste le cadrage : top, center, bottom */
    opacity: 0.25; /* ← ajuste l'opacité : 0.1 (très discret) à 0.5 (bien visible) */
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 61, 107, 0.85) 0%,
        rgba(30, 144, 224, 0.6) 50%,
        rgba(13, 61, 107, 0.75) 100%
    );
}

/* Cercles décoratifs */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}
.hero::before {
    width: 600px; height: 600px;
    top: -200px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.hero::after {
    width: 400px; height: 400px;
    bottom: -100px; left: -80px;
    animation: float 6s ease-in-out infinite reverse;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    background: rgba(217, 155, 58, 0.2);
    border: 1px solid rgba(217, 155, 58, 0.5);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    animation: fadeIn 1s ease 0.2s both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInDown 0.9s ease 0.4s both;
    white-space: nowrap;
}
.hero__title em {
    font-style: italic;
    color: var(--gold-light);
    display: inline;
}

.hero__quote {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 16px rgba(217,155,58,0.4);
    margin-bottom: 20px;
    display: block;
    overflow: visible;
    white-space: nowrap;
    animation: scrollText 75s ease-in-out infinite;
    animation-delay: 2s;
}

.hero__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.9s ease 0.8s both;
    text-align: center;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 1s both;
    justify-content: center;
}

/* Indicateur scroll */
.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero__scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollDown 1.5s ease-in-out infinite;
}

/* =========================================
   BOUTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn--primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(217,155,58,0.35);
}
.btn--primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 8px 24px rgba(217,155,58,0.45);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn--outline-dark {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn--outline-dark:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================================
   STATS BAND
   ========================================= */
.stats-band {
    background: var(--blue-deep);
    padding: 32px 0;
}

.stats-band__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 16px 24px;
}

.stat-item__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-item__label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* =========================================
   SECTIONS COMMUNES
   ========================================= */
.section { padding: 96px 0; }
.section--missions { background: var(--off-white); }
.section--actu     { background: var(--white); }

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.section__cta {
    text-align: center;
    margin-top: 48px;
}

/* =========================================
   PRESENTATION
   ========================================= */
.section--presentation { background: var(--white); }

.presentation__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.presentation__text .section__eyebrow { display: block; margin-bottom: 12px; }
.presentation__text .section__title   { margin-bottom: 20px; text-align: left; }
.presentation__text p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.image-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.image-frame:hover img { transform: scale(1.04); }

.image-frame__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(13,61,107,0.92);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}
.image-frame__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold-light);
}
.image-frame__badge span {
    font-size: 0.82rem;
    opacity: 0.8;
}

/* =========================================
   MISSIONS
   ========================================= */
.missions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-bottom: 3px solid transparent;
}
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold);
}
.mission-card--featured {
    background: var(--white);
    color: var(--white);
}
.mission-card--featured h3 { color: var(--gold-light); }
.mission-card--featured p  { color: rgba(255,255,255,0.75); }

.mission-card__icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
    animation: float 4s ease-in-out infinite;
}
.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.mission-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.mission-card__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s ease;
}
.mission-card:hover .mission-card__line { width: 100%; }

/* =========================================
   ACTUALITES
   ========================================= */
.actu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.actu-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.actu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--blue);
}

.actu-card__date {
    display: inline-block;
    background: var(--off-white);
    color: var(--blue);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.actu-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}
.actu-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 20px;
}
.actu-card__link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--blue);
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.actu-card__link:hover { gap: 8px; }

/* =========================================
   CTA SECTION
   ========================================= */
.section--cta {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
    padding: 80px 0;
}
.cta__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta__inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.cta__inner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 36px;
}
.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--blue-deep);
    color: var(--white);
    padding-top: 64px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}
.footer__tagline {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer__links h4,
.footer__social h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.footer__links ul li {
    margin-bottom: 10px;
}
.footer__links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.93rem;
    transition: color var(--transition), padding-left var(--transition);
}
.footer__links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.social-btn.facebook  { background: #1877f2; }
.social-btn.whatsapp  { background: #25d366; }
.social-btn.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.twitter   { background: #000; }
.social-btn.tiktok    { background: #010101; }

.footer__contact-info p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

.footer__bottom {
    padding: 20px 0;
}
.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    font-family: Arial, sans-serif;
}

/* =========================================
   BOUTON RETOUR EN HAUT
   ========================================= */
#topBtn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--gold);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(217,155,58,0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
}
#topBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-ring 1.5s ease-out infinite;
    z-index: -1;
}
#topBtn:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
}

/* =========================================
   PAGES INTERIEURES — styles communs
   ========================================= */

/* Hero des pages intérieures */
.page-hero {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
    padding: 80px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.07);
    top: -100px; right: -80px;
    animation: float 7s ease-in-out infinite;
}
.page-hero h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Cards génériques */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.card h3 {
    font-family: var(--font-display);
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.card p { color: var(--text-muted); font-size: 0.93rem; }

/* Section générique */
.section-page { padding: 80px 0; }
.section-page.bg-light { background: var(--off-white); }
.section-page h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--text);
    text-align: center;
    margin-bottom: 12px;
}
.section-page h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 40px;
    border-radius: 2px;
}

/* Bureau */
.bureau-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.membre {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.membre:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.membre img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--off-white);
    transition: transform 0.5s ease;
}
.membre:hover img { transform: scale(1.06); }
.membre h3 {
    font-family: var(--font-display);
    color: var(--text);
    margin: 16px 0 4px;
    font-size: 1.1rem;
}
.membre p { color: var(--text-muted); font-size: 0.88rem; padding-bottom: 20px; }

/* Galerie */
.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.galerie img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}
.galerie img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.08);
}

/* Formulaires */
.form-box {
    max-width: 580px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.form-box label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    margin-top: 20px;
    font-size: 0.9rem;
}
.form-box label:first-of-type { margin-top: 0; }
.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--off-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,144,224,0.12);
}
.form-box textarea { min-height: 120px; resize: vertical; }
.form-box button {
    width: 100%;
    margin-top: 28px;
    padding: 14px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.form-box button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

/* Documents */
.doc-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.doc-list li {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.doc-list li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
}
.doc-name { font-weight: 600; color: var(--text); font-size: 1rem; }
.doc-actions { display: flex; gap: 10px; }
.doc-actions a {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.doc-actions a:first-child {
    background: var(--off-white);
    color: var(--blue);
    border: 1.5px solid var(--blue);
}
.doc-actions a:first-child:hover {
    background: var(--blue);
    color: var(--white);
}
.doc-actions a:last-child {
    background: var(--gold);
    color: var(--white);
}
.doc-actions a:last-child:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Partenaires */
.partenaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}
.partenaire {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partenaire:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.partenaire img {
    max-height: 90px;
    width: auto;
    margin: 0 auto 14px;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.partenaire:hover img { transform: scale(1.08); }
.partenaire h3 {
    font-family: var(--font-display);
    color: var(--text);
    font-size: 1rem;
}

/* Dons / Paiement */
.paiement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.paiement-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px 20px;
    text-align: center;
    border-top: 4px solid var(--blue);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.paiement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.paiement-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; animation: float 3s ease-in-out infinite; }
.paiement-card h3 { font-family: var(--font-display); color: var(--text); margin-bottom: 10px; }
.paiement-numero { font-size: 1.15rem; font-weight: 700; color: var(--blue); margin-bottom: 6px; letter-spacing: 1px; }
.paiement-nom { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.btn-paiement {
    display: inline-block;
    margin-top: 14px;
    padding: 9px 22px;
    background: var(--blue);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}
.btn-paiement:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.contact-info h3 {
    font-family: var(--font-display);
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.contact-info p { color: var(--text-muted); margin-bottom: 10px; font-size: 0.95rem; }
.contact-info p strong { color: var(--text); }

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#lightbox.active { display: flex; animation: fadeIn 0.3s ease; }
#lightbox #lb-img {
    max-width: 86vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: var(--radius);
    animation: fadeIn 0.3s ease;
}
#lightbox button {
    background: rgba(255,255,255,0.12);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 52px; height: 52px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
#lightbox button:hover { background: rgba(255,255,255,0.28); transform: scale(1.12); }
#lb-close { position: absolute; top: 20px; right: 24px; font-size: 1.3rem !important; }

/* Validation formulaire */
.input-error { border-color: #c0392b !important; background: #fdf0ee !important; }
.error-message { display: block; color: #c0392b; font-size: 0.82rem; margin-top: 4px; }
.form-success {
    margin-top: 20px; padding: 14px;
    background: #eaf6ec; color: #1f4e3d;
    border: 1px solid #b7ddc1; border-radius: var(--radius);
    text-align: center; font-weight: 600;
    animation: fadeInUp 0.5s ease;
}

/* Lien actif */
.nav-link.active-link { color: var(--blue); font-weight: 600; }

/* Archives */
.archive-filtres {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.filtre-btn {
    padding: 9px 22px;
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--blue);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filtre-btn:hover, .filtre-btn.active {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 14px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), var(--gold));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 36px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -30px; top: 10px;
    width: 12px; height: 12px;
    background: var(--gold);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--blue);
}
.timeline-date {
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-display);
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    border-left: 3px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-content:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.timeline-content h3 { font-family: var(--font-display); color: var(--text); margin-bottom: 6px; font-size: 1.05rem; }
.timeline-content p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== Retour haut display fix ===== */
#topBtn { display: none; }
#topBtn.visible { display: flex; }

/* ===== CONTACT INFO ITEMS ===== */
.contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-info__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info__item strong {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.contact-info__item p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin: 0;
}

/* ===== ADHESION ===== */
.adhesion__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.adhesion__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}

.adhesion__step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step__num {
    width: 36px;
    height: 36px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.adhesion__step strong {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.adhesion__step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .adhesion__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== GOOGLE FORM INTEGRE ===== */
.gform-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    overflow: hidden;
}
.gform-wrapper iframe {
    width: 100%;
    border: none;
    border-radius: var(--radius);
    display: block;
}