/* ═══════════════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g1: #1b5e20;
  --g2: #2e7d32;
  --g3: #43a047;
  --g4: #66bb6a;
  --accent:    #f9a825;
  --accent-lt: #fdd835;
  --white:     #ffffff;
  --off:       #f4f8f4;
  --text:      #1a2e1a;
  --muted:     #607060;
  --border:    #d4e8d4;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 2px 16px rgba(27,94,32,.09);
  --shadow-lg: 0 8px 40px rgba(27,94,32,.16);
  --tr:        .26s cubic-bezier(.4,0,.2,1);
  --nav-h:     96px;
  /* Couleurs du drapeau haïtien */
  --hai-blue: #003F87;
  --hai-red:  #D21034;
}

html  { scroll-behavior: smooth; font-size: 16px; }
/* Anti-flash FOAIT : caché jusqu'à ce que _nav.js applique les traductions */
body  { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; line-height: 1.65; overflow-x: hidden;
        visibility: hidden; animation: _ahh-show 0s 0.5s forwards; }
@keyframes _ahh-show { to { visibility: visible; } }
a     { text-decoration: none; color: inherit; }
img   { display: block; max-width: 100%; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 24px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 600;
  border: 2px solid transparent; cursor: pointer; transition: var(--tr);
  white-space: nowrap;
}
.btn-primary  { background: linear-gradient(135deg, var(--accent), var(--accent-lt)); color: var(--text); box-shadow: 0 3px 14px rgba(249,168,37,.3); }
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(249,168,37,.45); }
.btn-ghost    { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn-ghost:hover    { background: rgba(255,255,255,.25); }
.btn-outline  { background: transparent; color: var(--g2); border-color: var(--g2); }
.btn-outline:hover  { background: var(--g2); color: #fff; }
.btn-outline-white  { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.14); }
.btn.full { width: 100%; justify-content: center; }

.btn-login {
  background: linear-gradient(135deg, var(--accent), var(--accent-lt)) !important;
  color: var(--text) !important; border-color: transparent !important;
  font-weight: 700 !important; font-size: .83rem !important;
  padding: 9px 18px !important; border-radius: 50px !important;
  box-shadow: 0 3px 12px rgba(249,168,37,.3);
}
.btn-login:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,168,37,.5) !important; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); transition: var(--tr);
  padding: 0;
  background: rgba(15,50,15,.92);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 24px rgba(0,0,0,.08);
}
.nav-inner {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  width: 58px; height: 58px; border-radius: 12px; object-fit: cover;
  border: 2px solid rgba(255,255,255,.3); box-shadow: 0 2px 10px rgba(0,0,0,.15);
  transition: var(--tr); flex-shrink: 0;
}
.navbar.scrolled .logo-img { border-color: var(--border); }
.logo-text-group { display: flex; flex-direction: column; }
.logo-text { font-weight: 700; font-size: .95rem; color: #fff; line-height: 1.1; transition: var(--tr); }
.logo-sub  { font-size: .78rem; color: rgba(255,255,255,.85); font-weight: 600; letter-spacing: .03em; transition: var(--tr); max-width: 160px; line-height: 1.3; }
.navbar.scrolled .logo-text { color: var(--text); }
.navbar.scrolled .logo-sub  { color: var(--muted); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: .97rem; font-weight: 600; color: #fff;
  padding: 8px 15px; border-radius: 8px; transition: var(--tr);
  text-shadow: 0 1px 4px rgba(0,0,0,.3); white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.18); }
.navbar.scrolled .nav-link { color: #1b5e20; text-shadow: none; }
.navbar.scrolled .nav-link:hover { color: var(--g2); background: var(--off); }

/* Mobile header inside nav panel */
.nav-mobile-header { display: none; }

/* Overlay mobile */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 998;
  backdrop-filter: blur(3px);
}
.nav-overlay.show { display: block; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: #fff; border-radius: 3px; transition: var(--tr); transform-origin: center;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-close {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; border-radius: 8px; font-size: 1rem; cursor: pointer;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  margin-left: auto; transition: var(--tr);
}
.nav-close:hover { background: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: var(--nav-h);
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-photo-bg.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg,
    rgba(10,40,10,.88) 0%,
    rgba(27,94,32,.78) 45%,
    rgba(46,125,50,.60) 75%,
    rgba(10,40,10,.72) 100%);
}

.hero-layout {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding-top: 60px; padding-bottom: 80px;
  max-width: 820px; margin: 0 auto;
}

.hero-content { max-width: 780px; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.13); color: rgba(255,255,255,.9);
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.22); margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  color: #fff; line-height: 1.25; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-intro {
  display: block;
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .03em;
  white-space: nowrap;
}
.hero-values {
  display: block;
  font-style: italic;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
}
.hero-subtitle-line {
  display: block; font-style: normal;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: rgba(255,255,255,.9);
}

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.82);
  margin-bottom: 32px; max-width: 800px; white-space: nowrap; line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
  margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }


.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 1;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.65); border-radius: 50%;
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); opacity: .6; }
  50%      { transform: translateY(8px); opacity: 1; }
}

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.stats { background: #fff; position: relative; z-index: 2; padding: 0 0 40px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  margin-top: -52px; overflow: hidden;
}
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
  cursor: default; position: relative; overflow: hidden;
}
.stat-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,.06) 0%, rgba(46,125,50,.1) 100%);
  opacity: 0; transition: opacity .22s ease;
}
.stat-item:hover::before { opacity: 1; }
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,94,32,.12);
  z-index: 1;
}
.stat-item:last-child { border-right: none; }
.stat-icon  { font-size: 1.6rem; margin-bottom: 8px; }
.stat-number {
  font-size: 2rem; font-weight: 800; color: var(--g2); line-height: 1; margin-bottom: 4px;
  transition: transform .22s ease;
}
.stat-item:hover .stat-number { transform: scale(1.1); color: var(--g1); }
.stat-label  { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ═══════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  color: var(--text); margin-bottom: 10px; line-height: 1.25;
}
.section-header.light h2 { color: #fff; }
.section-header p { font-size: .92rem; color: var(--muted); max-width: 500px; margin: 0 auto; }
.section-header.light p { color: rgba(255,255,255,.72); }

.section-badge {
  display: inline-block;
  background: rgba(46,125,50,.1); color: var(--g2);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 10px;
  border: 1px solid rgba(46,125,50,.18);
}
.section-header.light .section-badge {
  background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.28);
}

/* ═══════════════════════════════════════════════
   PILLARS
═══════════════════════════════════════════════ */
.pillars { padding: 72px 0; background: var(--off); }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.pillar-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: var(--tr); position: relative; overflow: hidden;
}
.pillar-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--g2), var(--g4));
  transform: scaleX(0); transform-origin: left; transition: var(--tr);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card.featured { border-color: rgba(249,168,37,.5); }
.pillar-card.featured::after { background: linear-gradient(90deg, var(--accent), var(--accent-lt)); transform: scaleX(1); }

