/* ============================================================
   SIAAR 2026 — Design System Premium
   Fusion Kinerty × Structure 7 pages
   DESIGN_VARIANCE=9 | MOTION_INTENSITY=8
   Cormorant Garamond + Syne + Space Mono
   Font Awesome 6.5 — icônes vectorielles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Syne:wght@400;500;600;700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --green:      #2D7A2D;
  --gold:       #D4892A;
  --gold-light: #E8A84A;
  --gold-dim:   rgba(212,137,42,0.15);
  --blue:       #2B4FAB;
  --burgundy:   #7B1F3A;
  --cream:      #F7F3EC;
  --dark:       #141926;
  --mid:        #1A1A1A;
  --surface:    #141416;
  --surface-2:  #1E1E22;
  --border:     rgba(255,255,255,0.07);
  --text:       rgba(247,243,236,0.82);
  --muted:      rgba(247,243,236,0.45);

  --grad-africa: linear-gradient(90deg, #2D7A2D, #D4892A, #2B4FAB, #7B1F3A);
  --grad-hero:   linear-gradient(135deg, #141926 0%, #1C1430 30%, #101E3C 70%, #141926 100%);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Syne', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --topbar-h: 36px;
  --header-h: 72px;
  --radius:   4px;
  --radius-lg: 12px;
  --container: 1200px;
  --gap: clamp(1.5rem, 5vw, 4rem);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .cursor, .cursor-follower { display: none !important; }
  body { cursor: auto !important; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
@media (pointer: coarse) { body { cursor: auto; } }

/* ── CURSOR ──────────────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(212,137,42,0.5); border-radius: 50%;
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none; transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-expo), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hovering { transform: translate(-50%,-50%) scale(2); }
.cursor-follower.hovering { width: 60px; height: 60px; border-color: var(--gold); }

/* ── PROGRESS BAR ────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--grad-africa); background-size: 300% 100%;
  animation: gradShift 8s ease infinite;
  width: 0%; z-index: 10000; transition: width 0.1s linear;
}

/* ── NOISE ───────────────────────────────────────────────── */
.noise-overlay {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── TOPBAR ──────────────────────────────────────────────── */
#announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  background: linear-gradient(90deg, #2D7A2D 0%, #D4892A 35%, #2B4FAB 65%, #7B1F3A 100%);
  background-size: 300% 100%; animation: gradShift 8s ease infinite;
  color: #fff; font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; overflow: hidden;
}
#announcement-bar .ann-inner {
  height: var(--topbar-h); display: flex; align-items: center;
  justify-content: center; gap: 1.2rem; padding: 0 5%;
}
#announcement-bar .ann-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.85); animation: blink 1.5s ease infinite; flex-shrink: 0;
}
#announcement-bar .ann-text { white-space: nowrap; }
#announcement-bar a.ann-link {
  color: #fff; background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35); border-radius: 3px;
  padding: 2px 10px; white-space: nowrap; flex-shrink: 0; transition: background 0.25s;
}
#announcement-bar a.ann-link:hover { background: rgba(255,255,255,0.3); }
@media (max-width: 768px) {
  #announcement-bar .ann-inner { display: none; }
  #announcement-bar .ann-ticker-wrap {
    display: flex; align-items: center; height: var(--topbar-h); width: 100%;
  }
  #announcement-bar .ann-ticker-badge {
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; height: 100%; padding: 0 8px;
    background: rgba(0,0,0,0.25); font-size: 0.52rem;
    letter-spacing: 0.12em; font-weight: 700; white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  #announcement-bar .ann-ticker-zone {
    flex: 1; overflow: hidden; height: 100%;
    display: flex; align-items: center; position: relative;
  }
  #announcement-bar .ann-ticker-track {
    display: flex; align-items: center; white-space: nowrap;
    font-size: 0.6rem; letter-spacing: 0.07em;
    animation: tickerScroll 20s linear infinite; will-change: transform;
  }
  @keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  #announcement-bar .ann-ticker-track .t-item {
    padding: 0 2rem; display: inline-flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
  }
  #announcement-bar .ann-ticker-track .t-sep { color: rgba(255,255,255,0.35); margin: 0 0.2rem; }
  #announcement-bar .ann-ticker-link {
    display: flex; align-items: center; flex-shrink: 0; height: 100%; padding: 0 10px;
    background: rgba(255,255,255,0.15); border-left: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em;
    white-space: nowrap; text-decoration: none; transition: background 0.2s;
  }
  #announcement-bar .ann-dot { display: none; }
}
@media (min-width: 769px) { #announcement-bar .ann-ticker-wrap { display: none; } }

/* ── HEADER ──────────────────────────────────────────────── */
header {
  position: fixed; top: var(--topbar-h); left: 0; right: 0;
  z-index: 1100; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: top 0.35s var(--ease-expo), transform 0.4s var(--ease-expo), background 0.4s;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(13,13,13,0.7);
  border-bottom: 1px solid rgba(212,137,42,0.12);
}
header.hidden { transform: translateY(calc(-100% - var(--topbar-h))); }
header.scrolled { background: rgba(13,13,13,0.95); }
body.menu-open header { transform: none !important; }

.logo { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); }
.logo-img { height: 48px; width: auto; display: block; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6)); }
.logo-text .logo-name {
  font-size: 1.3rem; font-weight: 700;
  background: var(--grad-africa); background-size: 300%; animation: gradShift 8s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-text .logo-sub {
  font-family: var(--font-mono); font-size: 0.52rem;
  color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; display: block;
}

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(26,22,16,0.65); position: relative; padding-bottom: 4px; transition: color 0.3s;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease-expo);
}
nav a:hover { color: #FAF7F2; }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--gold); }
.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold) !important; padding: 8px 20px; border-radius: var(--radius);
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--dark) !important; }
.nav-cta::after { display: none !important; }

