/* ============================================
   UZIMA PADS RDC — Styles principaux
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --pink: #E8878E;
  --pink-dark: #D4717A;
  --pink-light: #FDE8EA;
  --pink-pale: #FFF5F6;
  --green: #4CAF50;
  --green-dark: #388E3C;
  --green-light: #E8F5E9;
  --purple: #9C27B0;
  --orange: #FF9800;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #FFFFFF;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-alt: #FAFAFA;
  --surface-raised: #FFFFFF;
  --header-bg: rgba(255, 255, 255, 0.97);
  --border-color: #f0f0f0;
  --input-border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  width: 100%;
}

.section { padding: clamp(48px, 8vw, 80px) 0; }
.section-alt { background: var(--surface-alt); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,135,142,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn.is-loading {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

.btn-spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.65s linear infinite;
  flex-shrink: 0;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.btn-white {
  background: var(--surface-raised);
  color: var(--pink);
  border-color: var(--surface-raised);
}
.btn-white:hover { background: var(--pink-light); }

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

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

/* ---- Header ---- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.logo-img {
  height: 62px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.logo-img-footer {
  height: 72px;
  max-width: 240px;
  background: var(--surface-raised);
  padding: 8px 14px;
  border-radius: 10px;
}

.nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 32px); }

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--pink); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-donate { margin-left: 8px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--pink-pale);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid var(--pink-light);
}

.lang-btn {
  padding: 6px 14px;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  font-family: inherit;
  line-height: 1.2;
}

.lang-btn:hover { color: var(--pink); }

.lang-btn.active {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(232,135,142,0.35);
}

.nav-lang-label {
  display: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.nav-lang {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-lang .lang-switcher {
  width: fit-content;
}

.nav-mobile-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.nav-mobile-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--pink-pale);
  color: var(--text);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.nav-close:hover {
  background: var(--pink-light);
  color: var(--pink-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  width: 44px;
  height: 44px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  margin: 0 auto;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Desktop nav — superposé au header, hors du flux backdrop-filter */
@media (min-width: 993px) {
  #site-header {
    display: grid;
    grid-template-columns: minmax(0, 1200px);
    justify-content: center;
    padding: 0 clamp(16px, 4vw, 24px);
    pointer-events: none;
  }

  #site-header > .header,
  #site-header > .nav {
    grid-column: 1;
    grid-row: 1;
  }

  #site-header > .header {
    pointer-events: auto;
  }

  .nav {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 2.5vw, 32px);
    padding: 0;
    padding-left: 230px;
    background: transparent;
    box-shadow: none;
    transform: none !important;
    z-index: 1002;
    pointer-events: none;
    overflow: visible;
  }

  .nav > * {
    pointer-events: auto;
  }

  .nav-mobile-head {
    display: none;
  }

  .nav-lang {
    display: flex;
    align-items: center;
    margin-left: 4px;
    gap: 10px;
  }

  /* Desktop : thème dans la barre de nav (à côté FR/EN) */
  .theme-toggle-wrap--header {
    display: none !important;
  }

  .theme-toggle-wrap--nav {
    display: inline-flex;
  }

  .nav-overlay {
    display: none !important;
  }

  .menu-toggle {
    display: none;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  touch-action: none;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--white) 50%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,135,142,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title span { color: var(--pink); }

.hero-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: clamp(280px, 50vw, 500px);
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232,135,142,0.15), transparent);
}

.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--surface);
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ---- Stats ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.stat-icon.pink { background: var(--pink-light); }
.stat-icon.green { background: var(--green-light); }
.stat-icon.orange { background: #FFF3E0; }
.stat-icon.purple { background: #F3E5F5; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.cta-banner {
  background: linear-gradient(135deg, var(--pink-light), #FFF0F5);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}

.cta-banner p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

/* ---- Testimonials ---- */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 8px 4px;
}

.testimonial-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px) clamp(20px, 4vw, 24px);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  max-width: 520px;
  margin: 0 auto;
}

.testimonial-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--pink-light);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--pink);
  font-weight: 500;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--pink); width: 28px; border-radius: 5px; }

/* ---- Programs ---- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.program-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.program-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 24px 24px 0;
}

.program-image {
  height: 200px;
  overflow: hidden;
  margin-top: 16px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-image img { transform: scale(1.05); }

.program-body { padding: 24px; }

.program-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.program-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.program-link {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.program-link:hover { gap: 10px; }

/* ---- Process ---- */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.process-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.process-step:hover .process-icon {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.1);
}

