/* ============================================================
   Stichting Trails of Joy Uganda — huisstijl webdesign
   Kleuren en sfeer afgeleid van het TOJU-logo:
   warm terracotta, oranje en amber op een crème ondergrond.
   ============================================================ */

:root {
  /* Kleuren */
  --clay: #B43A1B;
  --clay-deep: #8E2D12;
  --orange: #E97817;
  --orange-soft: #FCEBDA;
  --amber: #F2A33C;
  --cream: #FBF5EC;
  --cream-deep: #F3E7D6;
  --ink: #33231A;
  --ink-soft: #6E594B;
  --white: #FFFFFF;
  --green: #3E7C45;
  --green-bg: #E9F2EA;
  --footer-bg: #2A1A11;

  /* Typografie */
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  --font-accent: "Caveat", cursive;

  /* Maten */
  --max-w: 1160px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 6px 24px rgba(51, 35, 26, 0.08);
  --shadow-lg: 0 14px 40px rgba(51, 35, 26, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1.0rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clay); text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.25; color: var(--ink); }

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

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--clay);
}
.btn-light:hover { background: var(--cream); border-color: var(--cream); color: var(--clay-deep); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); border-color: var(--white); color: var(--white); }
.btn-outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--clay);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

/* ---------- Header / navigatie ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(51, 35, 26, 0.07);
  transition: box-shadow 0.25s;
}
/* Achtergrond + blur op een pseudo-element, zodat de header zelf geen
   containing block wordt voor het position:fixed mobiele menu. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 245, 236, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(51, 35, 26, 0.10); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 58px; width: auto; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--clay);
  line-height: 1.2;
}
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover { background: var(--orange-soft); color: var(--clay); }
.main-nav a.active { background: var(--clay); color: var(--white); }
.main-nav .nav-donate {
  margin-left: 10px;
  background: var(--orange);
  color: var(--white);
}
.main-nav .nav-donate:hover { background: var(--clay); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 300;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--clay);
  border-radius: 3px;
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (homepagina) ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(20deg, rgba(142, 45, 18, 0.82) 0%, rgba(180, 58, 27, 0.55) 38%, rgba(233, 120, 23, 0.25) 70%, rgba(51, 35, 26, 0.15) 100%);
}
.hero-content {
  position: relative;
  max-width: 640px;
  color: var(--white);
  padding: 110px 0;
}
.hero-kicker {
  font-family: var(--font-accent);
  font-size: 1.65rem;
  color: #FFD9A8;
  display: block;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.94);
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Page hero (subpagina's) ---------- */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(10deg, rgba(142, 45, 18, 0.85) 0%, rgba(180, 58, 27, 0.45) 55%, rgba(51, 35, 26, 0.10) 100%);
}
.page-hero .container { position: relative; padding-bottom: 48px; padding-top: 120px; color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; margin-top: 6px; }
.page-hero .hero-kicker { font-size: 1.5rem; margin-bottom: 0; }
.page-hero p.page-intro { max-width: 640px; margin-top: 12px; font-size: 1.1rem; color: rgba(255,255,255,0.92); }

.page-hero.plain {
  background: linear-gradient(120deg, var(--clay-deep), var(--clay) 55%, var(--orange));
  min-height: 280px;
}

/* ---------- Secties ---------- */
.section { padding: 92px 0; }
.section.tight { padding: 64px 0; }
.section.alt { background: var(--white); }
.section.deep { background: var(--cream-deep); }

.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.kicker {
  font-family: var(--font-accent);
  font-size: 1.55rem;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.07rem; }

.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

/* ---------- Foto's ---------- */
.photo-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.photo-duo { position: relative; padding-bottom: 56px; padding-right: 56px; }
.photo-duo .photo-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-duo .photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
}
.section.alt .photo-duo .photo-small { border-color: var(--white); }

