/* ============================================================
   Radio Réveil FM 100 MHz — Style principal v3
   Design moderne inspiré EMCI TV + RadioCast + Mix unique
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  /* Couleurs */
  --dark:         #060a14;
  --dark-2:       #0a1020;
  --dark-3:       #10182c;
  --dark-4:       #1a2540;
  --blue:         #0ea5e9;
  --blue-2:       #38bdf8;
  --blue-3:       #7dd3fc;
  --blue-dark:    #0284c7;
  --blue-xdark:   #0369a1;
  --gold:         #f59e0b;
  --gold-2:       #fbbf24;
  --gold-dark:    #d97706;
  --green:        #10b981;
  --green-dark:   #059669;
  --purple:       #8b5cf6;
  --purple-2:     #a78bfa;
  --red:          #ef4444;
  --orange:       #f97316;
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --gray-300:     #cbd5e1;
  --gray-400:     #94a3b8;
  --gray-500:     #64748b;
  --gray-700:     #334155;
  --gray-900:     #0f172a;
  --text:         #1e293b;
  --text-muted:   #64748b;

  /* Typo */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --live-h:     52px;
  --header-h:   72px;
  --offset-top: calc(var(--live-h) + var(--header-h));

  /* Effets */
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-pill: 9999px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 16px 40px rgba(0,0,0,.12);
  --shadow-xl:   0 24px 60px rgba(0,0,0,.16);
  --shadow-blue: 0 8px 32px rgba(14,165,233,.3);
  --shadow-gold: 0 8px 32px rgba(245,158,11,.3);
  --shadow-glow: 0 0 60px rgba(14,165,233,.15);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
  --trans-slow:  .5s cubic-bezier(.4,0,.2,1);
  --trans-spring: .6s cubic-bezier(.175,.885,.32,1.275);

  /* Glass */
  --glass-bg: rgba(255,255,255,.06);
  --glass-border: rgba(255,255,255,.1);
  --glass-bg-light: rgba(255,255,255,.75);
  --glass-border-light: rgba(255,255,255,.5);
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Selection ──────────────────────────────────────────────── */
::selection { background: rgba(14,165,233,.15); color: var(--dark); }

/* ── Utilitaires ────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 100px 0; position: relative; }
.section-sm{ padding: 64px 0; position: relative; }
.sr-only   { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* Wave section dividers */
.wave-divider {
  position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 2; pointer-events: none;
}
.wave-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 60px; }
.wave-divider-top {
  position: absolute; top: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 2; transform: rotate(180deg); pointer-events: none;
}
.wave-divider-top svg { position: relative; display: block; width: calc(100% + 1.3px); height: 60px; }

/* ── Typography ─────────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: var(--radius-pill);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.section-tag.gold   { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.2); color: var(--gold-dark); }
.section-tag.green  { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.2); color: var(--green-dark); }
.section-tag.purple { background: rgba(139,92,246,.08); border-color: rgba(139,92,246,.2); color: var(--purple); }
.section-tag.white  { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.9); backdrop-filter: blur(12px); }
.section-tag i { font-size: .6rem; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-title.light { color: var(--white); }
.section-title span  { color: var(--blue); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.75;
}
.section-sub.light { color: rgba(255,255,255,.55); }

.section-head { margin-bottom: 56px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 12px auto 0; }
.section-head.flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Texte gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2), #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-enseignement { background: #dbeafe; color: #1d4ed8; }
.badge-temoignage   { background: #d1fae5; color: #065f46; }
.badge-cantique     { background: #ede9fe; color: #5b21b6; }
.badge-emission     { background: #ffedd5; color: #9a3412; }
.badge-priere       { background: #fef3c7; color: #78350f; }
.badge-autre        { background: #f1f5f9; color: #475569; }

/* ── Boutons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(14,165,233,.4); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(245,158,11,.45); }

.btn-white {
  background: var(--white);
  color: var(--dark-2);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-outline-white {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.6); transform: translateY(-3px); }

.btn-ghost { color: var(--blue); padding: 8px 0; font-weight: 700; }
.btn-ghost:hover i { transform: translateX(5px); }
.btn-ghost i { transition: transform var(--trans-spring); }

.btn-lg { padding: 16px 36px; font-size: .95rem; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }

/* ── Live Bar ────────────────────────────────────────────────── */
.live-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--live-h);
  background: linear-gradient(90deg, #060818 0%, #0d1230 40%, #150a28 70%, #0a0f20 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
}
.live-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  background: var(--red);
  border-radius: var(--radius-pill);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--white);
  text-transform: uppercase;
  flex-shrink: 0;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--white);
  border-radius: 50%;
  animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.6); }
}