.process-step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.process-step-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.process-arrow {
  position: absolute;
  top: 36px;
  right: -20px;
  color: var(--pink);
  font-size: 1.2rem;
  z-index: 1;
}

/* ---- Map Section ---- */
.geo-section-header {
  margin-bottom: 48px;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: stretch;
}

.map-stats-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.map-stats { display: flex; flex-direction: column; gap: 16px; }

.map-stats-cta {
  margin-top: 24px;
  align-self: flex-start;
}

.map-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.map-stat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.map-stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.map-stat-icon.tone-pink { background: var(--pink-light); }
.map-stat-icon.tone-green { background: var(--green-light); }
.map-stat-icon.tone-orange { background: #FFF3E0; }
.map-stat-icon.tone-purple { background: #F3E5F5; }

.map-stat-info strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pink-dark);
  line-height: 1.2;
}

.map-stat-info span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.map-container {
  background: linear-gradient(145deg, #EEF7EE 0%, #E3F2E4 100%);
  border-radius: var(--radius-lg);
  padding: 20px 20px 12px;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(76, 175, 80, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.rdc-map {
  width: 100%;
  height: auto;
  display: block;
}

.rdc-country,
.rdc-region {
  transition: var(--transition);
}

.map-container:hover .rdc-region {
  fill: #72B876;
}

.map-pin-goma {
  animation: mapPulse 2.5s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.map-pin {
  cursor: pointer;
  transition: var(--transition);
}
.map-pin:hover { transform: scale(1.2); }

.map-pin-label {
  font-size: 10px;
  font-weight: 600;
  fill: var(--text);
}

/* ---- Page Header ---- */
.page-header {
  padding: calc(var(--header-height) + 40px) 0 clamp(40px, 6vw, 60px);
  background: linear-gradient(135deg, var(--pink-pale), var(--green-light));
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a:hover { color: var(--pink); }

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--surface);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--pink);
}

.value-icon { font-size: 2.5rem; margin-bottom: 16px; }

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 20px;
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--pink-light);
}

.team-name { font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--pink); }

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-body { padding: 24px; }

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-category {
  color: var(--pink);
  font-weight: 600;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.blog-read-more {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---- Article ---- */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.article-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--text);
}

.article-body p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-light);
}

.article-body li { margin-bottom: 8px; }

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.tag {
  background: var(--pink-light);
  color: var(--pink);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ---- Comments ---- */
.comments-section {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 2px solid var(--pink-light);
}

.comments-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.comment-form {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--input-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--surface);
  color: var(--text);
}

.form-control:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,135,142,0.15);
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comments-list { display: flex; flex-direction: column; gap: 20px; }

.comment-item {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--pink);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-author { font-weight: 700; font-size: 0.95rem; }
.comment-date { font-size: 0.8rem; color: var(--text-muted); }
.comment-text { color: var(--text-light); line-height: 1.7; font-size: 0.95rem; }

.comments-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

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

.contact-icon {
  width: 48px; height: 48px;
  background: var(--pink-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form-card {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---- Donate ---- */
.donate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.donate-card {
  background: var(--surface);
  border: 2px solid #eee;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.donate-card:hover, .donate-card.selected {
  border-color: var(--pink);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.donate-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 8px;
}

.donate-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

.donate-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.impact-preview {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  text-align: center;
}

.impact-preview strong { color: var(--green-dark); }

/* ---- Newsletter ---- */
.newsletter-section {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  padding: 60px 0;
  color: var(--white);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.newsletter-text p { opacity: 0.9; font-size: 0.95rem; }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
}

.newsletter-form input:focus {
  outline: 3px solid rgba(255,255,255,0.3);
}

.newsletter-form .btn {
  background: var(--surface);
  color: var(--pink);
  border-color: var(--white);
  flex-shrink: 0;
}

.newsletter-page-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.newsletter-success {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-top: 16px;
  display: none;
}

.newsletter-success.show { display: block; }

/* ---- Footer ---- */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.75);
}

.footer-location {
  margin-bottom: 20px;
}

.footer-location-badge {
  display: inline-block;
  background: rgba(232,135,142,0.2);
  color: var(--pink);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(232,135,142,0.35);
}

.footer-col h4,
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--pink); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

.footer-contact-list a {
  color: rgba(255,255,255,0.85);
}
.footer-contact-list a:hover { color: var(--pink); }