/* ── BURGER ──────────────────────────────────────────────── */
.burger {
  display: none; position: fixed;
  top: calc(var(--topbar-h) + 14px); right: 5%; z-index: 1300;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  border-radius: 8px; transition: background 0.25s;
}
.burger:hover { background: rgba(212,137,42,0.12); }
.burger.open  { background: rgba(212,137,42,0.15); }
.burger span {
  display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MENU OVERLAY ────────────────────────────────────────── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 1250;
  background: rgba(13,13,13,0.98); backdrop-filter: blur(16px);
  clip-path: inset(0 0 100% 0); transition: clip-path 0.65s cubic-bezier(0.16,1,0.3,1);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.8rem; padding-top: var(--topbar-h);
}
.menu-overlay.open { clip-path: inset(0 0 0 0); }
.menu-overlay a {
  font-family: var(--font-display); font-size: clamp(2.2rem, 8vw, 5rem);
  font-weight: 700; font-style: italic; color: #F7F3EC;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.3s;
}
.menu-overlay.open a { opacity: 1; transform: translateY(0); }
.menu-overlay a:hover { color: var(--gold); transform: translateX(8px); }
.menu-overlay .menu-num {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: rgba(212,137,42,0.6); font-style: normal;
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 9989;
  width: 44px; height: 44px;
  background: rgba(26,22,16,0.07); border: 1px solid rgba(26,22,16,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 1rem; cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s var(--ease-expo), background 0.3s;
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
#whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9990;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease-back), box-shadow 0.3s;
  animation: wa-pulse 3s ease-in-out infinite;
}
#whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
#whatsapp-float i { color: white; font-size: 1.6rem; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }
section { position: relative; }
.section-label {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
p { font-size: 1rem; line-height: 1.75; color: var(--text); }

.grad-text {
  background: var(--grad-africa); background-size: 300%; animation: gradShift 8s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--radius);
  border: none; cursor: pointer;
  position: relative; overflow: hidden; transition: transform 0.3s var(--ease-back);
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); transform: translateX(-101%);
  transition: transform 0.4s var(--ease-expo);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: #e8972f; }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(247,243,236,0.35); }
.btn-outline:hover { border-color: #FAF7F2; }
.btn-secondary { background: transparent; color: var(--cream); border: 1px solid rgba(247,243,236,0.25); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #3a9a3a; }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-child-anim { animation: staggerIn 0.6s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes staggerIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: #FFFFFF; border: 1px solid rgba(26,22,16,0.08);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform 0.4s var(--ease-expo), border-color 0.3s, box-shadow 0.4s;
}
.card:hover {
  transform: translateY(-6px); border-color: rgba(212,137,42,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,137,42,0.1);
}

/* ── HERO PAGE ───────────────────────────────────────────── */
.hero-page {
  min-height: 50vh; display: flex; align-items: center;
  padding: calc(var(--topbar-h) + var(--header-h) + 3rem) 5% 4rem;
  position: relative; background: var(--grad-hero);
}
.hero-page::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(212,137,42,0.08), transparent 60%);
  pointer-events: none;
}