.live-station {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.live-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.live-freq {
  font-size: .72rem;
  color: var(--blue-2);
  font-weight: 500;
  flex-shrink: 0;
}
.live-sep { color: rgba(255,255,255,.2); }
.live-program-text {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.live-wave {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 20px;
  flex-shrink: 0;
}
.live-wave span {
  width: 2.5px;
  background: var(--blue-2);
  border-radius: 3px;
  animation: wave-bar 1s ease-in-out infinite;
}
.live-wave span:nth-child(1){ height: 35%; animation-delay: 0s; }
.live-wave span:nth-child(2){ height: 70%; animation-delay: .15s; }
.live-wave span:nth-child(3){ height: 100%; animation-delay: .3s; }
.live-wave span:nth-child(4){ height: 70%; animation-delay: .45s; }
.live-wave span:nth-child(5){ height: 35%; animation-delay: .6s; }
.live-wave.paused span { animation-play-state: paused; }
@keyframes wave-bar {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(.3); }
}

.live-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.live-play-btn {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(14,165,233,.35);
}
.live-play-btn:hover { background: linear-gradient(135deg, var(--blue-2), var(--blue)); transform: scale(1.1); box-shadow: 0 0 24px rgba(14,165,233,.5); }

.live-volume-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
}
.live-vol-btn {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.live-vol-btn:hover { color: var(--white); }
#lb-volume {
  width: 70px;
  height: 3px;
  appearance: none;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  transition: background var(--transition);
}
#lb-volume:hover { background: rgba(255,255,255,.25); }
#lb-volume::-webkit-slider-thumb {
  appearance: none;
  width: 12px; height: 12px;
  background: var(--blue-2);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(56,189,248,.4);
  transition: transform .15s ease;
}
#lb-volume::-webkit-slider-thumb:hover { transform: scale(1.2); }
#lb-volume::-moz-range-thumb {
  width: 12px; height: 12px;
  background: var(--blue-2);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(56,189,248,.4);
}

.live-status-text {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Now playing info */
.live-now {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.live-now-icon {
  color: var(--blue-2);
  font-size: .65rem;
  flex-shrink: 0;
  animation: live-now-pulse 2s ease-in-out infinite;
}
@keyframes live-now-pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}
.live-now span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Play button playing state */
.live-play-btn.is-playing {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 0 18px rgba(16,185,129,.4);
  animation: play-glow 2s ease-in-out infinite;
}
@keyframes play-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(16,185,129,.3); }
  50% { box-shadow: 0 0 24px rgba(16,185,129,.55); }
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--live-h);
  left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.1);
  background: rgba(255,255,255,.98);
  border-bottom-color: rgba(0,0,0,.06);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-2);
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(14,165,233,.2));
  border-radius: inherit;
}
.logo-text { line-height: 1.15; }
.logo-name { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--dark); letter-spacing: -.01em; }
.logo-tag  { display: block; font-size: .62rem; font-weight: 700; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; }

/* Nav */
.main-nav { flex: 1; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.nav-link .arrow { font-size: .6rem; transition: transform var(--transition); }
.main-nav > ul > li:hover .nav-link .arrow { transform: rotate(180deg); }
.nav-link:hover, .nav-link.active {
  color: var(--dark);
  background: var(--gray-100);
}
.nav-link.active { font-weight: 700; color: var(--blue); background: rgba(14,165,233,.07); }
.nav-link.nav-special {
  color: var(--green-dark);
  font-weight: 700;
}
.nav-link.nav-special:hover { background: rgba(16,185,129,.08); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  padding: 8px;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  color: var(--text);
  transition: var(--transition);
}
.dropdown li a i { color: var(--blue); width: 16px; text-align: center; font-size: .82rem; }
.dropdown li a:hover { background: var(--gray-50); color: var(--blue); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-donate {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #78350f;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(245,158,11,.3);
  animation: donate-glow 3s ease-in-out infinite;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-donate::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.3) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: donate-shine 3s ease-in-out infinite;
}
.btn-donate:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 24px rgba(245,158,11,.45); }
@keyframes donate-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(245,158,11,.3); }
  50%       { box-shadow: 0 6px 24px rgba(245,158,11,.5); }
}
@keyframes donate-shine {
  0%, 70%, 100% { transform: translateX(-100%); }
  30%           { transform: translateX(100%); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 36px;
}
.hamburger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 889; backdrop-filter: blur(2px); }