.footer-contact-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--text);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 400px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--green); }
.toast.error { background: #f44336; }

/* ---- Filters ---- */
.blog-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid #eee;
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid #eee;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.page-btn:hover, .page-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* ---- Responsive ---- */

/* Tablette paysage / petit desktop */
@media (max-width: 1200px) {
  .nav-link { font-size: 0.85rem; }
  .nav { gap: 20px; }
}

/* Tablette */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .map-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-section { gap: 32px; }

  .map-stats-wrap { order: 1; }
  .map-container { order: 0; min-height: 340px; }

  .map-stats-cta { align-self: stretch; text-align: center; }

  .hero-content { order: 1; }
  .hero-image { order: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid,
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .donate-options { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .process-step {
    flex: 0 0 calc(33.333% - 14px);
    max-width: 160px;
  }
  .process-arrow { display: none; }

  .map-container { min-height: 320px; }

  .about-image img,
  .article-featured-image img {
    height: clamp(260px, 40vw, 400px);
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .newsletter-form {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 992px) {
  :root { --header-height: 76px; }

  #site-header {
    display: block;
    height: auto;
    pointer-events: none;
  }

  #site-header .header {
    pointer-events: auto;
  }

  .logo-img {
    height: 52px;
    max-width: 190px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 88vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-height) + 12px) 20px 32px;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-mobile-head {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link::after { display: none; }

  .nav-donate {
    margin: 24px 0 0;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    white-space: normal;
    text-align: center;
  }

  .menu-toggle { display: flex; }

  .nav-lang {
    display: block;
    padding: 20px 0 12px;
    border-top: 1px solid var(--border-color);
    margin-top: 12px;
  }

  .nav-lang-label {
    display: block;
  }

  .programs-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .nav-overlay {
    pointer-events: none;
  }

  .nav-overlay.active {
    pointer-events: auto;
  }

  .header-actions {
    position: relative;
    z-index: 1110;
  }

  /* Mobile : thème dans le header (hors menu) */
  .theme-toggle-wrap--nav {
    display: none !important;
  }

  .theme-toggle-wrap--header {
    display: inline-flex !important;
  }

  .logo {
    position: relative;
    z-index: 1110;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 48px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-badge {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 10px 16px;
  }

  .section-subtitle { margin-bottom: 32px; }

  .contact-form-card,
  .donate-form,
  .newsletter-page-card {
    padding: clamp(24px, 5vw, 40px);
  }

  .comment-form { padding: 24px 20px; }

  .footer-bottom span:last-child {
    font-size: 0.75rem;
    line-height: 1.5;
    word-break: break-word;
  }
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.photo-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
  .photo-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .stats-grid,
  .programs-grid,
  .blog-grid,
  .donate-options,
  .values-grid,
  .team-grid,
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
    width: 100%;
  }

  .footer-location {
    display: flex;
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-contact-list li {
    justify-content: center;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }

  .stat-card { padding: 24px 20px; }
  .stat-number { font-size: 1.8rem; }

  .process-step {
    flex: 0 0 calc(50% - 10px);
    max-width: none;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .map-stats { gap: 12px; }

  .map-stat-item {
    padding: 14px 16px;
  }

  .map-container {
    padding: 20px 16px;
    min-height: 260px;
  }

  .article-featured-image img {
    height: clamp(200px, 55vw, 320px);
  }

  .article-content h1 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }

  .article-meta {
    gap: 10px;
    font-size: 0.82rem;
  }

  .blog-filters {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .blog-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .form-row { grid-template-columns: 1fr; }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .cta-banner p { font-size: 1rem; }

  .about-content h2 { font-size: 1.6rem; }

  .program-image { height: 180px; }

  .blog-image { height: 200px; }
}

/* Petit mobile */
@media (max-width: 480px) {
  :root { --header-height: 72px; }

  .logo-img {
    height: 46px;
    max-width: 165px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .hero-text { font-size: 0.95rem; }

  .section-title { font-size: clamp(1.4rem, 5.5vw, 1.75rem); }

  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2rem); }

  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .process-step {
    flex: 0 0 100%;
  }

  .photo-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .testimonial-avatar {
    width: 64px;
    height: 64px;
  }

  .testimonial-text { font-size: 0.88rem; }

  .donate-amount { font-size: 1.6rem; }

  .social-links { justify-content: center; }

  .footer-brand { text-align: center; }
  .footer-brand .logo { justify-content: center; }

  .logo-img-footer {
    height: 58px;
    margin: 0 auto;
  }

  .footer-tags {
    justify-content: center;
  }
}

/* Safe area pour iPhone / encoches */
@supports (padding: env(safe-area-inset-bottom)) {
  .header-inner {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  .toast {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* Chargement & erreurs API site */
.site-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.site-loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loading-inner { text-align: center; color: var(--text-muted); }
.site-loading-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border: 3px solid var(--pink-light);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: siteSpin 0.8s linear infinite;
}
@keyframes siteSpin { to { transform: rotate(360deg); } }

.site-data-error {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #fff3cd;
  color: #856404;
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid #ffc107;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.site-data-error.show { display: flex; }
.site-data-error-retry {
  background: #856404;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

.donation-status-banner {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.95rem;
  text-align: center;
}
.donation-status-banner.success { background: var(--green-light); color: var(--green-dark); }
.donation-status-banner.cancelled { background: #fff3cd; color: #856404; }
.donation-status-banner.pending { background: var(--pink-pale); color: var(--pink-dark); }
.donation-status-banner.loading { background: #f5f5f5; color: var(--text-muted); }

.empty-state-inline {
  color: var(--text-muted);
  text-align: center;
  padding: 32px 16px;
  font-size: 0.95rem;
}

/* ---- Theme toggle ---- */
.theme-toggle-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--pink-pale);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  transition: var(--transition);
  flex-shrink: 0;
  padding: 0;
}

.theme-toggle:hover {
  border-color: var(--pink);
  transform: scale(1.05);
}

.theme-icon { display: inline-flex; }

[data-theme="light"] .theme-icon-sun,
[data-theme="dark"] .theme-icon-moon {
  display: none;
}

[data-theme="light"] .theme-icon-moon,
[data-theme="dark"] .theme-icon-sun {
  display: inline-flex;
}

/* ---- Dark theme ---- */
[data-theme="dark"] {
  color-scheme: dark;
  --text: #E8E8ED;
  --text-light: #B0B0BC;
  --text-muted: #848494;
  --bg: #12121A;
  --surface: #1A1A24;
  --surface-alt: #12121A;
  --surface-raised: #252532;
  --pink-pale: #2A2226;
  --pink-light: #3D2A30;
  --green-light: #1A2A1E;
  --header-bg: rgba(26, 26, 36, 0.97);
  --border-color: #2E2E3C;
  --input-border: #3A3A4A;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .header {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #221A1C 0%, var(--surface) 50%, #1A221C 100%);
}

[data-theme="dark"] .hero::before {
  background: radial-gradient(circle, rgba(232, 135, 142, 0.12) 0%, transparent 70%);
}

[data-theme="dark"] .stat-icon.orange { background: #3D3020; }
[data-theme="dark"] .stat-icon.purple { background: #2E2435; }
[data-theme="dark"] .map-stat-icon.tone-orange { background: #3D3020; }
[data-theme="dark"] .map-stat-icon.tone-purple { background: #2E2435; }

[data-theme="dark"] .process-connector { background: #444; }

[data-theme="dark"] .page-btn {
  border-color: var(--border-color);
  color: var(--text);
}

[data-theme="dark"] .filter-btn {
  border-color: var(--border-color);
  background: var(--surface);
  color: var(--text);
}

[data-theme="dark"] .nav-mobile-head,
[data-theme="dark"] .nav-link {
  border-bottom-color: var(--border-color);
}

[data-theme="dark"] .nav-lang {
  border-top-color: var(--border-color);
}

[data-theme="dark"] .site-data-error {
  background: #3d3520;
  color: #f0d78c;
  border-bottom-color: #665520;
}

[data-theme="dark"] .site-data-error-retry {
  background: #f0d78c;
  color: #2a2418;
}

[data-theme="dark"] .donation-status-banner.cancelled {
  background: #3d3520;
  color: #f0d78c;
}

[data-theme="dark"] .donation-status-banner.loading {
  background: var(--surface-raised);
}

[data-theme="dark"] .newsletter-section {
  background: linear-gradient(135deg, #1f1a2e, #1a2420);
}

[data-theme="dark"] .cta-banner {
  background: linear-gradient(135deg, #2A2226, #1A2A1E);
}

[data-theme="dark"] .menu-toggle span {
  background: var(--text);
}