/* ── SERVICE ICONS ───────────────────────────────────────── */
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.25rem; flex-shrink: 0;
}
.ic-g { background: rgba(45,122,45,0.18);   color: #5DBE5D; }
.ic-b { background: rgba(43,79,171,0.18);   color: #7A9EE8; }
.ic-o { background: rgba(212,137,42,0.18);  color: #E8A84A; }
.ic-r { background: rgba(123,31,58,0.18);   color: #C45A7A; }
.ic-t { background: rgba(0,150,136,0.18);   color: #4DB6AC; }
.ic-p { background: rgba(103,58,183,0.18);  color: #CE93D8; }
.info-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(212,137,42,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gold); flex-shrink: 0;
}

/* ── STATS ───────────────────────────────────────────────── */
.stat-number {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; line-height: 1;
  background: var(--grad-africa); background-size: 300%; animation: gradShift 8s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; margin-top: 0.6rem;
}
.stats-bento {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(26,22,16,0.08); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-cell {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(26,22,16,0.07); transition: background 0.3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(212,137,42,0.04); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,104,10,0.3), transparent);
  margin: 0 5%;
}

/* ── COUNTDOWN ───────────────────────────────────────────── */
.countdown-item .num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; line-height: 1;
  color: var(--cream); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 0.6rem 0; display: block; min-width: 80px; text-align: center;
}
.countdown-item .lbl {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em;
  color: var(--muted); text-transform: uppercase; margin-top: 0.5rem; display: block; text-align: center;
}

/* ── PROGRAMME ───────────────────────────────────────────── */
.program-day {
  border: 1px solid rgba(26,22,16,0.08); border-radius: var(--radius-lg); overflow: hidden; background:#FFFFFF;
  transition: transform 0.3s var(--ease-expo), border-color 0.3s;
}
.program-day:hover { transform: translateY(-6px); border-color: rgba(212,137,42,0.3); }
.day-header { padding: 1.2rem; text-align: center; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: #FAF7F2; }
.day-header .dn { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; display: block; line-height: 1; margin-bottom: 4px; }
.d1 .day-header { background: rgba(45,122,45,0.2); }
.d2 .day-header { background: rgba(212,137,42,0.2); }
.d3 .day-header { background: rgba(43,79,171,0.2); }
.d4 .day-header { background: rgba(123,31,58,0.2); }
.d5 .day-header { background: rgba(0,150,136,0.15); }
.day-body { padding: 1.2rem; }
.day-act {
  font-size: 0.78rem; color: var(--muted); padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26,22,16,0.06); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.day-act:last-child { border-bottom: none; }
.day-act i { color: var(--gold); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }
.day-act strong { color: var(--cream); display: block; font-size: 0.72rem; margin-bottom: 2px; }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--green), var(--gold), var(--blue), var(--burgundy));
}
.timeline-item { position: relative; margin-bottom: 2.8rem; }
.timeline-dot {
  position: absolute; left: -2.65rem; top: 5px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--gold); border: 2px solid var(--page-bg);
  box-shadow: 0 0 0 3px rgba(212,137,42,0.2);
}
.timeline-year { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.35rem; text-transform: uppercase; }
.timeline-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; color: #FAF7F2; }
.timeline-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-grid { columns: 3; column-gap: 2px; margin-bottom: 5rem; }
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }
.gallery-item { break-inside: avoid; margin-bottom: 2px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.82) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.gallery-item.hidden { display: none; }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; background: rgba(13,13,13,0.97);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; border-radius: var(--radius);
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); color: var(--cream); font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; border-radius: var(--radius);
}
.lightbox-nav:hover { background: var(--gold); color: var(--dark); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--muted); text-transform: uppercase; white-space: nowrap;
}

/* ── FILTER PILLS ────────────────────────────────────────── */
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2rem 0; }
.filter-btn {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border: 1px solid rgba(26,22,16,0.18);
  background: transparent; color: rgba(26,22,16,0.45); cursor: pointer;
  transition: all 0.3s; border-radius: var(--radius);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ── INFO BOX ────────────────────────────────────────────── */
.info-box {
  padding: 1.5rem 2rem; border-radius: 10px;
  background: rgba(184,104,10,0.05); border-left: 3px solid var(--gold);
  display: flex; align-items: flex-start; gap: 1rem;
}
.info-box i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.info-box p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  margin: 0 5% 6rem; border-radius: 20px;
  background: linear-gradient(135deg, rgba(26,92,26,0.06), rgba(27,62,154,0.06));
  border: 1px solid rgba(184,104,10,0.15); padding: 6rem 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,137,42,0.12), transparent 60%);
}
.cta-banner h2 { position: relative; margin-bottom: 1rem; }
.cta-banner p { max-width: 580px; margin: 0 auto 2.5rem; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; }