/* Body offset */
body { padding-top: var(--offset-top); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--offset-top));
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Particles container */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Fond animé multi-couches */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 90% 70% at 65% 40%, rgba(14,165,233,.15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 90% at 15% 85%, rgba(139,92,246,.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(245,158,11,.06) 0%, transparent 40%);
  animation: hero-bg-shift 12s ease-in-out infinite alternate;
}
@keyframes hero-bg-shift {
  0%   { opacity: .8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark-2), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  animation: grid-float 20s linear infinite;
}
@keyframes grid-float {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

/* ── Hero Slider ────────────────────────────────────────────── */
.hero-slides-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide-bg.active { opacity: 1; }
/* Overlay sombre sur l'image pour garder le texte lisible */
.hero-slide-bg[style*="background-image"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,10,20,.82) 0%, rgba(6,10,20,.55) 100%);
}

.hero-slides-content {
  position: relative;
  z-index: 3;
  padding: 80px 0 0;
  max-width: 660px;
}
.hero-slide-content {
  display: none;
  animation: slide-in .6s ease both;
}
.hero-slide-content.active { display: block; }
@keyframes slide-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Points de navigation */
.hero-dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--blue);
  width: 24px;
}
.hero-dot:hover { background: rgba(255,255,255,.7); }

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
  max-width: 660px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.25);
  border-radius: var(--radius-pill);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  animation: badge-fade-in .8s ease both;
}
@keyframes badge-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.03em;
  animation: hero-title-in .9s ease .15s both;
}
@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 .accent { display: block; }

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  animation: hero-desc-in .9s ease .3s both;
}
@keyframes hero-desc-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: hero-cta-in .9s ease .45s both;
}
@keyframes hero-cta-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: hero-stats-in .9s ease .6s both;
}
@keyframes hero-stats-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-stat-val {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-lbl {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
}

/* Waves decoration (right side) */
.hero-visual {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 2;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: hero-ring 4s ease-out infinite;
}
.hero-ring:nth-child(1){ width: 100px; height: 100px; border: 2px solid rgba(14,165,233,.5);  animation-delay: 0s; }
.hero-ring:nth-child(2){ width: 200px; height: 200px; border: 1.5px solid rgba(14,165,233,.35);  animation-delay: .6s; }
.hero-ring:nth-child(3){ width: 340px; height: 340px; border: 1.5px solid rgba(139,92,246,.2);  animation-delay: 1.2s; }
.hero-ring:nth-child(4){ width: 480px; height: 480px; border: 1px solid rgba(14,165,233,.08); animation-delay: 1.8s; }
@keyframes hero-ring {
  0%   { opacity: 1; transform: translate(-50%,-50%) scale(.95); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.12); }
}
.hero-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 0 0 0 rgba(14,165,233,.4), 0 0 60px rgba(14,165,233,.3);
  animation: center-pulse 2.5s ease-in-out infinite;
}
@keyframes center-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14,165,233,.4), 0 0 60px rgba(14,165,233,.3); }
  50%       { box-shadow: 0 0 0 24px rgba(14,165,233,0), 0 0 80px rgba(14,165,233,.15); }
}

/* ── Categories bar ──────────────────────────────────────────── */
.cats-bar {
  background: linear-gradient(90deg, var(--dark), var(--dark-2));
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.cats-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.3), transparent);
}
.cats-bar-inner {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cats-bar-inner::-webkit-scrollbar { display: none; }
.cat-tab {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 24px;
  color: rgba(255,255,255,.4);
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  position: relative;
}
.cat-tab i { font-size: .85rem; }
.cat-tab:hover { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.15); }
.cat-tab.active { color: var(--white); border-bottom-color: var(--blue); }
.cat-tab.active .cat-count { background: rgba(14,165,233,.3); color: var(--blue-2); }
.cat-tab .cat-count {
  background: rgba(255,255,255,.07);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: .62rem;
  font-weight: 700;
  transition: all var(--transition);
}