.pillar-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(46,125,50,.1), rgba(67,160,71,.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
  border: 1px solid rgba(46,125,50,.12);
}
.pillar-card.featured .pillar-icon-wrap {
  background: linear-gradient(135deg, rgba(249,168,37,.12), rgba(253,216,53,.06));
  border-color: rgba(249,168,37,.2);
}
.pillar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.pillar-card p  { font-size: .85rem; color: var(--muted); margin-bottom: 18px; line-height: 1.7; }
.pillar-link    { font-size: .82rem; font-weight: 600; color: var(--g2); transition: var(--tr); }
.pillar-link:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
═══════════════════════════════════════════════ */
.testimonials { padding: 72px 0; background: #fff; }
.carousel-wrapper { position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 220px; }
.carousel-slide {
  position: absolute; inset: 0; opacity: 0;
  transform: translateX(30px); transition: opacity .5s ease, transform .5s ease;
  pointer-events: none; display: flex;
}
.carousel-slide.active { opacity: 1; transform: translateX(0); position: relative; pointer-events: all; }
.testimonials-grid-carousel { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; width: 100%; }

.testimonial-card {
  background: var(--off); border-radius: var(--radius-lg);
  padding: 28px 22px; border: 1px solid var(--border); transition: var(--tr);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.quote-icon { font-size: 3rem; font-family: Georgia, serif; color: var(--g2); opacity: .13; line-height: 1; margin-bottom: -6px; }
.testimonial-card p { font-size: .86rem; color: var(--text); line-height: 1.75; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g2), var(--g3));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .84rem; color: var(--text); }
.testimonial-author span  { font-size: .73rem; color: var(--muted); }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.carousel-nav-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--border); background: #fff;
  font-size: 1.1rem; cursor: pointer; transition: var(--tr);
  display: flex; align-items: center; justify-content: center; color: var(--g2);
}
.carousel-nav-btn:hover { background: var(--g2); color: #fff; border-color: var(--g2); }
#carouselDots { display: flex; gap: 7px; align-items: center; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; transition: var(--tr); }
.carousel-dot.active { background: var(--g2); transform: scale(1.5); }

/* ═══════════════════════════════════════════════
   DONATION
═══════════════════════════════════════════════ */
.donation {
  padding: 80px 0; position: relative;
  background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 55%, var(--g3) 100%);
  overflow: hidden;
}
.donation-bg {
  position: absolute; inset: 0; opacity: .04;
  background: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.donation-content { position: relative; z-index: 1; }
.donation-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 8px; }
.donation-card {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 36px 24px; text-align: center;
  backdrop-filter: blur(8px); transition: var(--tr); position: relative;
}
.donation-card:hover { background: rgba(255,255,255,.15); transform: translateY(-4px); }
.donation-card.featured { background: rgba(255,255,255,.16); border-color: var(--accent); transform: scale(1.04); }
.donation-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.donation-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-lt));
  color: var(--text); font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  padding: 3px 14px; border-radius: 50px; text-transform: uppercase;
}
.donation-amount { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.donation-label  { font-size: .72rem; font-weight: 600; letter-spacing: .1em; color: rgba(255,255,255,.6); text-transform: uppercase; margin-bottom: 12px; }
.donation-card p { color: rgba(255,255,255,.72); font-size: .84rem; margin-bottom: 20px; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   COMMANDITAIRES / SPONSORS
═══════════════════════════════════════════════ */
.sponsors-section { padding: 80px 0; background: #f4f7f4; }
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}
.sponsor-card {
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
  cursor: pointer;
}
.sponsor-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,.22); }
.sponsor-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.sponsor-card-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.sponsor-card-body {
  padding: 18px 20px 20px;
}
.sponsor-card-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 3px 12px;
  color: #fff;
  display: inline-block;
  margin-bottom: 8px;
}
.sponsor-card-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.sponsor-card-desc { font-size: .84rem; color: var(--muted); line-height: 1.5; }

@media (max-width: 600px) {
  .sponsors-grid { gap: 18px; }
  .sponsor-card { max-width: 100%; }
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info .section-badge { margin-bottom: 10px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; margin-bottom: 12px; }
.contact-info > p { color: var(--muted); margin-bottom: 28px; font-size: .88rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  font-size: 1.1rem; width: 42px; height: 42px;
  background: var(--off); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid var(--border);
}
.contact-item strong { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contact-item span   { font-size: .86rem; color: var(--text); }
.contact-item a { color: var(--g2); }
.contact-item a:hover { text-decoration: underline; }

.contact-quick { display: flex; gap: 8px; flex-wrap: wrap; }
.cq-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 50px;
  background: var(--off); border: 1px solid var(--border);
  font-size: .75rem; font-weight: 600; color: var(--text);
  transition: var(--tr);
}
.cq-link:hover { background: var(--g2); color: #fff; border-color: var(--g2); }

.contact-form {
  background: var(--off); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid var(--border);
}
.form-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-group label { font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.form-group input,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 9px; font-family: 'Poppins', sans-serif;
  font-size: .86rem; color: var(--text); background: #fff;
  outline: none; transition: var(--tr); resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--g2); box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: #0f2210; color: rgba(255,255,255,.68); }
.footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.1fr;
  gap: 32px; padding: 56px 24px 36px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-img  { border-color: rgba(255,255,255,.2); }
.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 260px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.65);
  transition: var(--tr);
}
.social-icon:hover { background: var(--g2); color: #fff; transform: translateY(-2px); }

.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links h5,
.footer-contact h5 {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; margin-bottom: 14px;
}
.footer-links a {
  font-size: .82rem; color: rgba(255,255,255,.58);
  padding: 5px 0; transition: var(--tr);
}
.footer-links a:hover { color: var(--g4); padding-left: 5px; }

.footer-contact p { font-size: .82rem; margin-bottom: 7px; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,.65); transition: var(--tr); }
.footer-contact a:hover { color: var(--g4); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 24px; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .75rem; }

.footer-flags { display: flex; margin-top: 18px; }
.footer-flag-photo {
  display: block; width: 140px; height: 80px; object-fit: cover;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
  animation: footer-flag-float 3.6s ease-in-out infinite;
  will-change: transform;
}
@keyframes footer-flag-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .footer-flag-photo { animation: none; }
}

/* ═══════════════════════════════════════════════
   SCROLL PROGRESS + BACK TO TOP + WHATSAPP
═══════════════════════════════════════════════ */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--g3), var(--accent));
  z-index: 2000; transition: width .1s linear; border-radius: 0 2px 2px 0;
}
#backTop {
  position: fixed; bottom: 128px; right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g2), var(--g3));
  color: #fff; border: none; font-size: 1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(27,94,32,.35);
  opacity: 0; transform: translateY(10px); transition: var(--tr); z-index: 900;
  display: flex; align-items: center; justify-content: center;
}
#backTop.visible { opacity: 1; transform: translateY(0); }
#backTop:hover   { transform: translateY(-3px); }