/* ── EVENT POSTER CARD ───────────────────────────────────── */
.event-poster {
  background: #FFFFFF; border: 1px solid rgba(184,104,10,0.2);
  border-radius: 16px; padding: 2.5rem; box-shadow:0 8px 40px rgba(26,22,16,0.10);
  max-width: 380px; width: 100%; position: relative; overflow: hidden;
}
.event-poster::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-africa); background-size: 300%; animation: gradShift 8s ease infinite;
}
.poster-logo { margin-bottom: 1.5rem; text-align: center; }
.poster-divider {
  height: 1px; background: linear-gradient(90deg, transparent, rgba(184,104,10,0.3), transparent);
  margin: 1.2rem 0;
}
.poster-info-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.poster-info-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.poster-info-value { font-size: 0.9rem; color: var(--cream); font-weight: 700; }
.poster-cta { margin-top: 1.5rem; }
.poster-cta a {
  display: block; text-align: center; background: var(--gold); color: var(--dark);
  padding: 13px; border-radius: 8px; font-family: var(--font-ui); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease-back);
}
.poster-cta a:hover { background: #e8972f; transform: translateY(-2px); }

/* ── SOCIAL LINKS ────────────────────────────────────────── */
.social-links-full { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.social-links-full a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(247,243,236,0.60); border: 1px solid rgba(247,243,236,0.12);
  transition: all 0.3s var(--ease-expo);
}
.social-links-full a:hover { transform: translateY(-4px) scale(1.12); }
.social-facebook:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-instagram:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; color: #fff; }
.social-twitter:hover   { background: #000; border-color: #000; color: #fff; }
.social-telegram:hover  { background: #0088cc; border-color: #0088cc; color: #fff; }
.social-youtube:hover   { background: #FF0000; border-color: #FF0000; color: #fff; }
.social-linkedin:hover  { background: #0077B5; border-color: #0077B5; color: #fff; }
.social-whatsapp-btn:hover { background: #25D366; border-color: #25D366; color: #fff; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: #1A1610; border-top: 1px solid rgba(212,137,42,0.15); padding: 5rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.logo-img-footer { height: 60px; width: auto; display: block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(247,243,236,0.50); line-height: 1.7; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #D4892A; margin-bottom: 1.2rem; }
.footer-col a { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(247,243,236,0.45); margin-bottom: 0.6rem; transition: color 0.3s, transform 0.3s; }
.footer-col a:hover { color: #F7F3EC; transform: translateX(4px); }
.footer-col a i { color: #D4892A; font-size: 0.85rem; flex-shrink: 0; }
.footer-col a .fa-whatsapp { color: #25D366; }
.footer-bottom {
  border-top: 1px solid rgba(247,243,236,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: rgba(247,243,236,0.30);
}
.footer-bottom a { color: rgba(247,243,236,0.30); transition: color 0.3s; }
.footer-bottom a:hover { color: #D4892A; }

/* ── FORM ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(26,22,16,0.04); border: 1px solid rgba(26,22,16,0.15);
  border-radius: var(--radius); color: #1A1610; font-family: var(--font-ui); font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); background: rgba(26,22,16,0.06); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bento { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.05); }
}
@media (max-width: 900px) {
  nav { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  #whatsapp-float i { font-size: 1.4rem; }
  #back-top { right: 20px; }
  .cta-banner { padding: 3rem 1.5rem; }
}

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes wordReveal { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,-30px) scale(1.1); } }

/* ══════════════════════════════════════════════════════
   i18n — LANG SWITCHER STYLES
══════════════════════════════════════════════════════ */

/* ── Desktop switcher ── */
.lang-switcher {
  position: relative;
}
.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: rgba(26,22,16,0.05); border: 1px solid rgba(26,22,16,0.12);
  border-radius: var(--radius); padding: 6px 12px;
  color: rgba(26,22,16,0.75); cursor: pointer; font-family: var(--font-ui);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  transition: background 0.25s, border-color 0.25s;
}
.lang-current:hover { background: rgba(212,137,42,0.1); border-color: rgba(212,137,42,0.3); }
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-code { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; }
.lang-arrow { font-size: 0.55rem; color: var(--muted); transition: transform 0.25s; }
.lang-current[aria-expanded="true"] .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #111113; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; min-width: 160px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity 0.25s var(--ease-expo), transform 0.25s var(--ease-expo);
  z-index: 2000; overflow: hidden;
}
.lang-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }

.lang-btn {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 14px;
  background: transparent; border: none; color: var(--muted);
  cursor: pointer; font-family: var(--font-ui); font-size: 0.85rem;
  transition: background 0.2s, color 0.2s; text-align: left;
}
.lang-btn:hover { background: rgba(255,255,255,0.04); color: #FAF7F2; }
.lang-btn.active { color: var(--gold); background: rgba(184,104,10,0.05); }
.lang-name { flex: 1; }
.lang-check { font-size: 0.65rem; color: var(--gold); margin-left: auto; }

/* ── Mobile overlay switcher ── */
.menu-lang-switcher {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding: 1.5rem 2rem; margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.menu-lang-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12); background: transparent;
  color: var(--muted); cursor: pointer; font-family: var(--font-ui);
  font-size: 0.8rem; transition: all 0.25s;
}
.menu-lang-btn:hover { border-color: var(--gold); color: #FAF7F2; }
.menu-lang-btn.active { background: rgba(212,137,42,0.12); border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════
   RTL — Arabic support
══════════════════════════════════════════════════════ */
.lang-ar, .lang-ar * {
  font-family: 'Cairo', var(--font-ui), sans-serif !important;
}
.lang-ar { text-align: right; }
.lang-ar .section-label::before { display: none; }
.lang-ar .section-label.center::before { display: none; }
.lang-ar .footer-col a { flex-direction: row-reverse; }
.lang-ar .svc-card { text-align: right; }
.lang-ar .card { text-align: right; }
.lang-ar .btn { flex-direction: row-reverse; }
.lang-ar .poster-info-row { flex-direction: row-reverse; }
.lang-ar .day-act { flex-direction: row-reverse; }
.lang-ar .info-box { flex-direction: row-reverse; }
.lang-ar .timeline-entry { direction: rtl; }
.lang-ar .hero-title { text-align: right; }
.lang-ar .hero-actions { flex-direction: row-reverse; justify-content: flex-end; }
.lang-ar .countries-strip { flex-direction: row-reverse; }
.lang-ar .hero-sub { text-align: right; }
.lang-ar .ann-inner { flex-direction: row-reverse; }
.lang-ar .step { text-align: right; }
.lang-ar .lang-dropdown { right: auto; left: 0; }
.lang-ar .stat-label { direction: rtl; }
.lang-ar .form-label { text-align: right; direction: rtl; }
.lang-ar input, .lang-ar textarea, .lang-ar select { text-align: right; direction: rtl; }


/* ── Kinerty Credit ─────────────────── */
.kinerty-credit {
  text-align: center;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(247,243,236,0.06);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(247,243,236,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.kinerty-credit a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.kinerty-credit a:hover { opacity: 1; }

/* ============================================================
   SIAAR 2026 — Thème Ivoire Premium
   Surcharges propres sur base originale intacte
   Auteur : SIAAR Design v4
   ============================================================ */

/* ── 1. PALETTE IVOIRE — nouvelles variables ──────────────── */
:root {
  --page-bg:    #FAF7F2;   /* fond principal ivoire */
  /* Remplacer les valeurs sombres originales */
  --dark:       #FAF7F2;   /* fond pages = ivoire */
  --mid:        #F2EDE4;   /* fond sections alternées */
  --surface:    #FFFFFF;   /* surface cards */
  --surface-2:  #F5F0E8;   /* surface hover */
  --cream:      #1A1610;   /* texte principal sombre sur fond clair */
  --text:       rgba(26,22,16,0.70);
  --muted:      rgba(26,22,16,0.45);
  --border:     rgba(26,22,16,0.08);
  --page-mid:   #F2EDE4;   /* sections alternées */
  --page-card:  #FFFFFF;   /* fond des cards */
  --ink:        #1A1610;   /* texte principal sombre */
  --ink-70:     rgba(26,22,16,0.70);
  --ink-45:     rgba(26,22,16,0.45);
  --ink-08:     rgba(26,22,16,0.08);
  --ink-15:     rgba(26,22,16,0.15);

  /* Couleurs SIAAR renforcées pour fond clair */
  --gold:       #B8680A;
  --gold-light: #D4892A;
  --gold-dim:   rgba(184,104,10,0.12);
  --green:      #1A5C1A;
  --blue:       #1B3E9A;
  --burgundy:   #6B1530;
}

/* ── 2. FOND GÉNÉRAL ──────────────────────────────────────── */
body {
  background: var(--page-bg) !important;
  color: var(--ink) !important;
  cursor: auto;
}
/* Curseur custom désactivé sur fond clair (lisibilité) */
.cursor, .cursor-follower { display: none !important; }

/* ── 3. HEADER — fond ivoire translucide ─────────────────── */
header {
  background: rgba(250,247,242,0.92) !important;
  border-bottom: 1px solid rgba(184,104,10,0.15) !important;
  box-shadow: 0 2px 24px rgba(26,22,16,0.07);
}
header.scrolled { background: rgba(250,247,242,0.98) !important; }

/* Logo image — pas de filtre sur fond clair */
.logo-img { filter: none !important; }

/* Nav links lisibles sur fond clair */
nav a { color: var(--ink-70) !important; }
nav a:hover, nav a.active { color: var(--ink) !important; }
nav a.active { color: var(--gold) !important; }

/* Burger visible sur fond clair */
.burger span { background: var(--ink) !important; }

/* Lang switcher */
.lang-current {
  background: rgba(26,22,16,0.05) !important;
  border-color: var(--ink-15) !important;
  color: var(--ink) !important;
}
.lang-arrow { color: var(--ink-45) !important; }

/* ── 4. MENU OVERLAY — fond sombre préservé ──────────────── */
/* Le menu garde son fond noir — c'est intentionnel et premium */
.menu-overlay { background: rgba(20,16,12,0.98) !important; }
.menu-overlay a { color: #F7F3EC !important; }
.menu-overlay a:hover { color: var(--gold-light) !important; }
.menu-lang-switcher { border-top-color: rgba(255,255,255,0.1) !important; }
.menu-lang-btn { color: rgba(247,243,236,0.6) !important; border-color: rgba(255,255,255,0.12) !important; }
.menu-lang-btn:hover { color: #F7F3EC !important; }

/* ── 5. TEXTE GLOBAL ──────────────────────────────────────── */
h1, h2, h3 { color: var(--ink) !important; }
p { color: var(--ink-70) !important; }
.section-label { color: var(--gold) !important; }
.section-label::before { background: var(--gold) !important; }

/* ── 6. CARDS & SURFACES ──────────────────────────────────── */
.card {
  background: var(--page-card) !important;
  border-color: var(--ink-08) !important;
  box-shadow: 0 2px 16px rgba(26,22,16,0.06);
}
.card:hover {
  border-color: rgba(184,104,10,0.25) !important;
  box-shadow: 0 20px 50px rgba(26,22,16,0.12) !important;
}
.card h3, .card h2, .card p { color: inherit !important; }

/* ── 7. SECTIONS ──────────────────────────────────────────── */
section { background: var(--page-bg); }
#services-section,
#transport-section,
section.bg-mid { background: var(--page-mid) !important; }

/* ── 8. STATS ─────────────────────────────────────────────── */
.stats-bento {
  background: var(--page-card);
  border-color: var(--ink-08) !important;
  box-shadow: 0 4px 24px rgba(26,22,16,0.07);
}
.stat-cell { border-right-color: var(--ink-08) !important; }
.stat-cell:hover { background: rgba(184,104,10,0.04) !important; }
.stat-label { color: var(--ink-45) !important; }

/* ── 9. COUNTDOWN — garde son fond sombre (effet premium) ─── */
#countdown-section {
  background: linear-gradient(135deg, #1A1610, #201C14) !important;
}
#countdown-section h2,
#countdown-section p,
#countdown-section .section-label { color: #F7F3EC !important; }
#countdown-section .section-label { color: var(--gold-light) !important; }
.countdown-item .num {
  color: #F7F3EC !important;
  background: rgba(247,243,236,0.06) !important;
  border-color: rgba(247,243,236,0.10) !important;
}
.countdown-item .lbl { color: rgba(247,243,236,0.45) !important; }

/* ── 10. PROGRAMME ────────────────────────────────────────── */
.program-day {
  background: var(--page-card) !important;
  border-color: var(--ink-08) !important;
  box-shadow: 0 2px 12px rgba(26,22,16,0.05);
}
.program-day:hover { border-color: rgba(184,104,10,0.3) !important; }
.d1 .day-header { background: #1A5C1A !important; color: #fff !important; }
.d2 .day-header { background: #B8680A !important; color: #fff !important; }
.d3 .day-header { background: #1B3E9A !important; color: #fff !important; }
.d4 .day-header { background: #6B1530 !important; color: #fff !important; }
.d5 .day-header { background: #006B60 !important; color: #fff !important; }
.day-header, .day-header .dn { color: #fff !important; }
.day-act { border-bottom-color: var(--ink-08) !important; color: var(--ink-70) !important; }
.day-act strong { color: var(--ink) !important; }

/* ── 11. TIMELINE ─────────────────────────────────────────── */
.timeline-dot { border-color: var(--page-bg) !important; }
.timeline-title { color: var(--ink) !important; }
.timeline-desc { color: var(--ink-45) !important; }

/* ── 12. IMAGES — correction brightness ──────────────────── */
/* Les images assombries pour fond noir reprennent leur vraie luminosité */
img[style*="brightness"] { filter: none !important; }
.about-image-wrap img { filter: contrast(1.02) !important; }
/* Images dans sections avec fond sombre : on les ré-assombrit légèrement */
[style*="background:linear-gradient(135deg,#1A"] img,
[style*="background:linear-gradient(135deg, #1A"] img { filter: brightness(0.85) !important; }

/* ── 13. HERO PAGES (sous-pages) ──────────────────────────── */
.hero-page {
  background: linear-gradient(135deg, #FAF7F2, #F2EDE4) !important;
  border-bottom: 1px solid rgba(184,104,10,0.12);
}
.hero-page h1, .hero-page h2, .hero-page h3 { color: var(--ink) !important; }
.hero-page p { color: var(--ink-70) !important; }
.hero-page .section-label { color: var(--gold) !important; }
.hero-page::after {
  background: radial-gradient(ellipse at 50% 120%, rgba(184,104,10,0.06), transparent 60%) !important;
}

/* ── 14. EVENT POSTER (hero index) ──────────────────────────*/
.event-poster {
  background: #FFFFFF !important;
  border-color: rgba(184,104,10,0.2) !important;
  box-shadow: 0 8px 40px rgba(26,22,16,0.12);
}
.poster-info-label { color: var(--ink-45) !important; }
.poster-info-value { color: var(--ink) !important; }
.poster-divider { background: linear-gradient(90deg, transparent, rgba(184,104,10,0.3), transparent) !important; }

/* ── 15. CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(26,92,26,0.06), rgba(27,62,154,0.06)) !important;
  border-color: rgba(184,104,10,0.15) !important;
  box-shadow: 0 8px 40px rgba(26,22,16,0.07);
}
.cta-banner h2 { color: var(--ink) !important; }
.cta-banner p { color: var(--ink-70) !important; }

/* ── 16. BOUTONS ─────────────────────────────────────────── */
.btn-primary { background: var(--gold) !important; color: #FAF7F2 !important; }
.btn-primary:hover { background: var(--gold-light) !important; }
.btn-outline { color: var(--ink) !important; border-color: var(--ink-15) !important; }
.btn-outline:hover { border-color: var(--gold) !important; color: var(--gold) !important; }
.btn-secondary { color: var(--ink-70) !important; border-color: var(--ink-15) !important; }

/* ── 17. FILTER PILLS (galerie) ──────────────────────────── */
.filter-btn { border-color: var(--ink-15) !important; color: var(--ink-45) !important; }
.filter-btn:hover, .filter-btn.active { background: var(--gold) !important; border-color: var(--gold) !important; color: #FAF7F2 !important; }

/* ── 18. INFO BOX ────────────────────────────────────────── */
.info-box { background: rgba(184,104,10,0.05) !important; }
.info-box p { color: var(--ink-70) !important; }

/* ── 19. FORMULAIRES ─────────────────────────────────────── */
.form-input, .form-select, .form-textarea {
  background: rgba(26,22,16,0.04) !important;
  border-color: var(--ink-15) !important;
  color: var(--ink) !important;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-45) !important; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold) !important;
  background: rgba(26,22,16,0.06) !important;
}
.form-label { color: var(--ink-45) !important; }

/* ── 20. FOOTER — garde son fond sombre ─────────────────── */
footer {
  background: #1A1610 !important;
  border-top-color: rgba(184,104,10,0.2) !important;
}
footer * { /* reset toute couleur héritée du body light */
  --cream: #F7F3EC;
  --muted: rgba(247,243,236,0.45);
}
.footer-brand p { color: rgba(247,243,236,0.5) !important; }
.footer-col h4 { color: var(--gold-light) !important; }
.footer-col a { color: rgba(247,243,236,0.45) !important; }
.footer-col a:hover { color: #F7F3EC !important; }
.footer-col a i { color: var(--gold-light) !important; }
.footer-bottom { 
  border-top-color: rgba(247,243,236,0.08) !important;
  color: rgba(247,243,236,0.3) !important;
}
.footer-bottom a { color: rgba(247,243,236,0.3) !important; }
.footer-bottom a:hover { color: var(--gold-light) !important; }
.logo-img-footer { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)) !important; }
.kinerty-credit { background: rgba(0,0,0,0.2) !important; color: rgba(247,243,236,0.25) !important; }
.social-links-full a { color: rgba(247,243,236,0.6) !important; border-color: rgba(247,243,236,0.12) !important; }

/* ── 21. BACK-TO-TOP ─────────────────────────────────────── */
#back-top {
  background: rgba(26,22,16,0.08) !important;
  border-color: var(--ink-15) !important;
  color: var(--ink) !important;
}
#back-top:hover { background: var(--gold) !important; color: #FAF7F2 !important; }

/* ── 22. GALERIE ─────────────────────────────────────────── */
/* Assurer que les images de galerie sont visibles */
.gallery-item img { filter: none !important; }
.gallery-item-overlay { background: linear-gradient(to top, rgba(26,22,16,0.82) 0%, transparent 55%) !important; }
.gallery-item-label { color: var(--gold-light) !important; }

/* ── 23. SECTIONS AJOUTÉES (pays, staff, tarifs, newsletter) */
/* Sections claires */
#pays-section,
#staff-section { background: var(--page-bg); }
#pays-section [style*="rgba(255,255,255"] {
  background: var(--page-card) !important;
  border-color: var(--ink-08) !important;
}

/* Sections newsletter — fond sombre préservé */
section[style*="#1A1610"] h2,
section[style*="#1A1610"] p,
section[style*="#1A1610"] .section-label { color: #F7F3EC !important; }
section[style*="#1A1610"] .section-label { color: var(--gold-light) !important; }
section[style*="#1A1610"] input[type="email"] {
  background: rgba(247,243,236,0.07) !important;
  border-color: rgba(247,243,236,0.18) !important;
  color: #F7F3EC !important;
}
section[style*="#1A1610"] input::placeholder { color: rgba(247,243,236,0.4) !important; }
section[style*="#1A1610"] button { background: var(--gold-light) !important; color: #FAF7F2 !important; }
section[style*="#1A1610"] p { color: rgba(247,243,236,0.6) !important; }

/* ── 24. SERVICE CARDS (index) ──────────────────────────── */
.svc-card {
  background: var(--page-card) !important;
  border-color: var(--ink-08) !important;
  box-shadow: 0 2px 12px rgba(26,22,16,0.05);
}
.svc-card:hover { border-color: rgba(184,104,10,0.3) !important; box-shadow: 0 24px 60px rgba(26,22,16,0.12) !important; }
.svc-num { color: var(--ink-45) !important; }
.svc-icon.ic-g { background: rgba(26,92,26,0.10) !important; color: #1A5C1A !important; }
.svc-icon.ic-b { background: rgba(27,62,154,0.10) !important; color: #1B3E9A !important; }
.svc-icon.ic-o { background: rgba(184,104,10,0.10) !important; color: #B8680A !important; }
.svc-icon.ic-r { background: rgba(107,21,48,0.10) !important; color: #6B1530 !important; }
.svc-icon.ic-t { background: rgba(0,107,96,0.10) !important; color: #006B60 !important; }
.svc-icon.ic-p { background: rgba(90,40,160,0.10) !important; color: #5A28A0 !important; }

/* ── 25. TRANSPORT CARDS (index) ─────────────────────────── */
.transport-card {
  background: var(--page-card) !important;
  box-shadow: 0 2px 12px rgba(26,22,16,0.05) !important;
}
.transport-card:hover { box-shadow: 0 20px 50px rgba(26,22,16,0.10) !important; }
.tc-gold { border-color: rgba(184,104,10,0.3) !important; }
.tc-green { border-color: rgba(26,92,26,0.3) !important; }
.tc-blue { border-color: rgba(27,62,154,0.3) !important; }
.tc-burg { border-color: rgba(107,21,48,0.3) !important; }

/* ── 26. NOISE OVERLAY — invisible sur fond clair ────────── */
.noise-overlay { opacity: 0 !important; }

/* ── 27. DIVIDER ─────────────────────────────────────────── */
.divider { background: linear-gradient(90deg, transparent, rgba(184,104,10,0.3), transparent) !important; }

/* ── 28. LANG DROPDOWN ──────────────────────────────────── */
.lang-dropdown {
  background: #FFFFFF !important;
  border-color: var(--ink-08) !important;
  box-shadow: 0 20px 60px rgba(26,22,16,0.15) !important;
}
.lang-btn { color: var(--ink-70) !important; }
.lang-btn:hover { background: rgba(26,22,16,0.04) !important; color: var(--ink) !important; }
.lang-btn.active { color: var(--gold) !important; background: rgba(184,104,10,0.06) !important; }

/* ── 29. RESPONSIVE fixes nouvelles sections ─────────────── */
@media (max-width: 768px) {
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 500px) {
  div[style*="grid-template-columns:repeat(auto-fill"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── 30. LIGHTBOX — garde fond sombre (comportement normal) ─ */
.lightbox { background: rgba(20,16,10,0.97) !important; }
.lightbox-close, .lightbox-nav {
  background: rgba(247,243,236,0.10) !important;
  border-color: rgba(247,243,236,0.18) !important;
  color: #F7F3EC !important;
}
.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--gold) !important; color: #FAF7F2 !important;
}


/* ============================================================
   SIAAR v5 — Partenaires, Hero, Footer corrections
   ============================================================ */

/* ── HERO — fond vivant ────────────────────────────────────── */
#hero {
  background: #FAF7F2;
}
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(27,62,154,0.08), transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(26,92,26,0.06), transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(184,104,10,0.05), transparent 50%);
  pointer-events: none;
}
/* Motif géométrique africain en arrière-plan */
#hero .hero-bg-layers::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 38px,
      rgba(184,104,10,0.018) 38px,
      rgba(184,104,10,0.018) 39px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 38px,
      rgba(27,62,154,0.018) 38px,
      rgba(27,62,154,0.018) 39px
    );
  pointer-events: none;
}

/* ── SVCARDS — padding fix ─────────────────────────────────── */
.svc-card { padding: 2.5rem 2rem !important; }
.services-bento { gap: 1.5rem !important; }

/* ── PARTENAIRES — section logos ───────────────────────────── */
.partners-section {
  padding: 6rem 5%;
  background: var(--page-mid);
  border-top: 1px solid rgba(26,22,16,0.07);
  border-bottom: 1px solid rgba(26,22,16,0.07);
  overflow: hidden;
}
.partners-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: partnersScroll 40s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
.partners-track-2 {
  animation-direction: reverse;
  animation-duration: 45s;
}
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid rgba(26,22,16,0.07);
  border-radius: 10px;
  padding: 1rem 1.6rem;
  min-width: 140px;
  height: 80px;
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(26,22,16,0.05);
}
.partner-logo-item:hover {
  border-color: rgba(184,104,10,0.3);
  box-shadow: 0 8px 24px rgba(26,22,16,0.10);
  transform: translateY(-3px);
}
.partner-logo-item img {
  max-height: 52px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.partner-logo-item:hover img { filter: grayscale(0%); }

/* ── FOOTER COMPLET — corrections ──────────────────────────── */
footer {
  background: #1A1610 !important;
  padding: 5rem 5% 0 !important; /* 0 bottom — géré par footer-bottom */
}

/* Tous les textes footer en valeurs absolues claires */
footer,
footer p,
footer span,
footer h4,
footer a,
footer div { color: rgba(247,243,236,0.5); }

footer h4 {
  color: #D4892A !important;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem !important;
}
footer .footer-brand p { color: rgba(247,243,236,0.50) !important; }
footer .footer-col a {
  color: rgba(247,243,236,0.45) !important;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; margin-bottom: 0.6rem;
  transition: color 0.3s, transform 0.3s;
}
footer .footer-col a:hover { color: #F7F3EC !important; transform: translateX(4px); }
footer .footer-col a i { color: #D4892A !important; flex-shrink: 0; }
footer .footer-col a .fa-whatsapp { color: #25D366 !important; }
footer .footer-col a .fa-phone { color: #D4892A !important; }
/* Textes inline dans footer */
footer [style*="rgba(26,22,16"] { color: rgba(247,243,236,0.5) !important; }
footer [style*="#1A1610"] { color: rgba(247,243,236,0.9) !important; }
/* Carte FIARA */
footer .fiara-card {
  background: rgba(212,137,42,0.08) !important;
  border-color: rgba(212,137,42,0.25) !important;
}
footer .fiara-card div { color: rgba(247,243,236,0.7) !important; }
/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(247,243,236,0.08) !important;
  padding: 1.2rem 0 1.2rem !important;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(247,243,236,0.30) !important;
}
.footer-bottom * { color: rgba(247,243,236,0.30) !important; }
.footer-bottom a:hover { color: #D4892A !important; }
/* Kinerty intégré dans footer-bottom */
.kinerty-credit {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(247,243,236,0.22) !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
.kinerty-credit a { color: rgba(247,243,236,0.22) !important; }
.kinerty-credit a:hover { color: #D4892A !important; }

/* Social links footer */
footer .social-links-full a {
  color: rgba(247,243,236,0.55) !important;
  border-color: rgba(247,243,236,0.12) !important;
}

/* Logo footer sans filtre (logo déjà bien sur fond sombre) */
.logo-img-footer { filter: none !important; }