/* ── Section : Derniers enseignements ────────────────────────── */
.teachings-section { background: var(--gray-50); }

/* Grille principale + sidebar */
.teachings-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

/* Carte principale (grande) */
.card-featured-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--trans-slow);
  display: block;
  color: inherit;
  border: 1px solid var(--gray-200);
}
.card-featured-main:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.card-featured-main .cf-thumb {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--dark-3);
}
.card-featured-main .cf-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.card-featured-main:hover .cf-thumb img { transform: scale(1.04); }
.cf-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
}
.cf-thumb-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.8);
  width: 64px; height: 64px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  opacity: 0;
  transition: all var(--transition);
}
.card-featured-main:hover .cf-thumb-play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.cf-thumb-badge { position: absolute; top: 16px; left: 16px; }
.cf-thumb-star  { position: absolute; top: 16px; right: 16px; background: var(--gold); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; }

.cf-body { padding: 24px; }
.cf-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.cf-meta i { color: var(--blue); font-size: .7rem; }
.cf-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.cf-title:hover { color: var(--blue-dark); }
.cf-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.cf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: .78rem;
  color: var(--text-muted);
}

/* Sidebar liste */
.teachings-sidebar-title {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}
.mini-item {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
}
.mini-item:last-child { border-bottom: none; }
.mini-item:hover { padding-left: 4px; }
.mini-thumb {
  width: 68px; height: 60px;
  border-radius: var(--radius-sm);
  background: var(--dark-3);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 1.1rem;
}
.mini-thumb img { width:100%; height:100%; object-fit:cover; }
.mini-info { flex: 1; min-width: 0; }
.mini-title { font-size: .87rem; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 5px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; }
.mini-title a { color: var(--dark); text-decoration: none; transition: color .2s; }
.mini-title a:hover { color: var(--blue); }
.mini-meta { font-size: .72rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

/* ── Grille de contenus ──────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-slow);
  display: flex;
  flex-direction: column;
}
.content-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,.15); }

.card-thumb {
  position: relative;
  height: 190px;
  background: var(--dark-3);
  overflow: hidden;
}
.card-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.content-card:hover .card-thumb img { transform: scale(1.05); }
.card-thumb-ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size: 2.5rem; color: rgba(255,255,255,.12); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.6) 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all var(--trans-slow);
}
.content-card:hover .card-overlay { opacity: 1; }
.card-play {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-blue);
  transform: scale(.6) translateY(10px);
  transition: all var(--trans-spring);
}
.content-card:hover .card-play { transform: scale(1) translateY(0); }
.card-badge-pos { position: absolute; top: 10px; left: 10px; }
.card-star-pos { position: absolute; top: 10px; right: 10px; background: var(--gold); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .6rem; }

.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; gap: 10px; font-size: .72rem; color: var(--text-muted); margin-bottom: 8px; }
.card-meta i { color: var(--blue); font-size: .65rem; }
.card-title { font-family: var(--font-head); font-size: .97rem; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 8px; flex: 1; }
.card-title a:hover { color: var(--blue-dark); }
.card-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--gray-100);
  font-size: .75rem; color: var(--text-muted);
  margin-top: auto;
}
.card-foot-link { color: var(--blue); font-weight: 700; display: flex; align-items: center; gap: 5px; transition: var(--transition); }
.card-foot-link:hover { gap: 9px; }

/* ── Section evangelisation ──────────────────────────────────── */
.evangelism-section {
  background: linear-gradient(135deg, #060818 0%, #150a2e 35%, #0a1428 70%, #060818 100%);
  position: relative;
  overflow: hidden;
}
.evangelism-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(139,92,246,.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(14,165,233,.1) 0%, transparent 50%),
    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.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.evangelism-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ev-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}
.ev-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.ev-step:hover {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
}
.ev-step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .88rem;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 16px rgba(139,92,246,.3);
}
.ev-step-text h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ev-step-text p  { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.6; }