/* ---------- Kernwaarden ---------- */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 26px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(51, 35, 26, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card img { width: 104px; height: 104px; object-fit: contain; margin: 0 auto 18px; }
.value-card h3 { font-size: 1.18rem; color: var(--clay); margin-bottom: 10px; }
.value-card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Focus-kaarten ---------- */
.focus-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  color: var(--white);
}
.focus-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.focus-card:hover img { transform: scale(1.06); }
.focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 26, 17, 0.88) 0%, rgba(42, 26, 17, 0.25) 55%, rgba(42, 26, 17, 0) 100%);
}
.focus-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 1; }
.focus-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 6px; }
.focus-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.88); line-height: 1.55; }
.focus-card .focus-more { display: inline-block; margin-top: 10px; font-weight: 800; font-size: 0.85rem; color: var(--amber); }

/* ---------- Statistieken ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--clay-deep), var(--clay) 60%, #C44A20);
  color: var(--white);
  padding: 72px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat .stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #FFD9A8;
  line-height: 1.1;
}
.stat .stat-label { margin-top: 8px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); }

/* ---------- Citaat ---------- */
.quote-band { position: relative; padding: 130px 0; overflow: hidden; }
.quote-band .hero-bg::after { background: linear-gradient(rgba(42, 26, 17, 0.72), rgba(142, 45, 18, 0.66)); }
.quote-band .container { position: relative; text-align: center; color: var(--white); max-width: 820px; }
.quote-band blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
}
.quote-band cite { display: block; margin-top: 18px; font-family: var(--font-accent); font-style: normal; font-size: 1.5rem; color: var(--amber); }