#whatsappBtn {
  position: fixed; bottom: 68px; right: 18px;
  width: 52px; height: 52px; background: #25d366;
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.42); z-index: 900;
  transition: transform .28s ease, box-shadow .28s ease;
  animation: waPulse 2.8s ease-in-out infinite;
}
#whatsappBtn:hover { transform: scale(1.1); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.42), 0 0 0 0 rgba(37,211,102,.35); }
  50%      { box-shadow: 0 4px 18px rgba(37,211,102,.42), 0 0 0 10px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal-ready { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-ready.revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════ */
#lightbox {
  position: fixed; inset: 0; z-index: 1500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.lb-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 90vw; width: 660px; }
.lb-display  { width: 100%; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.lb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5.5rem; }
.lb-close { position: absolute; top: -46px; right: 0; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); color: #fff; width: 34px; height: 34px; border-radius: 50%; font-size: .95rem; cursor: pointer; transition: var(--tr); display: flex; align-items: center; justify-content: center; }
.lb-close:hover { background: rgba(255,255,255,.28); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); color: #fff; width: 42px; height: 42px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: var(--tr); display: flex; align-items: center; justify-content: center; }
.lb-nav:hover { background: rgba(255,255,255,.28); }
.lb-prev { left: -54px; } .lb-next { right: -54px; }
.lb-caption { color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 600; text-align: center; }
.lb-counter { color: rgba(255,255,255,.48); font-size: .75rem; }

/* ═══════════════════════════════════════════════
   PAGE HERO (equipe / galerie)
═══════════════════════════════════════════════ */
.page-hero {
  min-height: 36vh; display: flex; align-items: flex-end; padding-bottom: 52px;
  background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 60%, var(--g3) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(249,168,37,.07) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; padding-top: 120px; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #fff; margin-bottom: 10px; }
.page-hero-content p  { color: rgba(255,255,255,.75); font-size: .92rem; max-width: 500px; }
.breadcrumb { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; font-size: .78rem; color: rgba(255,255,255,.58); }
.breadcrumb a { color: rgba(255,255,255,.68); } .breadcrumb a:hover { color: var(--accent-lt); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ═══════════════════════════════════════════════
   EQUIPE PAGE
═══════════════════════════════════════════════ */
.equipe-section { padding: 72px 0 80px; background: var(--off); }
.team-grid-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card-full {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--tr); position: relative; overflow: hidden;
}
.team-card-full::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--g2), var(--g4)); }
.team-card-full.president::before { background: linear-gradient(90deg, var(--accent), var(--accent-lt)); height: 5px; }
.team-card-full:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar-full {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.14);
}
.team-card-full h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.team-role-badge {
  display: inline-block; background: rgba(46,125,50,.1); color: var(--g2);
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 50px; margin-bottom: 14px; border: 1px solid rgba(46,125,50,.14);
}
.team-card-full.president .team-role-badge { background: rgba(249,168,37,.12); color: #c77700; border-color: rgba(249,168,37,.28); }
.team-card-full blockquote { font-style: italic; color: var(--muted); font-size: .82rem; line-height: 1.65; border-left: 3px solid var(--border); padding-left: 12px; text-align: left; }
.team-card-full.president blockquote { border-left-color: var(--accent); }

/* ═══════════════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════════════ */
.galerie-section { padding: 72px 0 80px; background: var(--off); }
.gallery-grid-full {
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-template-rows: 240px 240px; gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-placeholder { font-size: 4rem; opacity: .44; transition: var(--tr); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 18px;
  opacity: 0; transition: var(--tr);
}
.gallery-overlay span { color: #fff; font-size: .85rem; font-weight: 600; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); opacity: .22; }
.gallery-item[data-label] { cursor: zoom-in; }

/* ── GALLERY CATEGORY TITLE ─────────────────────────────────── */
.gallery-cat-title {
  font-size: .98rem; font-weight: 700; color: var(--text);
  margin-bottom: 18px; padding-left: 2px;
}

/* ── NAV ACTIVE LINK ─────────────────────────────────────────── */
.active-link { color: #fff !important; font-weight: 700 !important; }
.nav-join { background: rgba(249,168,37,.18); border-radius: 8px; }

/* ── CONTACT MAP ─────────────────────────────────────────────── */
.contact-map { margin-top: 20px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }

/* ── FORM SELECT ─────────────────────────────────────────────── */
.form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 9px; font-family: 'Poppins', sans-serif;
  font-size: .86rem; color: var(--text); background: #fff;
  outline: none; transition: var(--tr); appearance: auto;
}
.form-group select:focus { border-color: var(--g2); box-shadow: 0 0 0 3px rgba(46,125,50,.1); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid-full { grid-template-columns: repeat(2,1fr); }
  .gallery-grid-full { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 80px; }

  /* Hamburger visible */
  .hamburger { display: flex; }

  /* Menu panneau latéral */
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(300px, 82vw);
    background: #0a1f0b;
    flex-direction: column; align-items: stretch;
    padding: 0 0 24px; gap: 0; z-index: 999;
    transition: right .32s cubic-bezier(.4,0,.2,1);
    box-shadow: -6px 0 40px rgba(0,0,0,.6);
    border-left: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { right: 0; }

  .nav-mobile-header {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.12);
    margin-bottom: 8px;
  }
  .nav-link {
    color: #fff; font-size: 1.05rem; font-weight: 600; padding: 15px 22px;
    border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.08);
    text-shadow: none;
  }
  .nav-link:hover { background: rgba(255,255,255,.1); color: #fff; }
  .btn-login { margin: 16px 20px 0 !important; border-radius: 10px !important; text-align: center; justify-content: center; }

  /* Hero */
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .hero-title   { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero-values  { font-size: clamp(1.3rem, 4.5vw, 1.7rem); }
  .hero-buttons { flex-direction: column; align-items: flex-start; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); margin-top: -32px; }
  .stat-number { font-size: 1.6rem; }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; }

  /* Carousel */
  .testimonials-grid-carousel { grid-template-columns: 1fr; }
  .carousel-slide { min-height: auto; }

  /* Donation */
  .donation-cards { grid-template-columns: 1fr; }
  .donation-card.featured { transform: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* WhatsApp / BackTop */
  #whatsappBtn { bottom: 72px; right: 14px; width: 48px; height: 48px; }
  #backTop      { bottom: 132px; right: 14px; }

  /* Lightbox nav */
  .lb-prev { left: 6px; } .lb-next { right: 6px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid-full { grid-template-columns: 1fr; }
  .gallery-grid-full { grid-template-columns: 1fr; }
  .hero-badge { font-size: .68rem; }
}

/* ══════════════════════════════════════════════════════════════
   DROPDOWN MENU — Navigation
   ══════════════════════════════════════════════════════════════ */

.dropdown { position: relative; display: inline-flex; align-items: center; }

.dropdown-toggle {
  background: none; border: none; cursor: pointer;
  font-family: var(--font, 'Poppins', sans-serif);
  font-size: .97rem; font-weight: 600;
  color: #fff;
  padding: 8px 15px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px;
  transition: .2s; white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.dropdown-toggle:hover, .dropdown-toggle.active-link { color: #fff; background: rgba(255,255,255,.18); }
.navbar.scrolled .dropdown-toggle { color: #1b5e20; text-shadow: none; }
.dropdown-caret { font-size: .65rem; opacity: .7; transition: transform .2s; }
.dropdown:hover .dropdown-caret, .dropdown-menu.open ~ .dropdown-caret { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: #fff; border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 36px rgba(0,0,0,.15);
  min-width: 200px; z-index: 1000; overflow: hidden;
  padding: 14px 0 6px;  /* 14px top padding = visual gap without physical gap */
}
.dropdown-menu.open { display: block; }
@media(min-width:769px) {
  .dropdown:hover .dropdown-menu { display: block; }
}
.dropdown-menu a {
  display: block; padding: 12px 20px;
  font-size: .93rem; font-weight: 500; color: #1c2b1c;
  text-decoration: none; transition: background .15s;
  white-space: nowrap;
}
.dropdown-menu a:hover, .dropdown-menu a.active-link {
  background: #f1f8f1; color: #2e7d32;
}
.dropdown-menu a.active-link { font-weight: 700; }

/* ── SÉLECTEUR DE LANGUE PUBLIC ─────────────────────────────────────────── */
.pub-lang-selector {
  position: relative; display: flex; align-items: center; margin-left: 8px;
}
.pub-lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35);
  color: #fff; padding: 7px 14px; border-radius: 50px;
  font-size: .82rem; font-weight: 700; cursor: pointer; transition: .2s;
  white-space: nowrap;
}
.navbar.scrolled .pub-lang-btn {
  background: #f0f7f0; color: var(--text); border-color: var(--border);
}
.pub-lang-btn:hover { background: rgba(255,255,255,.35); }
.navbar.scrolled .pub-lang-btn:hover { background: #e0f0e0; }
.pub-lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0;
  background: #fff; border-radius: 14px; border: 1px solid #e0e0e0;
  box-shadow: 0 10px 32px rgba(0,0,0,.14); overflow: hidden;
  min-width: 170px; z-index: 500; padding: 6px 0;
}
.pub-lang-selector.open .pub-lang-dropdown { display: block; }
.pub-lang-opt {
  display: flex; align-items: center; gap: 10px;
  width: 100%; text-align: left; padding: 11px 16px;
  background: none; border: none; cursor: pointer;
  font-size: .88rem; color: #1c2b1c; transition: background .15s;
}
.pub-lang-opt:hover { background: #f1f8f1; }
.pub-lang-opt.active { font-weight: 700; color: #2e7d32; background: #f0f7f0; }

/* Séparateur visuel dans le dropdown */
.dropdown-menu .drop-sep {
  height: 1px; background: #e8f0e8; margin: 4px 12px;
}

/* Mobile : dropdown intégré dans le menu latéral */
@media(max-width:768px) {
  .dropdown { display: block; width: 100%; }
  .dropdown-toggle {
    width: 100%; padding: 15px 22px; border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.05rem;
    font-weight: 600; color: #fff; text-shadow: none;
    justify-content: space-between;
    -webkit-tap-highlight-color: transparent;
  }
  /* Retour visuel immédiat au toucher */
  .dropdown-toggle:active { background: rgba(255,255,255,.15); }
  /* Rotation du chevron quand le sous-menu est ouvert */
  .dropdown:has(.dropdown-menu.open) .dropdown-caret { transform: rotate(180deg); }
  .dropdown-caret { font-size: .9rem; opacity: 1; }
  .dropdown-menu {
    position: static; box-shadow: none; border-radius: 0;
    background: rgba(255,255,255,.07); border: none; padding: 0;
    margin: 0; display: none;
    border-left: 3px solid rgba(255,255,255,.2);
  }
  .dropdown-menu.open { display: block; }
  .dropdown-menu a {
    padding: 13px 36px; color: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(255,255,255,.05); font-size: .97rem; font-weight: 500;
  }
  .dropdown-menu a:active,
  .dropdown-menu a:hover { background: rgba(255,255,255,.12); color: #fff; }
}

/* ═══════════════════════════════════════════════
   ACCENTS COULEURS HAÏTIENNES
═══════════════════════════════════════════════ */
.section-badge.red   { background: rgba(210,16,52,.12); color: var(--hai-red); }
.section-badge.blue  { background: rgba(0,63,135,.12);  color: var(--hai-blue); }

.stat-item:nth-child(odd) .stat-number  { color: var(--hai-blue); }
.stat-item:nth-child(even) .stat-number { color: var(--hai-red); }

/* Bande drapeau sous la navbar */
.flag-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--hai-blue) 0%, var(--hai-blue) 50%, var(--hai-red) 50%, var(--hai-red) 100%);
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999;
}

/* ═══════════════════════════════════════════════
   FIL D'ACTUALITÉ EN TEMPS RÉEL
═══════════════════════════════════════════════ */
.feed-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
  border-top: 1px solid var(--border);
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.feed-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--tr);
  display: flex; flex-direction: column;
}
.feed-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feed-card-img {
  width: 100%; height: 140px; object-fit: cover; display: block;
}
.feed-card-color {
  height: 6px;
  background: linear-gradient(90deg, var(--g2), var(--g3));
}
.feed-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.feed-card-date {
  font-size: .72rem; font-weight: 700; color: var(--hai-blue);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px;
}
.feed-card-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.feed-card-meta  { font-size: .78rem; color: var(--muted); margin-bottom: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.feed-card-meta span { display: flex; align-items: center; gap: 4px; }
.feed-card-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 700; color: var(--g2);
  text-decoration: none; transition: var(--tr);
}
.feed-card-cta:hover { color: var(--hai-red); gap: 10px; }
.feed-live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #4caf50; margin-right: 6px;
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* ═══════════════════════════════════════════════
   GALERIE MISE EN AVANT (HOMEPAGE)
═══════════════════════════════════════════════ */
.gallery-preview-section { padding: 64px 0; background: #fff; }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.gallery-preview-grid .gp-item {
  border-radius: 14px; overflow: hidden; position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer; transition: var(--tr);
}
.gallery-preview-grid .gp-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gp-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gp-item:hover img { transform: scale(1.07); }
.gp-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 12px;
}
.gp-item:hover .gp-item-overlay { opacity: 1; }
.gp-item-overlay span { color: #fff; font-size: .78rem; font-weight: 600; }
@media(max-width:600px) { .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════
   NEWSLETTER ABONNEMENT
═══════════════════════════════════════════════ */
.newsletter-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--hai-blue) 0%, #005faa 60%, var(--hai-red) 100%);
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '🇭🇹';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-size: 12rem; opacity: .06; pointer-events: none; user-select: none;
}
.newsletter-inner {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 240px; color: #fff; }
.newsletter-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 10px; }
.newsletter-text p  { opacity: .85; font-size: .95rem; line-height: 1.6; }
.newsletter-form-wrap { flex: 1; min-width: 280px; }
.newsletter-form {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.newsletter-input {
  flex: 1; min-width: 200px;
  padding: 13px 18px; border-radius: 50px; border: none; outline: none;
  font-size: .9rem; font-family: 'Poppins', sans-serif;
  background: rgba(255,255,255,.18); color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  transition: border-color .2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-input:focus { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.25); }
.newsletter-btn {
  padding: 13px 28px; border-radius: 50px; border: none; cursor: pointer;
  background: #fff; color: var(--hai-blue); font-size: .9rem; font-weight: 700;
  font-family: 'Poppins', sans-serif; transition: var(--tr);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--accent); color: var(--text); }
.newsletter-msg {
  margin-top: 12px; font-size: .82rem; color: rgba(255,255,255,.9);
  min-height: 20px; display: none;
}
.newsletter-msg.show { display: block; }
@media(max-width:700px) {
  .newsletter-inner { gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input, .newsletter-btn { width: 100%; }
}

/* ═══════════════════════════════════════════════
   POPUP BIENVENUE (PREMIÈRE VISITE)
═══════════════════════════════════════════════ */
#welcome-popup {
  display: none; position: fixed; inset: 0; z-index: 9000;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
}
#welcome-popup.open { display: flex; }
.welcome-card {
  background: #fff; border-radius: 24px; max-width: 480px; width: 90%;
  overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.35);
  animation: popup-in .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popup-in { from { opacity: 0; transform: scale(.8) translateY(30px); } to { opacity: 1; transform: none; } }
.welcome-banner {
  background: linear-gradient(135deg, var(--hai-blue), #005faa 50%, var(--hai-red));
  padding: 36px 32px 28px; text-align: center; color: #fff;
}
.welcome-banner .wb-flag { font-size: 2.5rem; margin-bottom: 8px; }
.welcome-banner h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.welcome-banner p  { opacity: .85; font-size: .92rem; line-height: 1.5; }
.welcome-body { padding: 28px 32px; }
.welcome-body p { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-bottom: 20px; }
.welcome-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.welcome-actions .btn { flex: 1; justify-content: center; }
.welcome-close {
  position: absolute; top: 14px; right: 18px;
  background: rgba(255,255,255,.2); border: none; color: #fff;
  font-size: 1.2rem; cursor: pointer; width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.welcome-close:hover { background: rgba(255,255,255,.35); }
.welcome-banner { position: relative; }

/* ═══════════════════════════════════════════════
   FORMULAIRE CONTACT — ANIMATION SUCCÈS
═══════════════════════════════════════════════ */
.contact-success {
  display: none; text-align: center; padding: 48px 24px;
  animation: fade-in-up .5s ease;
}
.contact-success.show { display: block; }
@keyframes fade-in-up { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.contact-success .cs-icon { font-size: 3.5rem; margin-bottom: 16px; }
.contact-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--g2); margin-bottom: 8px; }
.contact-success p  { color: var(--muted); font-size: .9rem; }

/* ═══════════════════════════════════════════════
   BOUTONS PARTAGER (ACTIVITÉS)
═══════════════════════════════════════════════ */
.share-bar {
  display: flex; gap: 8px; align-items: center; margin-top: 12px; flex-wrap: wrap;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 50px; font-size: .72rem; font-weight: 700;
  border: none; cursor: pointer; transition: var(--tr); text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.share-btn-fb   { background: #1877f2; color: #fff; }
.share-btn-wa   { background: #25d366; color: #fff; }
.share-btn-copy { background: var(--off); color: var(--muted); border: 1px solid var(--border); }
.share-btn:hover { opacity: .88; transform: translateY(-1px); }
.share-label { font-size: .7rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   #1  GLASSMORPHISM — cartes dépoli
═══════════════════════════════════════════════════════════════════════════ */
.glass-card {
  background: rgba(255,255,255,.55) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7) !important;
  box-shadow: 0 8px 32px rgba(27,94,32,.12), inset 0 1px 0 rgba(255,255,255,.8) !important;
}
.glass-card-dark {
  background: rgba(27,50,27,.55) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.12) !important;
  color: #fff !important;
}
.pillar-card { backdrop-filter: blur(4px); }

/* ═══════════════════════════════════════════════════════════════════════════
   #3  MODE SOMBRE
═══════════════════════════════════════════════════════════════════════════ */
:root.dark {
  --g1: #0a1f0a;
  --g2: #2d9e5f;
  --g3: #3bc47a;
  --g4: #5dd68d;
  --accent:    #f9a825;
  --accent-lt: #fdd835;
  --white:     #1a2a1a;
  --off:       #141f14;
  --text:      #e8f4e8;
  --muted:     #7aab7a;
  --border:    #2a3f2a;
  --shadow:    0 2px 16px rgba(0,0,0,.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.55);
}
:root.dark body { background: #0e180e; color: var(--text); }
:root.dark .navbar { background: rgba(8,20,8,.95); }
:root.dark .navbar.scrolled { background: rgba(14,24,14,.97); box-shadow: 0 1px 24px rgba(0,0,0,.5); }
:root.dark .navbar.scrolled .nav-link { color: var(--text); }
:root.dark .navbar.scrolled .logo-text { color: var(--text); }
:root.dark .navbar.scrolled .logo-sub  { color: var(--muted); }
:root.dark .pillar-card,
:root.dark .testimonial-card,
:root.dark .contact-form,
:root.dark .team-card-full { background: #1a2a1a !important; border-color: var(--border) !important; }
:root.dark .pillar-card h3,
:root.dark .testimonial-card p { color: var(--text); }
:root.dark .stats { background: #0e180e; }
:root.dark .stats-grid { background: #1a2a1a; border-color: var(--border); }
:root.dark .stat-item { border-color: var(--border); }
:root.dark .stat-item:hover { background: #1f301f; }
:root.dark .pillars { background: #141f14; }
:root.dark .testimonials { background: #0e180e; }
:root.dark .contact-section { background: #0e180e; }
:root.dark .sponsors-section { background: #141f14; }
:root.dark .sponsor-card { background: #1e2e1e; color: var(--text); }
:root.dark .section-header h2 { color: var(--text); }
:root.dark .donation-card { background: rgba(255,255,255,.06); }
:root.dark .section-badge { background: rgba(45,158,95,.15); color: var(--g3); }
:root.dark .newsletter-section { background: linear-gradient(135deg,#001830,#003060 60%,#5c0818); }
:root.dark .feed-section { background: linear-gradient(135deg,#0d1a0d,#12221a); }
:root.dark .feed-card { background: #1a2a1a; border-color: var(--border); }
:root.dark .gallery-preview-section { background: #141f14; }
:root.dark #featured-activity { background: linear-gradient(135deg,#0a1f0a,#1a3a1a) !important; }
:root.dark .footer { background: #060e06; }
:root.dark .dropdown-menu { background: #1a2a1a; border-color: var(--border); }
:root.dark .dropdown-menu a { color: var(--text); }
:root.dark .dropdown-menu a:hover { background: #253525; color: var(--g3); }
:root.dark .form-group input,
:root.dark .form-group textarea,
:root.dark .form-group select { background: #1a2a1a; border-color: var(--border); color: var(--text); }
:root.dark .pub-lang-dropdown { background: #1a2a1a; border-color: var(--border); }
:root.dark .pub-lang-opt { color: var(--text); }
:root.dark .pub-lang-opt:hover { background: #253525; }
:root.dark .testimonial-card { background: #1a2a1a !important; }
:root.dark .author-avatar { background: linear-gradient(135deg, var(--g2), var(--g3)); }
:root.dark .faq-item { background: #1a2a1a; border-color: var(--border); }
:root.dark .faq-body { color: var(--muted); }
:root.dark .team-mini-name { color: var(--text); }
:root.dark .team-mini-role { color: var(--muted); }
:root.dark .ambassador-card { background: linear-gradient(135deg,#0a2a0a,#152515); }
:root.dark .meteo-widget { background: rgba(30,60,30,.8); border-color: rgba(255,255,255,.1); }
:root.dark .skeleton { background: linear-gradient(90deg,#1a2a1a 25%,#253525 50%,#1a2a1a 75%); }

/* Bouton dark mode toggle */
#darkToggle {
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--tr);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; margin-left: 4px;
}
#darkToggle:hover { background: rgba(255,255,255,.22); transform: rotate(20deg); }
:root.dark #darkToggle { background: rgba(255,255,255,.1); }
.navbar.scrolled #darkToggle { background: var(--off); color: var(--text); border-color: var(--border); }

/* ═══════════════════════════════════════════════════════════════════════════
   #6  GRADIENT MESH BACKGROUNDS
═══════════════════════════════════════════════════════════════════════════ */
.mesh-bg {
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(46,125,50,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 80%, rgba(0,63,135,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(249,168,37,.04) 0%, transparent 70%),
    #f4f8f4;
}
.mesh-bg-dark {
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(46,125,50,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 80%, rgba(0,63,135,.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--g1) 0%, var(--g2) 55%, var(--g3) 100%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   #7  BENTO GRID (remplacement piliers)
═══════════════════════════════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.bento-cell {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: var(--tr);
  position: relative; overflow: hidden;
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-cell.bento-wide  { grid-column: span 2; }
.bento-cell.bento-tall  { grid-row: span 2; }
.bento-cell.bento-accent {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color: #fff; border-color: transparent;
}
.bento-cell.bento-accent h3,
.bento-cell.bento-accent p { color: #fff !important; }
.bento-cell.bento-accent .pillar-link { color: rgba(255,255,255,.8); }
.bento-cell.bento-gold {
  background: linear-gradient(135deg, #7a4700, #c97a00);
  color: #fff; border-color: transparent;
}
.bento-cell.bento-gold h3, .bento-cell.bento-gold p { color: #fff !important; }
.bento-cell.bento-hai-blue {
  background: linear-gradient(135deg, var(--hai-blue), #005faa);
  color: #fff; border-color: transparent;
}
.bento-cell.bento-hai-blue h3, .bento-cell.bento-hai-blue p { color: #fff !important; }
.bento-cell.bento-hai-red {
  background: linear-gradient(135deg, var(--hai-red), #ff4060);
  color: #fff; border-color: transparent;
}
.bento-cell.bento-hai-red h3, .bento-cell.bento-hai-red p { color: #fff !important; }
.bento-stat-big { font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.bento-icon-lg  { font-size: 3rem; margin-bottom: 14px; display: block; }
@media(max-width:768px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-cell.bento-wide { grid-column: span 2; }
  .bento-cell.bento-tall { grid-row: span 1; }
}
@media(max-width:480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell.bento-wide { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   #8  MASONRY GALLERY
═══════════════════════════════════════════════════════════════════════════ */
.masonry-grid {
  columns: 3;
  column-gap: 14px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  display: block;
}
.masonry-item img {
  width: 100%; display: block;
  transition: transform .4s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .gallery-overlay { opacity: 0; transition: opacity .3s; }
.masonry-item:hover .gallery-overlay { opacity: 1; }
@media(max-width:768px) { .masonry-grid { columns: 2; } }
@media(max-width:480px) { .masonry-grid { columns: 1; } }

/* ═══════════════════════════════════════════════════════════════════════════
   #9  SPRING ANIMATIONS (enhanced reveal)
═══════════════════════════════════════════════════════════════════════════ */
.reveal-spring {
  opacity: 0;
  transform: translateY(32px) scale(.97);
  transition: opacity .7s cubic-bezier(.34,1.56,.64,1),
              transform .7s cubic-bezier(.34,1.56,.64,1);
}
.reveal-spring.revealed { opacity: 1; transform: translateY(0) scale(1); }
.reveal-left  { transform: translateX(-32px); transition: opacity .6s cubic-bezier(.34,1.56,.64,1), transform .6s cubic-bezier(.34,1.56,.64,1); }
.reveal-right { transform: translateX( 32px); transition: opacity .6s cubic-bezier(.34,1.56,.64,1), transform .6s cubic-bezier(.34,1.56,.64,1); }
.reveal-left.revealed, .reveal-right.revealed { transform: translateX(0); }

/* ═══════════════════════════════════════════════════════════════════════════
   #10 SKELETON LOADING
═══════════════════════════════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, #e8f0e8 25%, #f0f7f0 50%, #e8f0e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card { height: 200px; border-radius: var(--radius-lg); margin-bottom: 20px; }
.skeleton-line { height: 14px; margin-bottom: 10px; }
.skeleton-line.short { width: 60%; }
.skeleton-line.long  { width: 90%; }

/* ═══════════════════════════════════════════════════════════════════════════
   #13 CONFETTIS HAÏTIENS (canvas)
═══════════════════════════════════════════════════════════════════════════ */
#confetti-canvas {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  width: 100%; height: 100%; opacity: .45;
}

/* ═══════════════════════════════════════════════════════════════════════════
   #15 RECHERCHE UNIVERSELLE (Ctrl+K)
═══════════════════════════════════════════════════════════════════════════ */
#searchOverlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center;
  padding-top: 80px;
}
#searchOverlay.open { display: flex; }
.search-modal {
  background: #fff; border-radius: 20px;
  width: min(640px, 92vw);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  overflow: hidden;
  animation: modal-drop .22s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modal-drop { from { opacity:0; transform:translateY(-20px) scale(.96); } to { opacity:1; transform:none; } }
.search-header {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.search-header .search-icon { font-size: 1.2rem; color: var(--muted); }
#searchInput {
  flex: 1; border: none; outline: none;
  font-size: 1.05rem; font-family: 'Poppins', sans-serif;
  color: var(--text); background: transparent;
}
.search-kbd {
  display: flex; align-items: center; gap: 4px;
  font-size: .72rem; color: var(--muted);
}
.search-kbd kbd {
  background: var(--off); border: 1px solid var(--border);
  border-radius: 5px; padding: 2px 7px; font-family: inherit;
}
.search-results { max-height: 380px; overflow-y: auto; padding: 8px 0; }
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px; transition: background .15s; cursor: pointer;
  text-decoration: none; color: var(--text);
}
.search-result-item:hover, .search-result-item.active { background: var(--off); }
.search-result-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g2), var(--g3));
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.search-result-icon.page   { background: linear-gradient(135deg,#003F87,#0060bb); }
.search-result-icon.member { background: linear-gradient(135deg,#D21034,#ff4060); }
.search-result-title { font-size: .9rem; font-weight: 600; }
.search-result-sub   { font-size: .75rem; color: var(--muted); }
.search-empty { text-align: center; padding: 40px 20px; color: var(--muted); font-size: .9rem; }
.search-footer {
  padding: 12px 20px; border-top: 1px solid var(--border);
  display: flex; gap: 16px; font-size: .72rem; color: var(--muted);
}
.search-footer span { display: flex; align-items: center; gap: 5px; }
:root.dark .search-modal { background: #1a2a1a; }
:root.dark .search-header { border-color: var(--border); }
:root.dark #searchInput { color: var(--text); }
:root.dark .search-result-item:hover { background: #253525; }
:root.dark .search-footer, :root.dark .search-header { border-color: var(--border); }

/* ═══════════════════════════════════════════════════════════════════════════
   #16 COUNTDOWN WIDGET
═══════════════════════════════════════════════════════════════════════════ */
.countdown-bar {
  background: linear-gradient(135deg,var(--hai-blue),#005faa 50%,var(--hai-red));
  color: #fff; text-align: center; padding: 12px 20px;
  position: relative; z-index: 10;
  margin-top: calc(var(--nav-h) + 4px);
}
.countdown-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.countdown-label { font-size: .8rem; font-weight: 600; opacity: .85; }
.countdown-event { font-size: .85rem; font-weight: 700; }
.countdown-digits { display: flex; gap: 8px; }
.countdown-unit {
  background: rgba(255,255,255,.18); border-radius: 8px;
  padding: 4px 10px; text-align: center; min-width: 52px;
}
.countdown-unit .cd-num { font-size: 1.3rem; font-weight: 900; line-height: 1; display: block; }
.countdown-unit .cd-lbl { font-size: .6rem; opacity: .7; letter-spacing: .06em; text-transform: uppercase; }
.countdown-sep { font-size: 1.3rem; font-weight: 900; align-self: flex-start; margin-top: 4px; opacity: .6; }

/* ═══════════════════════════════════════════════════════════════════════════
   #18 AMBASSADEUR DU MOIS
═══════════════════════════════════════════════════════════════════════════ */
.ambassador-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f3e0, #fff8e8 50%, #f0f7f0);
  position: relative; overflow: hidden;
}
.ambassador-section::before {
  content: '⭐';
  position: absolute; right: 40px; top: 40px;
  font-size: 8rem; opacity: .06; pointer-events: none;
}
.ambassador-card {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
  background: #fff; border-radius: 24px;
  border: 2px solid rgba(249,168,37,.3);
  padding: 40px 48px;
  box-shadow: 0 8px 40px rgba(249,168,37,.12);
  position: relative;
}
.ambassador-badge-crown {
  position: absolute; top: -16px; left: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-lt));
  color: var(--text); font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 18px; border-radius: 50px;
  box-shadow: 0 4px 12px rgba(249,168,37,.35);
}
.ambassador-photo {
  width: 120px; height: 120px; border-radius: 50%;
  border: 4px solid var(--accent); flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 6px 24px rgba(249,168,37,.3);
}
.ambassador-photo-placeholder {
  width: 120px; height: 120px; border-radius: 50%;
  border: 4px solid var(--accent); flex-shrink: 0;
  background: linear-gradient(135deg, var(--g2), var(--g3));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 800; color: #fff;
  box-shadow: 0 6px 24px rgba(249,168,37,.3);
}
.ambassador-info { flex: 1; min-width: 220px; }
.ambassador-name { font-size: 1.6rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.ambassador-role { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.ambassador-quote {
  font-style: italic; color: var(--text); font-size: .95rem;
  line-height: 1.7; border-left: 4px solid var(--accent);
  padding-left: 16px; max-width: 480px;
}
@media(max-width:600px) { .ambassador-card { padding: 32px 24px; gap: 24px; } }

/* ═══════════════════════════════════════════════════════════════════════════
   #19 TIMELINE INTERACTIVE
═══════════════════════════════════════════════════════════════════════════ */
.timeline-section { padding: 80px 0; background: var(--off); }
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--g2), var(--accent));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; gap: 32px; margin-bottom: 48px;
  align-items: flex-start;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  flex: 1; background: #fff; border-radius: var(--radius-lg);
  padding: 24px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: var(--tr);
}
.timeline-content:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g2), var(--g3));
  border: 4px solid #fff; box-shadow: 0 0 0 3px var(--g2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; position: relative; z-index: 1;
  align-self: center;
}
.timeline-year {
  font-size: .72rem; font-weight: 800; color: var(--g2);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px;
}
.timeline-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-content p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }
@media(max-width:600px) {
  .timeline::before { left: 22px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; }
  .timeline-dot { width: 34px; height: 34px; font-size: .9rem; }
  .timeline-content { padding: 18px 20px; }
}
:root.dark .timeline-content { background: #1a2a1a; border-color: var(--border); }

/* ═══════════════════════════════════════════════════════════════════════════
   #20 AVATARS MEMBRES EMPILÉS
═══════════════════════════════════════════════════════════════════════════ */
.members-stack { display: flex; align-items: center; gap: 0; }
.members-stack .ms-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px; first-child:margin-left:0;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: transform .2s; cursor: pointer;
}
.members-stack .ms-avatar:first-child { margin-left: 0; }
.members-stack .ms-avatar:hover { transform: translateY(-4px) scale(1.12); z-index: 10; }
.members-stack .ms-more {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g2), var(--g3));
  color: #fff; font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid #fff; margin-left: -10px;
}
.members-join-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  justify-content: center; margin-top: 24px;
}
.members-join-text { font-size: .88rem; color: var(--muted); }
.members-join-text strong { color: var(--g2); }

/* ═══════════════════════════════════════════════════════════════════════════
   #21 SCROLL HORIZONTAL ACTIVITÉS (mobile)
═══════════════════════════════════════════════════════════════════════════ */
@media(max-width:768px) {
  .feed-grid.hscroll-mobile {
    display: flex !important; overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px; padding-bottom: 8px;
    scrollbar-width: none;
  }
  .feed-grid.hscroll-mobile::-webkit-scrollbar { display: none; }
  .feed-grid.hscroll-mobile .feed-card {
    min-width: 280px; scroll-snap-align: start;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   #24 INDICATEUR SECTION ACTIVE (nav)
═══════════════════════════════════════════════════════════════════════════ */
.nav-link.nav-section-active {
  background: rgba(255,255,255,.22) !important;
  color: #fff !important;
}
.navbar.scrolled .nav-link.nav-section-active {
  background: var(--off) !important;
  color: var(--g2) !important;
  font-weight: 700 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   #25 INFOGRAPHIE CULTURELLE HAÏTIENNE
═══════════════════════════════════════════════════════════════════════════ */
.infographie-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #003F87 0%, #002b5e 40%, #8B0020 100%);
  position: relative; overflow: hidden;
  color: #fff;
}
.infographie-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.infographie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
@media (max-width: 640px) {
  .infographie-grid { grid-template-columns: repeat(2, 1fr); }
}
.info-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px; padding: 28px 20px; text-align: center;
  backdrop-filter: blur(10px); transition: var(--tr);
}
.info-card:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); }
.info-icon { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.info-stat { font-size: 2rem; font-weight: 900; color: var(--accent-lt); line-height: 1; margin-bottom: 4px; }
.info-label { font-size: .78rem; opacity: .82; line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════════════════════
   #26 FAQ ACCORDION
═══════════════════════════════════════════════════════════════════════════ */
.faq-section { padding: 80px 0; background: #fff; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--tr);
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-btn {
  width: 100%; text-align: left; padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-family: 'Poppins', sans-serif; font-size: .92rem; font-weight: 600; color: var(--text);
}
.faq-btn:hover { color: var(--g2); }
.faq-chevron {
  font-size: 1rem; color: var(--g2); flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
  color: var(--muted); font-size: .87rem; line-height: 1.7;
}
.faq-body-inner { padding: 0 22px 20px; }
.faq-item.open .faq-body { max-height: 300px; }

/* ═══════════════════════════════════════════════════════════════════════════
   #29 MÉTÉO WIDGET
═══════════════════════════════════════════════════════════════════════════ */
.meteo-widget {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 6px 14px;
  font-size: .8rem; font-weight: 600; color: #fff;
  backdrop-filter: blur(8px);
}
.meteo-widget .meteo-icon { font-size: 1rem; }
.meteo-widget .meteo-temp { font-size: .88rem; font-weight: 800; }
.meteo-hero-wrap {
  display: flex; justify-content: center; margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   #4 & #5  TYPOGRAPHIE EXPRESSIVE + COULEURS DRAPEAU
═══════════════════════════════════════════════════════════════════════════ */
.italic-accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.italic-accent-blue {
  font-family: 'Playfair Display', serif; font-style: italic; color: var(--hai-blue);
}
.italic-accent-red {
  font-family: 'Playfair Display', serif; font-style: italic; color: var(--hai-red);
}
.section-header h2 .highlight {
  background: linear-gradient(90deg, var(--g2), var(--g3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pillar-card.hai-blue-border { border-top: 4px solid var(--hai-blue) !important; }
.pillar-card.hai-red-border  { border-top: 4px solid var(--hai-red)  !important; }
.pillar-card.gold-border     { border-top: 4px solid var(--accent)   !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   #12  PARALLAX (hero amélioré)
═══════════════════════════════════════════════════════════════════════════ */
.hero-parallax-layer {
  position: absolute; inset: 0; pointer-events: none;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════════════════
   #30  GUIDE PDF — bouton téléchargeable
═══════════════════════════════════════════════════════════════════════════ */
.guide-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  background: linear-gradient(135deg, var(--hai-red), #ff4060);
  color: #fff; font-weight: 700; font-size: .88rem;
  border: none; cursor: pointer; transition: var(--tr);
  text-decoration: none; box-shadow: 0 4px 16px rgba(210,16,52,.3);
}
.guide-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(210,16,52,.45); }

/* ═══════════════════════════════════════════════════════════════════════════
   #28  404 ENHANCED
═══════════════════════════════════════════════════════════════════════════ */
.not-found-float {
  animation: float-404 3s ease-in-out infinite;
}
@keyframes float-404 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.not-found-stars {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.not-found-star {
  position: absolute; background: #fff; border-radius: 50%;
  animation: twinkle 2.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { opacity: .1; transform: scale(1); }
  50%      { opacity: .9; transform: scale(1.5); }
}

/* ═══════════════════════════════════════════════
   2026 VISUAL IMPROVEMENTS
═══════════════════════════════════════════════ */

/* #1 Hero text mobile fix */
.hero-intro { white-space: normal !important; }
.hero-sub { white-space: normal !important; }

/* #2 Animated gradient on hero values */
.hero-values {
  background: linear-gradient(90deg, #f9a825, #fdd835, #ffab00, #f9a825) !important;
  background-size: 300% 100% !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: ahh-gradient-shift 4s ease infinite !important;
}
@keyframes ahh-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* #4 3D hover on pillar cards */
.pillar-card {
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease !important;
}
.pillar-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg) !important;
  box-shadow: 0 20px 50px rgba(27,94,32,.18) !important;
}

/* #6 Team photo hover */
.team-card-full {
  transition: transform .35s ease, box-shadow .35s ease !important;
}
.team-card-full:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.15) !important;
}
.team-avatar-full {
  transition: transform .4s ease, box-shadow .4s ease !important;
}
.team-card-full:hover .team-avatar-full {
  transform: scale(1.06) !important;
  box-shadow: 0 0 24px rgba(27,94,32,.35) !important;
}

/* #7 Donation card pulse */
.donation-card.featured {
  animation: ahh-donation-pulse 2.5s ease-in-out infinite;
}
@keyframes ahh-donation-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(255,255,255,.15); }
  50% { box-shadow: 0 8px 30px rgba(255,255,255,.35), 0 0 0 6px rgba(255,255,255,.1); }
}

/* #8 Thicker scroll progress */
#scrollProgress {
  height: 4px !important;
  box-shadow: 0 0 8px rgba(27,94,32,.4);
}

/* #9 Scroll offset for anchors */
:target { scroll-margin-top: 100px; }
section[id] { scroll-margin-top: 100px; }

/* #11 Gallery hover */
.gallery-item img, .gallery-preview-grid img {
  transition: transform .5s cubic-bezier(.22,1,.36,1), filter .3s ease !important;
}
.gallery-item:hover img, .gallery-preview-grid div:hover img {
  transform: scale(1.08) !important;
  filter: brightness(1.1) !important;
}

/* #12 Bigger section titles */
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
}

/* #13 More padding between sections */
.pillars-section, .testimonials-section, .gallery-preview-section,
.timeline-section, .infographie-section {
  padding: 90px 0 !important;
}

/* #14 Alternating section backgrounds */
.gallery-preview-section { background: #f7faf7 !important; }

/* #15 Stronger card shadows */
.event-card { transition: transform .35s ease, box-shadow .35s ease !important; }
.event-card:hover { transform: translateY(-6px) !important; box-shadow: 0 16px 48px rgba(27,94,32,.16) !important; }

/* #16 Bigger WhatsApp button */
#whatsappBtn { width: 60px !important; height: 60px !important; }

/* #17 Mobile menu blur */
@media (max-width: 900px) {
  .nav-links { backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; }
}

/* #18 Countdown mobile fix */
@media (max-width: 640px) {
  .countdown-bar-inner { flex-wrap: wrap !important; justify-content: center !important; gap: 6px !important; }
  .countdown-event { font-size: .82rem !important; width: 100% !important; text-align: center !important; }
  .countdown-label { font-size: .72rem !important; }
}

/* #19 Why join cards hover */
.ahh-why-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.ahh-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(27,94,32,.12);
}

/* Timeline hover */
.timeline-item { transition: transform .3s ease !important; }
.timeline-item:hover { transform: translateX(6px) !important; }
.timeline-dot { transition: transform .3s ease, box-shadow .3s ease !important; }
.timeline-item:hover .timeline-dot { transform: scale(1.2) !important; box-shadow: 0 0 16px rgba(27,94,32,.3) !important; }

/* ═══ DARK MODE (floating toggle) ═══ */
.dark { --text:#e0e0e0; --off:#1a1a1a; --border:#333; --muted:#999; }
.dark body, .dark { background:#111 !important; color:#e0e0e0; }
.dark .navbar { background:#1a1a1a !important; }
.dark .navbar.scrolled { background:#1a1a1a !important; box-shadow:0 2px 10px rgba(0,0,0,.5) !important; }
.dark .navbar.scrolled .nav-link { color:#e0e0e0 !important; }
.dark .stats-grid, .dark .table-card, .dark .pillar-card, .dark .team-card-full, .dark .event-card { background:#1e1e1e !important; border-color:#333 !important; }
.dark .section-header h2 { color:#e0e0e0 !important; }
.dark .footer { background:#0a0a0a !important; }
.dark .donation { background:linear-gradient(135deg,#0a2e0a,#1b4a1b) !important; }
.dark a { color:#81c784; }
.dark .btn-primary { background:var(--g2); }
.dark input, .dark select, .dark textarea { background:#222; color:#e0e0e0; border-color:#444; }
#darkToggle { position:fixed; bottom:140px; right:22px; z-index:998; width:44px; height:44px; border-radius:50%; border:none; cursor:pointer; font-size:1.2rem; box-shadow:0 2px 10px rgba(0,0,0,.3); transition:.3s; background:#222; color:#fdd835; }
.dark #darkToggle { background:#fdd835; color:#222; }

/* #20 Footer — carte dans la colonne logo */