.evangelism-verse {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.evangelism-verse::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139,92,246,.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.evangelism-verse::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(14,165,233,.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ev-cross {
  font-size: 3.5rem;
  color: rgba(139,92,246,.5);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 40px rgba(139,92,246,.3);
}
.ev-verse-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 14px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.ev-verse-ref { font-size: .82rem; color: rgba(255,255,255,.35); position: relative; z-index: 1; }
.ev-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; position: relative; z-index: 1; }

/* ── Événements ──────────────────────────────────────────────── */
.events-section { background: var(--white); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-slow);
  display: flex;
  flex-direction: column;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(14,165,233,.15); }

.ev-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.ev-header::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(14,165,233,.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ev-date-box {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  flex-shrink: 0;
  min-width: 60px;
  box-shadow: 0 4px 16px rgba(14,165,233,.3);
}
.ev-day   { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--white); line-height: 1; }
.ev-month { display: block; font-size: .58rem; font-weight: 700; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.ev-header-info { flex: 1; min-width: 0; position: relative; z-index: 1; }
.ev-org  { font-size: .72rem; color: rgba(255,255,255,.45); }
.ev-time { font-size: .84rem; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 6px; }
.ev-time i { color: var(--blue-2); font-size: .7rem; }

.ev-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.ev-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.ev-title a:hover { color: var(--blue-dark); }
.ev-desc  { font-size: .83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.ev-location {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .78rem; color: var(--text-muted);
  padding-top: 14px; border-top: 1px solid var(--gray-100); margin-top: auto;
}
.ev-location i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }

.ev-status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: .68rem; font-weight: 700;
}
.ev-status-badge.a_venir  { background: #dbeafe; color: #1d4ed8; }
.ev-status-badge.en_cours { background: #d1fae5; color: #065f46; }
.ev-status-badge.termine  { background: var(--gray-100); color: var(--gray-500); }
.ev-status-badge.annule   { background: #fee2e2; color: #991b1b; }

/* ── Donation section ────────────────────────────────────────── */
.donation-section { background: var(--gray-50); }
.donation-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.donation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.donation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 2px solid var(--gray-200);
  text-align: center;
  transition: all var(--trans-slow);
  position: relative;
  overflow: hidden;
}
.donation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity: 0;
  transition: opacity var(--transition);
}
.donation-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.donation-card:hover::before { opacity: 1; }
.donation-logo {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  position: relative;
}
.donation-logo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: inherit;
  opacity: .2;
  z-index: -1;
  filter: blur(8px);
}
.donation-logo.airtel { background: linear-gradient(135deg, #e01b24, #b91c1c); }
.donation-logo.moov   { background: linear-gradient(135deg, #f97316, #ea580c); }
.donation-logo.autre  { background: linear-gradient(135deg, var(--dark), var(--dark-3)); }
.donation-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.donation-card .don-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.donation-number {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: .05em;
  transition: all var(--transition);
}
.donation-card:hover .donation-number {
  border-color: var(--blue);
  background: rgba(14,165,233,.04);
}
.donation-steps {
  list-style: none;
  text-align: left;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.donation-steps li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 6px; }
.don-step-n {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Contact section ─────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-info-item:hover {
  background: var(--gray-50);
}
.contact-icon {
  width: 52px; height: 52px;
  background: rgba(14,165,233,.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-info-item:hover .contact-icon {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14,165,233,.3);
}
.contact-info-item h4 { font-size: .78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px; }
.contact-info-item p, .contact-info-item a { font-size: .92rem; color: var(--text); font-weight: 500; }
.contact-info-item a:hover { color: var(--blue); }

.contact-form-box {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .78rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: all var(--transition);
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(14,165,233,.08); }
.form-input:hover { border-color: var(--gray-300); }
textarea.form-input { resize: vertical; }

/* ── Search bar ──────────────────────────────────────────────── */
.search-bar {
  display: flex;
  gap: 0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition);
  max-width: 620px;
}
.search-bar:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(14,165,233,.1); }
.search-input { flex: 1; padding: 13px 22px; border: none; outline: none; font-size: .92rem; color: var(--text); background: transparent; }
.search-input::placeholder { color: var(--gray-400); }
.search-select { padding: 13px 14px; border: none; border-left: 1.5px solid var(--gray-200); outline: none; font-size: .85rem; color: var(--text); background: var(--gray-50); }
.search-btn { padding: 13px 26px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); font-size: .88rem; font-weight: 700; display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.search-btn:hover { background: linear-gradient(135deg, var(--blue-2), var(--blue)); box-shadow: 0 4px 16px rgba(14,165,233,.3); }

/* ── Filter tabs ─────────────────────────────────────────────── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--blue); color: var(--blue); }
.filter-tab.active { border-color: var(--blue); background: var(--blue); color: var(--white); }
.filter-count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px; font-size: .7rem; font-weight: 700; background: rgba(0,0,0,.1); line-height: 1; }
.filter-tab.active .filter-count { background: rgba(255,255,255,.25); }

/* ── Page hero (pages internes) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #060818 0%, var(--dark-3) 50%, #0a1428 100%);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(14,165,233,.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(139,92,246,.08) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(6,8,24,.5), transparent);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--blue-2); }
.breadcrumb i { font-size: .55rem; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 10px; letter-spacing: -.02em; }
.page-hero p  { color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1.7; }

/* ── Detail page ─────────────────────────────────────────────── */
.detail-hero { background: linear-gradient(135deg, var(--dark), var(--dark-3)); padding: 60px 0 72px; position: relative; overflow: hidden; }
.detail-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(14,165,233,.08), transparent 60%); }
.detail-hero .container { position: relative; z-index: 1; max-width: 900px; }
.detail-crumbs { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.detail-crumbs a:hover { color: var(--blue-2); }
.detail-title { font-family: var(--font-head); font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 800; color: var(--white); line-height: 1.2; margin: 12px 0 16px; }
.detail-meta  { display: flex; flex-wrap: wrap; gap: 18px; font-size: .82rem; color: rgba(255,255,255,.5); }
.detail-meta i { color: var(--blue-2); }
.detail-body  { padding: 64px 0; }
.detail-layout { display: grid; grid-template-columns: 1fr 310px; gap: 48px; align-items: start; }
.prose { font-size: 1.03rem; line-height: 1.82; color: var(--text); }
.prose p { margin-bottom: 1.2em; }

/* Audio player box */
.audio-box {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
}
.audio-box-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.audio-controls { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.audio-play-btn { width: 52px; height: 52px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); flex-shrink: 0; transition: var(--transition); box-shadow: 0 0 20px rgba(14,165,233,.35); }
.audio-play-btn:hover { background: linear-gradient(135deg, var(--blue-2), var(--blue)); transform: scale(1.08); box-shadow: 0 0 28px rgba(14,165,233,.5); }
.audio-progress { flex: 1; }
#detail-audio-range { width: 100%; height: 4px; appearance: none; background: rgba(255,255,255,.2); border-radius: 4px; outline: none; cursor: pointer; margin-bottom: 4px; }
#detail-audio-range::-webkit-slider-thumb { appearance: none; width: 14px; height: 14px; background: var(--blue-2); border-radius: 50%; }
.audio-times { display: flex; justify-content: space-between; font-size: .72rem; opacity: .5; }

/* Sidebar widget */
.widget { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 22px; margin-bottom: 20px; }
.widget-title { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-100); }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 52px; flex-wrap: wrap; }
.pagination a, .pagination span { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); border: 1.5px solid var(--gray-200); font-size: .85rem; font-weight: 600; color: var(--text); transition: var(--transition); }
.pagination a:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(14,165,233,.15); }
.pagination span.current { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 16px rgba(14,165,233,.3); }