/* ---------- Projectkaarten ---------- */
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-img { height: 220px; overflow: hidden; position: relative; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.project-body h3 { font-size: 1.22rem; margin: 10px 0 4px; }
.project-amount { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; color: var(--clay); }
.project-amount span { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.project-body p { font-size: 0.95rem; color: var(--ink-soft); margin-top: 10px; }
.project-quote {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.project-meta {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  border-top: 1px solid rgba(51, 35, 26, 0.08);
  margin-top: 18px;
}

.badge {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-funded { background: var(--green-bg); color: var(--green); }
.badge-open { background: var(--orange-soft); color: var(--clay); }

.progress {
  height: 8px;
  background: rgba(51, 35, 26, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 14px;
}
.progress-bar { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--green), #5EA065); }

/* Projectfilter */
.filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid rgba(51, 35, 26, 0.14);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--clay); }
.filter-btn.active { background: var(--clay); border-color: var(--clay); color: var(--white); }

/* ---------- Teamkaarten ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 5px solid var(--orange-soft);
}
.team-card h3 { font-size: 1.1rem; }
.team-card .role {
  font-family: var(--font-accent);
  color: var(--orange);
  font-size: 1.25rem;
  margin: 2px 0 10px;
}
.team-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Partnerkaarten ---------- */
.partner-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}
.partner-card:nth-child(even) { grid-template-columns: 1fr 340px; }
.partner-card:nth-child(even) .partner-img { order: 2; }
.partner-img { min-height: 260px; }
.partner-img img { width: 100%; height: 100%; object-fit: cover; }
.partner-body { padding: 38px 40px; align-self: center; }
.partner-body .kicker { font-size: 1.35rem; }
.partner-body h3 { font-size: 1.45rem; margin-bottom: 12px; }
.partner-body p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Afwisselende media-rijen ---------- */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 84px; }
.media-row:last-child { margin-bottom: 0; }
.media-row.flip .media-img { order: 2; }
.media-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.media-img img { width: 100%; height: 100%; object-fit: cover; }
.media-text h3 { font-size: 1.55rem; margin-bottom: 14px; }
.media-text p { color: var(--ink-soft); }

/* ---------- Werkwijze / stappen ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--clay));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step-card p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Callout / panelen ---------- */
.callout {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 48px;
  border-top: 6px solid var(--orange);
}
.callout h3 { font-size: 1.35rem; margin-bottom: 12px; }
.callout p { color: var(--ink-soft); }

.scripture-panel {
  display: grid;
  grid-template-columns: 1fr 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(120deg, var(--clay-deep), var(--clay));
  color: var(--white);
}
.scripture-panel .panel-text { padding: 52px 54px; align-self: center; }
.scripture-panel h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.scripture-panel p { color: rgba(255, 255, 255, 0.92); }
.scripture-panel .panel-img { min-height: 300px; }
.scripture-panel .panel-img img { width: 100%; height: 100%; object-fit: cover; }

/* Dorpen-chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  padding: 7px 18px;
  background: var(--orange-soft);
  color: var(--clay);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}

/* ---------- Doneerblok ---------- */
.donate-box {
  position: relative;
  background: linear-gradient(125deg, var(--clay-deep) 0%, var(--clay) 45%, var(--orange) 110%);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 64px 56px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.donate-box::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -160px;
  right: -120px;
}
.donate-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -120px;
  left: -80px;
}
.donate-box > * { position: relative; z-index: 1; }
.donate-box .kicker { color: #FFD9A8; }
.donate-box h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.donate-box p { color: rgba(255, 255, 255, 0.94); max-width: 560px; margin: 0 auto 8px; }
.iban-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 16px 26px;
  margin: 26px 0 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.iban {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.copy-btn {
  background: var(--white);
  color: var(--clay);
  border: none;
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.copy-btn:hover { background: var(--cream); transform: translateY(-1px); }
.donate-note { font-size: 0.88rem; opacity: 0.85; margin-top: 14px; }

/* ---------- ANBI ---------- */
.anbi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.anbi-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 30px;
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
}
.anbi-item h3 { font-size: 1.02rem; color: var(--clay); margin-bottom: 8px; }
.anbi-item p { font-size: 0.94rem; color: var(--ink-soft); }
.anbi-item .placeholder { font-style: italic; opacity: 0.7; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--clay));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-item h3 { font-size: 1.05rem; margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: 0.96rem; color: var(--ink-soft); }
.contact-item a:hover { color: var(--clay); }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: rgba(255, 255, 255, 0.75); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 44px; }
.footer-brand img { height: 84px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; }
.site-footer h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; }
.site-footer a:hover { color: var(--amber); }
.site-footer p { font-size: 0.92rem; line-height: 1.8; }
.footer-verse {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--amber);
}
.footer-bottom {
  text-align: center;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Reveal-animaties ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partner-card, .partner-card:nth-child(even) { grid-template-columns: 1fr; }
  .partner-card:nth-child(even) .partner-img { order: 0; }
  .partner-img { min-height: 240px; }
  .scripture-panel { grid-template-columns: 1fr; }
  .scripture-panel .panel-img { min-height: 240px; order: -1; }
}

@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 80px 0 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 250;
  }
  /* Centreert als er ruimte is, scrollt netjes als die er niet is */
  .main-nav a { flex-shrink: 0; }
  .main-nav a:first-child { margin-top: auto; }
  .main-nav .nav-donate { margin-bottom: auto; margin-left: 0; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.2rem; padding: 12px 28px; }
  .nav-toggle { display: block; }

  .section { padding: 64px 0; }
  .grid-2, .grid-3, .media-row, .contact-grid, .anbi-grid, .steps { grid-template-columns: 1fr; }
  .grid-2, .media-row { gap: 36px; }
  .media-row { margin-bottom: 56px; }
  .media-row.flip .media-img { order: 0; }
  .hero { min-height: 72vh; }
  .hero-content { padding: 90px 0; }
  .partner-body { padding: 30px 28px; }
  .scripture-panel .panel-text { padding: 36px 30px; }
  .donate-box { padding: 48px 26px; }
  .callout { padding: 32px 28px; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand img { height: 48px; }
  .brand-name { display: none; }
  .photo-duo { padding-right: 28px; }
}