/* ── Empty state ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 72px 24px; color: var(--text-muted); }
.empty-state i { font-size: 3.5rem; opacity: .2; margin-bottom: 20px; display: block; color: var(--blue); }
.empty-state h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }
.empty-state p { font-size: .9rem; }

/* ── Alerts ──────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: .88rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.alert-info    { background: #dbeafe; color: #1d4ed8; border: 1px solid #bfdbfe; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-warning { background: #fef3c7; color: #78350f; border: 1px solid #fde68a; }
.alert-danger  { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  position: relative;
}
.footer-wave {
  position: relative;
  margin-top: -1px;
  line-height: 0;
  overflow: hidden;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 60px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.2), rgba(139,92,246,.15), transparent);
  z-index: 1;
}
.footer-main { padding: 64px 0 52px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-mark { width: 46px; height: 46px; background: linear-gradient(135deg, var(--dark-3), var(--dark-4)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--blue-2); font-size: 1.15rem; position: relative; overflow: hidden; }
.footer-logo-mark::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(14,165,233,.15)); border-radius: inherit; }
.footer-logo-name { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--white); }
.footer-logo-freq { display: block; font-size: .62rem; font-weight: 700; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; }
.footer-about-text { font-size: .86rem; line-height: 1.75; margin-bottom: 24px; color: rgba(255,255,255,.4); }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .88rem; color: var(--white); transition: all var(--transition); }
.social-btn.fb { background: rgba(24,119,242,.15); color: #60a5fa; }
.social-btn.yt { background: rgba(255,0,0,.12); color: #f87171; }
.social-btn.wa { background: rgba(37,211,102,.12); color: #4ade80; }
.social-btn:hover { transform: translateY(-3px) scale(1.05); }
.social-btn.fb:hover { background: #1877f2; color: #fff; box-shadow: 0 4px 16px rgba(24,119,242,.4); }
.social-btn.yt:hover { background: #ff0000; color: #fff; box-shadow: 0 4px 16px rgba(255,0,0,.4); }
.social-btn.wa:hover { background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.4); }

.footer-col-title { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--white); margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.4); transition: all var(--transition); }
.footer-links a i { color: rgba(14,165,233,.6); width: 14px; font-size: .75rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-links a:hover i { color: var(--blue-2); }

.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; margin-bottom: 14px; color: rgba(255,255,255,.4); }
.footer-contact-list li i { color: rgba(14,165,233,.6); width: 14px; font-size: .82rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--blue-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #032b4a, var(--blue-xdark), var(--blue));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(255,255,255,.06), transparent),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(14,165,233,.15), transparent);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -.01em; }
.cta-band p  { color: rgba(255,255,255,.65); font-size: .95rem; max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── Scroll reveal ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ── Glow underline for active items ─────────────────────── */
.glow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  border-radius: 2px;
  margin-top: 8px;
}

/* ── Floating particles (JS generated) ─────────────────── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .teachings-layout { grid-template-columns: 1fr; }
  .evangelism-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .detail-layout { grid-template-columns: 1fr; }
  .donation-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .donation-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --live-h: 46px;
    --header-h: 64px;
  }
  .hide-mobile       { display: none !important; }
  .live-program-text { display: none; }
  .live-status-text  { display: none; }
  .live-sep-2        { display: none; }
  #lb-volume         { width: 50px; }

  .main-nav {
    position: fixed;
    top: var(--offset-top);
    left: 0;
    width: 300px;
    height: calc(100vh - var(--offset-top));
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    z-index: 890;
    padding: 20px;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; gap: 3px; }
  .nav-link { padding: 13px 16px; font-size: .92rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-50); display: none; margin-top: 4px; border-radius: var(--radius-sm); }
  .has-dropdown.open .dropdown { display: block; }
  .nav-overlay.active { display: block; }
  .hamburger { display: flex; }
  .btn-donate span { display: none; }

  .live-now { display: none; }
  .live-name, .live-sep { display: none; }
  .live-station { flex: 1; min-width: 0; }

  .wave-divider svg, .wave-divider-top svg { height: 40px; }
  .footer-wave svg { height: 40px; }

  .hero { min-height: auto; padding: 20px 0 0; }
  .hero-content { padding: 48px 0 60px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-val { font-size: 1.6rem; }

  .content-grid { grid-template-columns: 1fr; }
  .events-grid  { grid-template-columns: 1fr; }
  .donation-cards { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer-main  { padding: 52px 0 36px; }
  .footer-col-title::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .evangelism-section { padding: 100px 0 90px; }
  .ev-step { padding: 10px 12px; }
  .page-hero { padding: 48px 0 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .live-bar-inner { gap: 10px; }
  .live-name { display: none; }
  #lb-volume { display: none; }
  .wave-divider svg, .wave-divider-top svg { height: 30px; }
  .footer-wave svg { height: 30px; }

  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .cats-bar-inner { gap: 0; }
  .cat-tab { padding: 14px 14px; font-size: .78rem; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.5rem; }
  .hero-stats { gap: 16px; }
  .hero-stat-val { font-size: 1.4rem; }
  .hero-stat-lbl { font-size: .62rem; }
}
