    /* ------------ CSS VARIABELEN ------------ */
    @import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700&family=Inter:wght@300;400;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary:  linear-gradient(to left,  #2DABE3 0.1%,  #831F82 5%,  #E94F1D 99%);
  --color-secondary: linear-gradient(to right, #2DABE3 0.1%,  #831F82 5%,  #E94F1D 99%);
  --color-next: #E94F1D;
  --color-forward: #2DABE3;
  --color-shuffle: #831F82;
  --color-accent: #94d2bd;
  --color-text: #212529;
  --color-bg: #ffffff;
  --color-bg-secondary: #d4d4d4;
  --color-light-bg: #f5f2ed;
  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

/* De hoofdcontainer */
.oranje {
  position: relative;
  transition: all 0.3s ease;
  z-index: 1; /* Basislaag voor de container */
  overflow: hidden; /* Zorgt dat de overlay niet buiten de randen komt */
}

/* Zorg dat alle tekst en iconen BOVEN de overlay blijven */
.service-icon,
.service-title,
.service-description,
.service-link {
  position: relative; 
  z-index: 2; /* Hoger dan de ::after overlay */
}

/* De Overlay (de boosdoener die eerst over je tekst viel) */
.oranje::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  height: 88%;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0; 
  transition: opacity 0.3s ease;
  pointer-events: none; 
  border-radius: 20px;
  z-index: 1; /* Lager dan de tekst, maar boven de paarse achtergrond */
}

/* Hover effecten voor de tekst */
.oranje:hover .service-title,
.oranje:hover .service-description,
.oranje:hover .service-link {
  color: #000000 !important;
}

/* Icoon aanpassingen op hover */
.oranje:hover .service-icon {
  background-color: #831F82;
  color: #ffffff;
}

/* Activeer de overlay op hover */
.oranje:hover::after {
  opacity: 1;
}

/* Specifieke hover voor de link onderaan */
.service-link:hover {
  color: #000 !important;
}

/* De hoofdcontainer */
.paars {
  position: relative;
  transition: all 0.3s ease;
  z-index: 1; /* Basislaag voor de container */
  overflow: hidden; /* Zorgt dat de overlay binnen de bochten blijft */
}

/* Zorg dat alle tekst en iconen BOVEN de overlay blijven staan */
.service-icon,
.service-title,
.service-description,
.service-link {
  position: relative; 
  z-index: 2; /* Hoger dan de ::after overlay voor maximale helderheid */
}

/* De Overlay (de witte waas op hover) */
.paars::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  height: 88%;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0; 
  transition: opacity 0.3s ease;
  pointer-events: none; 
  border-radius: 20px;
  z-index: 1; /* Lager dan de tekst, maar boven de paarse achtergrond */
}

/* Hover effecten voor de tekst */
.paars:hover .service-title,
.paars:hover .service-description,
.paars:hover .service-link {
  color: #000000 !important;
}

/* Icoon aanpassingen op hover */
.paars:hover .service-icon {
  background-color: #B8491F;
  color: #ffffff;
}

/* Activeer de overlay op hover */
.paars:hover::after {
  opacity: 1;
}

/* Specifieke hover voor de link onderaan */
.service-link:hover {
  color: #000 !important;
}

/* Buttons */
.btn {
  font-family: var(--font-base) !important;
}
.btn-shuffle {
  background: var(--color-shuffle) !important;
  color: var(--color-bg) !important;
  font-size: 0.77rem !important;
}

.btn-outline-primary {
  color: var(--color-shuffle);
  border: 2px solid transparent !important;
  background-image:
    linear-gradient(var(--color-bg), var(--color-bg)), 
    var(--color-primary); 
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: .375rem .75rem;
  border-radius: .375rem;
  font-weight: 600;
  transition: color .18s ease, background-image .25s ease, box-shadow .18s ease, transform .08s ease;
  cursor: pointer;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background-image: var(--color-primary);
  background-clip: border-box;
  -webkit-background-clip: border-box;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12), 0 0 0 .25rem rgba(131,31,130,0.14);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline-primary:active {
  transform: translateY(0);
  box-shadow: inset 0 3px 6px rgba(0,0,0,0.12);
}

.btn-outline-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(45,171,227,0.16); 
}

.btn-outline-primary[disabled],
.btn-outline-primary.disabled {
  color: rgba(0,0,0,0.45);
  background-image: none;
  background-color: transparent;
  border-color: rgba(0,0,0,0.08);
  opacity: .7;
  pointer-events: none;
}
/* /Buttons */

/* Cards */
/* ---------- custom card styling — gebruik je theme-vars uit :root ---------- */

/* Algemeen card basis */
.card {
  /* border als gradient met 'double background' trick */
  border: 2px solid transparent;
  border-radius: 0.75rem; /* pas aan indien je Bootstrap var anders is */
  background-image:
    linear-gradient(var(--color-bg), var(--color-bg)), /* binnenvlak */
    var(--color-primary); /* buitenste gradient (rand) */
  background-origin: border-box;
  background-clip: padding-box, border-box;

  /* binnenmarges / typografie */
  padding: 0;
  color: var(--color-text);
  font-family: var(--font-base);
  overflow: hidden; /* zorgt dat rounded corners afbeeldingen/children knippen */

  /* lichte elevatie / diepte */
  box-shadow: 0 6px 18px rgba(20,20,20,0.06);
  transition: transform .18s ease, box-shadow .18s ease, background-image .22s ease;
}

/* Specifieke kaart-variant (jouw markup gebruikt .offer-card) */
.card.offer-card {
  border-radius: 1rem;
}

/* afbeelding bovenin (zorg dat deze netjes afgeronde hoeken krijgt) */
.card .offer-img,
.card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* ronde bovenhoeken — houdt rekening met border width */
  border-top-left-radius: calc(1rem - 2px);
  border-top-right-radius: calc(1rem - 2px);
}

/* body van de kaart */
.card .card-body {
  padding: 1rem;
  background: transparent; /* anders overlayt het double-background */
}

/* titel / tekst */
.card .offer-title {
  color: var(--color-text);
  margin-bottom: .5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
}
.card .offer-text {
  color: color-mix(in srgb, var(--color-text) 80%, black 0%); /* subtieler */
  font-size: .95rem;
  line-height: 1.45;
  margin-bottom: .75rem;
}

/* hover / focus: lichte lift en vulling van de gradient (optioneel) */
.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20,20,20,0.12), 0 0 0 .35rem rgba(131,31,130,0.06);
  /* optioneel: intensere randkleur op hover — vervang achtergrond met gradient */
  background-image:
    linear-gradient(var(--color-bg), var(--color-bg)),
    linear-gradient(90deg, #2DABE3 0.1%, #831F82 40%, #E94F1D 100%);
}

/* knop binnen de kaart: kleine spacing en consistentie */
.card .btn {
  margin-top: .25rem;
  font-weight: 600;
}

/* toegankelijke focus-ring (keyboard users) */
.card:focus-within {
  outline: none;
  box-shadow: 0 6px 20px rgba(20,20,20,0.08), 0 0 0 .28rem rgba(45,171,227,0.10);
}

/* disabled / low-contrast variant */
.card[aria-disabled="true"],
.card.disabled {
  opacity: .86;
  pointer-events: none;
  filter: grayscale(.05);
  transform: none;
  box-shadow: none;
}

/* reduce motion — respecteer gebruikersinstellingen */
@media (prefers-reduced-motion: reduce) {
  .card,
  .card:hover,
  .card:focus-within {
    transition: none;
    transform: none;
  }
}

/* 1) Maak de rij-kolommen en kaarten stretchbaar zodat alle kaarten even hoog zijn */
.row.equal-cards > [class*="col-"] {
  display: flex;           /* maakt kolom een flex container */
  align-items: stretch;
}
.row.equal-cards > [class*="col-"] .card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;          /* kaart groeit om kolomhoogte te vullen */
}

/* 2) Vaste afbeelding/thumbnail styling (uniforme grootte) */
/* Gebruik aspect-ratio voor moderne browsers, fallback naar vaste hoogte */
.offer-img {
  display: block;
  width: 100%;
  height: 200px;           /* fallback vaste hoogte (pas aan naar wens) */
  object-fit: cover;       /* crop/center zodat alle thumbs gelijk ogen */
  object-position: center;
  aspect-ratio: 5 / 4;     /* moderne fallback: verhouding 250x200 ≈ 5/4 */
}

/* responsive: kleinere hoogte op smalle schermen */
@media (max-width: 576px) {
  .offer-img { height: 160px; }
}

/* 3) Body van de kaart als flex-column zodat we knop altijd onderaan krijgen */
.card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;          /* laat body groeien */
  padding: 1rem;
}

/* 4) Titel: vaste hoogte / max 2 regels (line-clamp waar mogelijk) */
.offer-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  margin: 0 0 .5rem 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.125rem * 1.2 * 2); /* fallback hoogte voor 2 regels */
}

/* 5) Tekst: laat het flexible ruimte innemen maar begrens tot x regels */
.offer-text {
  margin: 0 0 .75rem 0;
  line-height: 1.45;
  font-size: .95rem;
  color: color-mix(in srgb, var(--color-text) 80%, black 0%);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* als je liever geen clamping wilt, verwijder de bovenstaande regels en
     gebruik: flex: 1 1 auto; zodat langere tekst uitrekt en alle kaarten even hoog blijven
     (maar dan krijgen gebruikers minder zicht op complete tekst) */
  flex: 1 1 auto;
}

/* 6) Zorg dat knop altijd onderaan blijft */
.card .btn {
  margin-top: auto;        /* duwt knop naar onderzijde van de card-body */
}

/* 7) Kleine visuele fine-tuning */
.card.offer-card { border-radius: 1rem; overflow: hidden; }
.card .offer-img { border-top-left-radius: inherit; border-top-right-radius: inherit; }
/* /Cards */

/* .nav-link {
  font-size: var(--bs-nav-link-font-size);
} */

.shuffle-kleuren {
    background: var(--color-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.forward {color: var(--color-forward);}
.next {color: var(--color-next);}
.shuffle {color: var(--color-shuffle);}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-base) !important;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

form {
  user-select: text;
}

.font-weight {
  font-weight: 500 !important;
}

.beige-bg {
  background-color: var(--color-light-bg);
}

/* ------- CONTAINERS ------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ------- HEADER ------- */
header {
  font-size: 0.9rem !important;
}
#navbar {
  background: var(--color-secondary);
  font-size: 0.77rem !important;
  /* font-family: var(--font-serif) !important; */
}
.site-header {
  padding: 1rem 0;
}
.site-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-bg);
  text-decoration: none;
}
.main-nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--color-bg);
}
.dropdown-item {
  color: var(--color-text) !important;
  margin-left: 0 !important;
}
.svg {
  color: #831F82;
}
/* CTA knopjes voor navbar — unieke prefix om naamconflicten te vermijden */
.site-cta {
  border-radius: 0.5rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease;
  text-decoration: none; /* veilig voor anchors */
}

/* Doneren: outline/ghost stijl zodat het niet te dominant is */
.site-cta-donate {
  background: transparent;
  color: #B8491F;                /* pas aan naar jouw merkkleur */
  border: 1px solid #B8491F;
}

/* Contact: primaire opvallende knop */
.site-cta-contact {
  background: #B8491F;           /* merkkleur */
  color: #fff;
  border: 1px solid #B8491F;
}

/* hover / focus states (a11y) */
.site-cta:hover,
.site-cta:focus {
  transform: translateY(-2px);
  text-decoration: none;
  outline: none;
}

.site-cta-donate:hover,
.site-cta-donate:focus {
  background: rgba(184,73,31,0.06);
}

.site-cta-contact:hover,
.site-cta-contact:focus {
  box-shadow: 0 8px 20px rgba(184,73,31,0.12);
  filter: brightness(0.98);
}

.mobile-menu-ctas {
  display: none;
}

/* kleine responsive tweak: stapel op heel smalle schermen */
@media (max-width: 420px) {
  .navbar-ctas {
    flex-direction: row;
    gap: .45rem;
    flex-wrap: nowrap;
  }
  .site-cta {
    width: auto;
    min-height: 38px;
    padding: 0.62rem 0.9rem;
    font-size: 0.82rem;
    justify-content: center;
    white-space: nowrap;
  }
}

@media (max-width: 575.98px) {
  #navbar .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.9rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.98) 0%, rgba(255, 245, 239, 0.98) 100%);
    box-shadow: 0 18px 38px rgba(27, 32, 50, 0.12);
  }

  #navbar .main-nav {
    gap: 0.2rem;
  }

  #navbar .main-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0.85rem 0.95rem !important;
    border-radius: 16px;
  }

  .mobile-menu-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(127, 29, 122, 0.08);
  }

  .mobile-menu-ctas .site-cta {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    padding: 0.8rem 0.9rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  #navbar .navbar-toggler[aria-expanded="true"] ~ .navbar-ctas {
    display: none !important;
  }
}

@media (min-width: 1020px) {
  #clock-svg {
    margin-left: 4rem;
  }
  .header-elements-right {
  margin-right: 4rem;
}
#navbar .nav-item:first-child {
  text-indent: 0;
}
}

/* ------- HERO ------- */
.hero {
  color: var(--color-bg);
  text-align: center;
  padding: 0 0;
  height: 30rem;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.1rem;
  margin-top: .5rem;
}
#shuffle-logo {
  width: 100%;
}
#logo-container {
  border-radius: 25px;
  width: fit-content;
  left: 15px;
  bottom: 15px;
  position: absolute;
}

#logo-container:hover {
  background: linear-gradient(to right, #2dace377 10%, #831f817c 50%, #e9501d81 90%);
}

/* hero mute knop */
.hero-sound-toggle {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 0;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* focus-stijl voor toegankelijkheid */
.hero-sound-toggle:focus {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* verborgen tekst voor screenreaders */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ------ NON-INDEX HERO ------ */
#non-index-header {
  object-fit: cover;
  border-radius: 15px;
  height: 500px;
  width: 100%;
}

.header {
  font-family: "Playfair Display",Georgia,serif;
}

.header-wrapper{
  position: relative;
}

.header-overlay{
  position: absolute;
  inset: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  color: white;
  padding: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.header-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
}

.header-overlay > *{
  position: relative;
  z-index: 1;
}

.header-title{
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: .25rem;
}

.header-links{
  display:flex;
  gap:.5rem;
  flex-wrap: wrap;
  justify-content:center;
}

@media (max-width: 992px){

  #header-container{
    padding: 1rem 0.5rem !important; 
    margin: 0 1rem !important;
  }

  #non-index-header{
    min-height: 220px;
  }

  .header-title{
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .header-links a{
    padding: .4rem .7rem;
    font-size: .9rem;
  }
}

@media (max-width: 576px){

  .header-overlay{
    align-items: flex-start;
    text-align: left;
    padding: 1rem .75rem;
  }

  .header-links a{
    padding: .2rem .35rem;
    font-size: .7rem;
  }

  .header-title{
    width: 100%;
  }

  .header-links{
    align-items: flex-start;
    max-width: 200px;
  }
}

@media (max-width: 393px){
  .header-overlay{
    padding: .8rem .65rem;
  }
}

@media (max-width: 353px){
  .header-overlay{
    padding: .5rem .55rem;
  }
}

/* === header-overlay: gradient buttons (niet-actief) + transparante actieve knop ===
   Plaats onderaan je stylesheet zodat bestaande media queries ongewijzigd blijven. */

/* basisstijl voor alle overlay knoppen */
.header-overlay .header-links .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .42rem .72rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease, background-position .25s ease;
  color: #fff;                      /* tekst wit op gradient of transparant */
  background: transparent;          /* default: transparant (activeer gradient via :not(.active)) */
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backface-visibility: hidden; /* kleine rendering-optimalisatie */
}

/* niet-actieve knoppen: gradient achtergrond */
.header-overlay .header-links .btn:not(.active) {
  background-image: var(--color-primary); /* verwacht: linear-gradient(...) in :root */
  background-size: 200% 100%;
  background-repeat: no-repeat;
  border-color: white;
  box-shadow: 0 8px 18px rgba(0,0,0,0.28);
  color: #fff;
}

/* subtiele beweging / shift op hover voor niet-actieven */
.header-overlay .header-links .btn:not(.active):hover {
  transform: translateY(-2px);
  background-position: 10% 0; /* lichte beweging in de gradient */
  box-shadow: 0 12px 26px rgba(0,0,0,0.32);
}

/* actieve knop: volledig transparant maar met zichtbare rand */
.header-overlay .header-links .btn.active,
.header-overlay .header-links .btn:active {
  background: transparent; /* strikt transparant zoals gevraagd */
  color: #fff;
  border: 1px solid rgba(255,255,255,0.32); /* zorgt voor duidelijke actieve visuele staat */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 6px 16px rgba(0,0,0,0.35);
  transform: none;
}

/* hover/focus voor actieve knop: subtiele highlight (houd 'transparant' gevoel) */
.header-overlay .header-links .btn.active:hover,
.header-overlay .header-links .btn.active:focus {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 20px rgba(0,0,0,0.36);
  transform: translateY(-1px);
}

/* focus-visible voor keyboardgebruikers (toegankelijkheid) */
.header-overlay .header-links .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(94,162,255,0.18), 0 8px 20px rgba(0,0,0,0.28);
  border-color: rgba(94,162,255,0.9);
}

/* kleine polijsting: als je variant links zonder .btn gebruikt (fallback) */
.header-overlay .header-links a:not(.btn) {
  color: #fff;
}

/* ------- Overzicht aanbod ------- */
.offer-img {
    width: 100%;
    height: 200px;        /* pas aan naar wens */
    object-fit: cover;
    border-radius: .25rem .25rem 0 0;
  }
  .offer-card { border: 0; } /* geen harde randen */
  .offer-card .card-body { padding: 1rem; }
  .offer-title { margin-bottom: .5rem; font-size: 1.05rem; }
  .offer-text { margin-bottom: .5rem; }
/* ------- /Overzicht aanbod ------- */

  /* Cookies */
.cookie-banner{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#1c1c1c;
color:white;
padding:20px;
display:none;
z-index:9999;
}

.cookie-inner{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.cookie-buttons{
display:flex;
gap:10px;
}

.cookie-settings-btn{
position:fixed;
bottom:20px;
right:20px;
z-index:9998;
padding: 0.1rem;
border-radius: 5px;
}

.map-consent-placeholder{
background:#f5f5f5;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
.cookie-tekst {
  font-size: 12px !important;
}
/* End Cookies */

/* ------- Homepage ------- */

/* ------- DIENSTEN ------- */
.diensten {
  background: var(--color-light-bg);
  padding: 3rem 0;
}
.diensten .cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.diensten .card {
  flex: 1;
  min-width: 250px;
  background: var(--color-bg);
  padding: 1.5rem;
  border: 1px solid var(--color-accent);
  border-radius: .5rem;
}
.diensten .card h3 {
  margin-bottom: .5rem;
}

/* ------- OVER ONS ------- */
.over-ons {
  padding: 3rem 0;
  text-align: center;
}

/* ------- CONTACT ------- */
.contact {
  background: var(--color-light-bg);
  padding: 3rem 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 1rem auto 0;
}
.contact-form input,
.contact-form textarea {
  padding: .75rem;
  border: 1px solid var(--color-accent);
  border-radius: .25rem;
}
.contact-form button {
  background: var(--color-primary);
  color: var(--color-bg);
  padding: .75rem;
  border: none;
  cursor: pointer;
}
/* ------ /Homepage ------ */

/* ------- FOOTER ------- */
.site-footer {
  text-align: center;
  padding: 1rem 0;
  font-size: .9rem;
  background: var(--color-primary);
  color: var(--color-bg);
}

/* HERO VID */

/* HERO layout */
.hero{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;          
  background-color: #000;    
}

/* achtergrond-video: vult de container en zit achter de content */
.hero-video{
  position: absolute;
  inset: 0;                  /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  object-fit: cover;         /* zachtere cover-behaviour */
  -o-object-fit: cover;
  z-index: 0;
  pointer-events: none;      /* voorkom interactie met de video */
}

/* overlay (optioneel) — zorgt voor meer contrast leesbaarheid */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
  z-index: 0;
}

@media (max-width: 786px) {
  .hero-video{
  height: 80vh;
}
.hero{
  height: 65vh;              
}
}

/* ------ Over Shuffle ------ */

/* Container */
.over-shuffle {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.75;
  box-sizing: border-box;
  width: 100%;
}
.over-shuffle .header-title {
  font-family: var(--font-serif);   
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.75rem);
  color: var(--color-text);
  line-height: 1.08;
  letter-spacing: -0.02em;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(33,37,41,0.06);
  margin-bottom: 1rem;
}

.over-shuffle p {
  color: rgba(33,37,41,0.88);
  font-size: 18px;
}

.over-shuffle a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.over-shuffle a:focus,
.over-shuffle a:focus-visible {
  outline: 3px solid rgba(148,210,189,0.14);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .over-shuffle {
    max-width: 100%;
    margin-top: 1rem;
  }
  .over-shuffle .header-title {
    font-size: 1.35rem;
    padding-bottom: 0.45rem;
  }
  .over-shuffle .inhoud {
    font-size: 1rem;
  }
}

/* ----- Bladeren ----- */
.leaf-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 260px;
  pointer-events: none;
  will-change: transform;
  overflow: visible;
}

/* image itself has the sway rotation animation */
.leaf {
  max-width: 160px;
  width: 80%;
  height: auto;
  display:block;
  transform-origin: 50% 20%;
  will-change: transform, opacity;
  opacity: 0.98;
  filter: drop-shadow(0 8px 18px rgba(20,20,20,0.06));
  animation: leaf-sway 4.8s ease-in-out infinite;
}

@keyframes leaf-sway {
  0%   { transform: translateX(-8px) rotate(-6deg); }
  50%  { transform: translateX(8px)  rotate(6deg);  }
  100% { transform: translateX(-8px) rotate(-6deg); }
}

.leaf-wrap.is-falling .leaf {
  transition: opacity 0.35s linear;
  opacity: 1;
}

@media (max-width: 720px) {
  .leaf-wrap[data-side="left"] { display: none !important; }
  .leaf-wrap[data-side="right"] { height: 180px; }
  .leaf-wrap[data-side="right"] .leaf { max-width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .leaf { animation: none !important; transition: none !important; }
  .leaf-wrap { will-change: auto; transform: none !important; }
}
/* ----- /Bladeren ----- */

/* ------ Missie & Visie ------ */
.col-lg-8 .video-wrap {
  width: 100%;
  aspect-ratio: 16/9; /* zorgt voor een consistente hoogte / verhouding */
  overflow: hidden;
  position: relative;
}

/* video vult de wrapper en wordt bijgesneden (cover) */
.col-lg-8 .video-wrap .missie-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* belangrijk voor 'vullen' zonder te rekken */
  display: block;
}

/* kleine mobiele tweak: als je wilt een iets hogere video op smalle schermen */
@media (max-width: 576px) {
  .col-lg-8 .video-wrap { aspect-ratio: 4/3; } /* meer verticale ruimte op mobiel */
}
/* ------ /Missie & Visie ------ */

/* ------ Index pagina ------ */
    .section-padding {
  padding: 3rem 0 4rem;
  background: #f5efe6;
}

.services-grid .service-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 180px;
  display: flex;
}

.services-grid .service-card .card-body {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding: 3rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .6rem;
  background: rgba(255,255,255,0.12);
  font-size: 1.4rem;
  margin-bottom: .6rem;
}

.service-title {
  margin-bottom: .25rem;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .25rem;
  font-weight: 500;
  font-family: var(--font-serif);
}

.service-description {
  margin-bottom: .8rem;
  opacity: .95;
}

.service-link {
  font-weight:600;
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  font-size:.95rem;
}

.services-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.card-orange{
  background:#B8491F !important;
  color:#fff !important;
}

.card-purple{
  background:#831F82 !important;
  color:#fff !important;
}

/* ervaringen */
/* Testimonial carousel styling */
  .testimonial-carousel .carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }

  .carousel-indicators button {
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .carousel-indicators [data-bs-target] {
    border: 1px #831F82 solid !important;
  }

  .testimonial-card {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    background-color: var(--color-light-bg);
    border-radius: 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    max-width: 900px;
    margin-left: 50%;
    transform: translate(-50%, 0);
  }

  .testimonial-card p {
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgb(55,65,81); /* slate-ish */
    margin: 0;
  }

  /* smaller screens: reduce text size */
  @media (max-width: 576px) {
    .testimonial-card p { font-size: 1.05rem; line-height:1.6; padding: 0 0.25rem; }
    .testimonial-card { padding: 0.7rem; width: 100%; }
  }
  /* ------ /ervaringen ------ */
/* ------ /Index pagina ------ */

/* ------ Contact ------ */
  /* contact cards */
  .contact-section { padding: 3rem 0; background: #ffffff; }
  .contact-grid > [class*="col-"] {
    display: flex;
    align-items: stretch;
  }
  .contact-grid > [class*="col-"] > a {
    display: flex !important;
    width: 100%;
    align-items: stretch;
  }
  .contact-grid .card-contact {
    border-radius: .5rem;
    border: 1px solid #d4d4d4;
    transition: border-color .18s, box-shadow .18s, transform .18s;
    height: 100%;
    min-height: 210px;
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #fff;
  }
  .card-contact .card-body {
    padding: 1.0rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: .35rem;
    min-height: 100%;
    width: 100%;
  }
  .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: .5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: .45rem;
    background: rgba(184,73,31,0.06); /* subtle orange bg */
    color: #B8491F;
    transition: transform .18s;
  }
  .card-contact:hover {
    box-shadow: 0 12px 30px rgba(15,23,42,0.06);
    transform: translateY(-4px);
    border-color: rgba(184,73,31,0.30);
  }
  .contact-title { font-family: "Georgia", serif; font-size: 1rem; margin: 0; font-weight: 600; }
  .contact-text { color: #374151; font-size: .9rem; margin: 0; }
  .link-phone, .link-email { text-decoration: none; color: inherit; }
  #contactForm > div + div { margin-top: 1rem; }
  #contactForm .custom-textarea { margin-bottom: 0.6rem; }
  /* special orange border for first card (address) */
  .border-highlight { border-color: var(--color-shuffle) !important; }
  /* responsive spacing */
  @media (max-width: 576px) {
    .contact-grid .col { margin-bottom: .75rem; }
  }

  /* Zorg dat lange woorden (zoals e-mailadressen) mogen breken */
.link-email .contact-text,
.link-email {
  /* moderne, veilige oplossing */
  overflow-wrap: anywhere;
  /* fallback voor oudere engines */
  overflow-wrap: break-word;
  /* extra: laat browser woordbreking toepassen wanneer nodig */
  word-break: break-word;
  /* optioneel: indien je wilt dat woorden worden afgebroken met streepjes */
  hyphens: auto;
}
/* ------ Contact form ------ */
/* Form look & feel (voeg toe in je externe stylesheet) */
.custom-input {
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  font-size: 15px;
  transition: border-color .18s, box-shadow .18s;
}

.custom-input:focus {
  box-shadow: 0 0 0 .15rem rgba(184,73,31,0.12);
  border-color: #B8491F;
  outline: none;
}

.custom-textarea {
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  font-size: 15px;
  resize: none; /* voorkomt resize-handles */
  min-height: 140px;
}

/* knop styling (kleine aanpassing om dezelfde padding/size te krijgen) */
.btn-primary {
  padding: 10px 20px;
  font-size: 14px;
}

/* kleine hover lift van de kaart container */
.bg-white.rounded-3.p-4.shadow-sm {
  transition: transform .18s, box-shadow .18s;
}
.bg-white.rounded-3.p-4.shadow-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}
/* ------ /Contact form */
/* ------ /Contact ------ */

/* ------ Donate ------ */
.donate-overlay{
  position: absolute;
  inset: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
@media (max-width: 619px) {
  #doneer-knop {margin-top: 0.5rem;}
  }

  /* Compact, responsive tekst voor beperkte ruimte */
#doneer-slogan.compact{
  font-size: clamp(12px, 1.6vw, 14px); /* schaalt met schermbreedte */
  margin-top: 2rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.7rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  background: rgba(0, 0, 0, 0.3); 
  border-radius: 6px;
}

/* Extra kleine schermen: slechts 2 regels hoog */
@media (max-width: 420px){
  #doneer-slogan.compact{
    font-size: 12px;
  }
  div.donate-overlay {
    inset: 1rem;
  }
}

  /* ------ /Donate ------ */

/* ------ Site Polish ------ */
:root {
  --font-base: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", "Playfair Display", Georgia, serif;
  --surface-soft: #fffaf6;
  --surface-card: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --shadow-soft: 0 18px 50px rgba(62, 39, 35, 0.10);
  --shadow-card: 0 18px 40px rgba(27, 32, 50, 0.12);
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(45, 171, 227, 0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(233, 79, 29, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f7f1ea 100%);
  color: #1f2933;
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
}

.section-padding {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.beige-bg {
  background: rgba(245, 242, 237, 0.78);
  backdrop-filter: blur(10px);
}

.btn-shuffle {
  background: linear-gradient(135deg, #7f1d7a 0%, #9b2565 46%, #e2552f 100%) !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  padding: 0.8rem 1.35rem !important;
  box-shadow: 0 12px 30px rgba(131, 31, 130, 0.24);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-shuffle:hover,
.btn-shuffle:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(131, 31, 130, 0.28);
  filter: saturate(1.03);
}

header.container-fluid {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(131, 31, 130, 0.08);
}

#navbar.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.9rem 0;
  background: rgba(255, 251, 247, 0.86) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(131, 31, 130, 0.1);
  box-shadow: 0 12px 30px rgba(28, 35, 51, 0.06);
}

.main-nav {
  gap: 0.35rem;
}

.main-nav .nav-link {
  position: relative;
  margin-left: 0;
  padding: 0.7rem 1rem !important;
  border-radius: 999px;
  color: #47324f !important;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  background: rgba(131, 31, 130, 0.08);
  color: #7f1d7a !important;
  transform: translateY(-1px);
}

.site-cta {
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
}

.site-cta-donate {
  background: rgba(255, 255, 255, 0.65);
  color: #a53d1f !important;
  border: 1px solid rgba(184, 73, 31, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.site-cta-contact {
  background: linear-gradient(135deg, #e2552f 0%, #ba431f 100%);
  border: 1px solid transparent;
}

.hero,
.header-wrapper {
  box-shadow: var(--shadow-soft);
}

.hero {
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  padding: 0;
  background: #000;
}

.hero-media-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: #111827;
  cursor: default;
}

.hero-media-card:focus-visible {
  outline: none;
}

.hero-video-hint {
  display: none;
}

.hero-fullscreen-toggle {
  display: none;
}

.hero-fullscreen-icon,
.hero-fullscreen-label {
  display: inline-flex;
  align-items: center;
}

#logo-container,
.hero-sound-toggle,
.hero-fullscreen-toggle {
  z-index: 2;
}

#logo-container {
  left: 2rem;
  bottom: 2rem;
  padding: 0.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
}

.hero-sound-toggle {
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.56);
  font-weight: 700;
}

.hero-media-card:fullscreen,
.hero-media-card:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  aspect-ratio: auto;
  border-radius: 0;
  background: #000;
}

.hero-media-card:fullscreen::after,
.hero-media-card:-webkit-full-screen::after {
  background: linear-gradient(180deg, rgba(20, 18, 33, 0.08) 0%, rgba(20, 18, 33, 0.22) 100%);
}

.hero-media-card:fullscreen .hero-video,
.hero-media-card:-webkit-full-screen .hero-video {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
  background: #000;
  filter: none;
}

.hero-media-card:fullscreen .hero-fullscreen-toggle,
.hero-media-card:-webkit-full-screen .hero-fullscreen-toggle,
.hero-media-card:fullscreen .hero-sound-toggle,
.hero-media-card:-webkit-full-screen .hero-sound-toggle {
  z-index: 3;
}

.header {
  padding-top: 1.35rem;
}

.header-wrapper {
  overflow: hidden;
  border-radius: var(--radius-xl);
  isolation: isolate;
}

.header-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 33, 0.12) 0%, rgba(20, 18, 33, 0.68) 100%);
  pointer-events: none;
}

#non-index-header {
  height: clamp(380px, 58vw, 560px);
  border-radius: var(--radius-xl);
  filter: saturate(0.96);
}

.header-overlay,
.donate-overlay {
  z-index: 1;
}

.header-overlay {
  inset: auto 2.2rem 2rem 2.2rem;
  max-width: min(820px, 100%);
  padding: 1.4rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 17, 28, 0.10) 0%, rgba(18, 17, 28, 0.42) 100%);
  backdrop-filter: blur(10px);
}

.header-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.header-links {
  gap: 0.75rem;
}

.header-overlay .header-links .btn {
  min-height: 44px;
  border-radius: 999px;
  padding: 0.62rem 1rem;
}

.over-shuffle {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.over-shuffle .container,
.contact .container {
  position: relative;
}

.over-shuffle p,
.donate-section-text,
.donate-side-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(31, 41, 51, 0.86);
}

.services-grid .service-card {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.services-grid .service-card .card-body {
  padding: 1.6rem;
}

.testimonial-card,
.bg-white.rounded-3.p-4.shadow-sm,
.card-contact {
  border-radius: 24px !important;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: 1.35rem 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -12px 28px rgba(28, 35, 51, 0.08);
}

.donate-hero .header-wrapper::after {
  background:
    radial-gradient(circle at top left, rgba(45, 171, 227, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(16, 11, 27, 0.10) 0%, rgba(16, 11, 27, 0.74) 100%);
}

.donate-overlay {
  position: absolute;
  inset: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 620px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 18, 33, 0.20) 0%, rgba(20, 18, 33, 0.62) 100%);
  backdrop-filter: blur(12px);
  color: #fff;
  text-align: left !important;
  text-shadow: none;
}

.donate-kicker,
.donate-section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donate-intro {
  max-width: 54ch;
  margin: 0.9rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.75;
}

.donate-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  width: min(100%, 520px);
}

.donate-field {
  grid-column: 1 / -1;
  margin-bottom: -0.1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.donate-input-wrap {
  display: flex;
  align-items: center;
  min-height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.donate-currency {
  padding: 0 1rem 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(71, 50, 79, 0.7);
}

.donate-input-wrap input {
  width: 100%;
  border: 0;
  padding: 1rem 1.2rem 1rem 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2933;
  background: transparent;
  outline: none;
}

.donate-submit {
  min-height: 60px;
  white-space: nowrap;
}

.donate-microcopy {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}

#doneer-slogan.compact {
  width: min(100%, 520px);
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 0.97rem;
  line-height: 1.6;
  text-shadow: none;
}

.iban {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.donate-page {
  position: relative;
}

.donate-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background: linear-gradient(180deg, rgba(45, 171, 227, 0.10) 0%, transparent 100%);
  pointer-events: none;
}

.donate-story-card,
.donate-side-card {
  position: relative;
  height: 100%;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 1px solid rgba(131, 31, 130, 0.09);
  border-radius: 28px;
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.donate-section-title,
.donate-side-title {
  margin: 1rem 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.12;
  color: #2b2030;
}

.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.donate-impact-item {
  padding: 1.15rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 244, 240, 0.95) 100%);
  border: 1px solid rgba(184, 73, 31, 0.10);
}

.donate-impact-item h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
  font-weight: 800;
  color: #4b2450;
}

.donate-impact-item p,
.donate-bank-details p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.donate-qr-shell {
  display: grid;
  place-items: center;
  margin: 1.5rem 0;
  padding: 1.15rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fff5ef 100%);
  border: 1px solid rgba(184, 73, 31, 0.10);
}

.donate-qr-image {
  max-width: 260px;
  border-radius: 18px;
}

.donate-qr-placeholder {
  display: grid;
  gap: 0.55rem;
  width: min(100%, 260px);
  min-height: 260px;
  padding: 1.4rem;
  border: 2px dashed rgba(127, 29, 122, 0.20);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 247, 241, 0.94) 100%);
  place-items: center;
  text-align: center;
}

.donate-qr-placeholder-label {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(127, 29, 122, 0.08);
  color: #7f1d7a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.donate-qr-placeholder strong {
  color: #2c2131;
  font-size: 1.15rem;
  font-family: var(--font-serif);
}

.donate-qr-placeholder p {
  margin: 0;
  color: rgba(31, 41, 51, 0.72);
  line-height: 1.6;
}

.donate-bank-details {
  display: grid;
  gap: 0.9rem;
}

.donate-bank-details strong {
  display: inline-block;
  margin-bottom: 0.18rem;
  color: #4b2450;
}

@media (max-width: 991px) {
  #header-container {
    margin: 0 1rem !important;
    padding: 0 !important;
  }

  .donate-impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .header-overlay,
  .donate-overlay {
    inset: auto 1rem 1rem 1rem;
  }

  .donate-overlay {
    position: absolute;
    inset: 1rem;
    justify-content: flex-end;
    max-width: none;
    width: auto;
    min-height: calc(100% - 2rem);
    padding: 1rem 0.95rem;
    border-radius: 24px;
  }

  .donate-overlay .header-title {
    margin-top: 0.45rem;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
  }

  .donate-intro {
    margin: 0.6rem 0 0.85rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .donate-microcopy {
    margin-top: 0.55rem;
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .donate-kicker {
    font-size: 0.7rem;
    padding: 0.3rem 0.55rem;
  }

  .donate-form {
    grid-template-columns: 1fr;
  }

  .donate-submit {
    width: 100%;
  }

  .donate-hero-actions {
    gap: 0.65rem;
  }

  .site-footer {
    border-radius: 22px 22px 0 0;
  }
}

@media (max-width: 576px) {
  .hero {
    border-radius: 0 0 26px 26px;
  }

  #logo-container {
    left: 1rem;
    bottom: 1rem;
  }

  #non-index-header {
    min-height: 500px;
  }

  .donate-overlay {
    inset: 0.9rem;
    min-height: calc(100% - 1.8rem);
    padding: 0.9rem 0.85rem;
    border-radius: 20px;
  }

  .donate-overlay .header-title {
    font-size: clamp(1.75rem, 10vw, 2.2rem);
    line-height: 0.9;
  }

  .donate-kicker {
    font-size: 0.66rem;
    padding: 0.28rem 0.5rem;
  }

  .donate-intro {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .donate-hero-actions {
    gap: 0.6rem;
  }

  .donate-secondary-link {
    font-size: 0.88rem;
  }

  .donate-microcopy {
    font-size: 0.74rem;
  }

  .donate-overlay .header-title {
    font-size: clamp(1.85rem, 11vw, 2.45rem);
    line-height: 0.92;
  }

  .donate-kicker {
    font-size: 0.72rem;
    padding: 0.34rem 0.62rem;
  }

  .donate-intro {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .donate-hero-actions {
    gap: 0.7rem;
  }

  .donate-secondary-link {
    font-size: 0.92rem;
  }

  .donate-microcopy {
    font-size: 0.8rem;
  }

  #header-container {
    margin: 0 0.85rem !important;
    padding: 0 !important;
  }

  .header-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .header-links {
    gap: 0.55rem;
    max-width: 100%;
  }

  .header-overlay .header-links .btn {
    width: 100%;
    justify-content: center;
  }

  .donate-overlay {
    inset: 1rem;
    padding: 1.2rem;
    border-radius: 24px;
  }

  #doneer-slogan.compact {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-shuffle,
  .site-cta,
  .main-nav .nav-link {
    transition: none;
  }
}
/* ------ /Site Polish ------ */
/* ------ Site Polish Fixes ------ */
#navbar.site-header {
  background: rgba(255, 249, 244, 0.94) !important;
}

.main-nav .nav-link {
  color: #5a3f62 !important;
}

.main-nav .nav-link[aria-current="page"],
.main-nav .nav-link.active {
  background: rgba(127, 29, 122, 0.10);
  color: #7f1d7a !important;
}

.site-cta-donate {
  background: rgba(255, 245, 239, 0.95);
  color: #8f2d5d !important;
  border-color: rgba(179, 70, 37, 0.18);
}

.site-cta-donate:hover,
.site-cta-donate:focus {
  background: rgba(255, 239, 230, 1);
  color: #7f1d7a !important;
}

.site-cta-contact {
  color: #fff !important;
}

.header-shell {
  position: absolute;
  inset: auto 1.8rem 1.8rem 1.8rem;
  z-index: 2;
  display: grid;
  gap: 1rem;
}

.header-overlay {
  position: relative;
  inset: auto;
  max-width: 720px;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(180deg, rgba(18, 17, 28, 0.16) 0%, rgba(18, 17, 28, 0.48) 100%);
}

.header-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.subnav-panel {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 28px;
  background: rgba(255, 250, 246, 0.94);
  box-shadow: 0 16px 36px rgba(27, 32, 50, 0.16);
  backdrop-filter: blur(12px);
}

.subnav-toggle {
  display: none;
}

.header-links-wrap {
  display: block;
}

.header-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.header-overlay .header-links .btn,
.subnav-panel .header-links .btn {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(127, 29, 122, 0.12);
  background: #fff;
  color: #5a3f62;
  box-shadow: none;
}

.subnav-panel .header-links .btn:not(.active),
.header-overlay .header-links .btn:not(.active) {
  background: linear-gradient(180deg, #ffffff 0%, #fff6f1 100%);
  color: #5a3f62;
  border-color: rgba(179, 70, 37, 0.10);
}

.subnav-panel .header-links .btn:not(.active):hover,
.subnav-panel .header-links .btn:not(.active):focus,
.header-overlay .header-links .btn:not(.active):hover,
.header-overlay .header-links .btn:not(.active):focus {
  background: linear-gradient(135deg, rgba(127, 29, 122, 0.92) 0%, rgba(178, 70, 37, 0.94) 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(127, 29, 122, 0.16);
}

.subnav-panel .header-links .btn.active,
.subnav-panel .header-links .btn:active,
.header-overlay .header-links .btn.active,
.header-overlay .header-links .btn:active {
  background: linear-gradient(135deg, #7f1d7a 0%, #b34625 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(127, 29, 122, 0.18);
}

.donate-overlay {
  max-width: 640px;
  background: linear-gradient(180deg, rgba(20, 18, 33, 0.22) 0%, rgba(20, 18, 33, 0.62) 100%);
}

.donate-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.65rem;
  align-items: center;
}

.donate-hero-actions .donate-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 60px;
  padding: 0.85rem 1.7rem !important;
  line-height: 1.1;
  text-align: center;
}

.donate-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94) !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
  font-weight: 700;
  text-decoration: none;
}

.donate-secondary-link:hover,
.donate-secondary-link:focus {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
}

.donate-page {
  padding-top: 2rem;
}

.donate-primary-card,
.donate-impact-card,
.donate-side-card,
.donate-trust-card {
  overflow: hidden;
}

.donate-primary-card {
  background:
    radial-gradient(circle at top right, rgba(45, 171, 227, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 242, 0.96) 100%);
}

.donate-payment-card {
  margin-top: 1.6rem;
  padding: 1.4rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(127, 29, 122, 0.08);
  box-shadow: 0 12px 30px rgba(27, 32, 50, 0.08);
}

.donate-amount-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.donate-preset {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(127, 29, 122, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f2 100%);
  color: #5a3f62;
  font-weight: 800;
}

.donate-preset:hover,
.donate-preset:focus,
.donate-preset.is-active {
  background: linear-gradient(135deg, #7f1d7a 0%, #b34625 100%);
  border-color: transparent;
  color: #fff;
}

.donate-input-wrap-page {
  min-height: 64px;
  border-color: rgba(127, 29, 122, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.donate-payment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.donate-form-note {
  color: rgba(31, 41, 51, 0.70);
  font-size: 0.94rem;
  line-height: 1.6;
}

.donate-impact-card {
  margin-top: 1.25rem;
}

.donate-impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.donate-side-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 245, 238, 0.96) 100%);
}

.donate-copy-btn {
  margin-top: 1.25rem;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(127, 29, 122, 0.08);
  color: #7f1d7a;
  font-weight: 800;
}

.donate-copy-btn:hover,
.donate-copy-btn:focus {
  background: rgba(127, 29, 122, 0.14);
  color: #7f1d7a;
}

.donate-trust-card {
  margin-top: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.donate-trust-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: rgba(31, 41, 51, 0.84);
}

.donate-trust-list li + li {
  margin-top: 0.7rem;
}

.services-grid .service-card {
  border-radius: 32px;
  overflow: hidden;
}

.services-grid .service-card .card-body {
  position: relative;
  padding: 2rem 1.9rem;
  border-radius: 32px;
}

.services-grid .service-card .oranje,
.services-grid .service-card .paars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.services-grid .service-card .oranje::after,
.services-grid .service-card .paars::after {
  display: none;
}

.services-grid .service-card .oranje:hover .service-title,
.services-grid .service-card .oranje:hover .service-description,
.services-grid .service-card .oranje:hover .service-link,
.services-grid .service-card .paars:hover .service-title,
.services-grid .service-card .paars:hover .service-description,
.services-grid .service-card .paars:hover .service-link {
  color: inherit !important;
}

.services-grid .service-card .service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.services-grid .service-card .service-title {
  margin-bottom: 0.7rem;
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  font-weight: 700;
}

.services-grid .service-card .service-description {
  max-width: 26ch;
  margin-bottom: 1.3rem;
  font-size: 1.03rem;
  line-height: 1.45;
}

.services-grid .service-card .service-link {
  font-weight: 800;
  text-decoration: none;
}

.services-grid .service-card:hover,
.services-grid .service-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(27, 32, 50, 0.16);
}

.services-grid .service-card:hover .service-icon,
.services-grid .service-card:focus-within .service-icon {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 28px rgba(0, 0, 0, 0.12);
}

.services-grid .service-card:hover .service-link,
.services-grid .service-card:focus-within .service-link {
  color: #fff !important;
}

@media (max-width: 991px) {
  .header-shell {
    inset: auto 1rem 1rem 1rem;
  }

  .header-overlay {
    max-width: 100%;
  }

  .subnav-panel {
    width: 100%;
  }

  .donate-payment-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .services-grid .service-card .card-body {
    padding: 1.75rem 1.55rem;
  }
}

@media (max-width: 767px) {
  .header-wrapper {
    overflow: hidden;
  }

  body.page-home {
    background: #f5efe6;
  }

  .hero {
    height: auto;
    padding: 0;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    background: #f5efe6;
    box-shadow: none;
    position: relative;
    z-index: 2;
  }

  .hero::before {
    display: none;
  }

  .hero-media-card {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 9.2;
    border-radius: inherit;
    border: 0;
    background: #111827;
    box-shadow: none;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
  }

  .hero-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(180deg, rgba(20, 18, 33, 0.12) 0%, rgba(20, 18, 33, 0.32) 100%),
      linear-gradient(135deg, rgba(233, 79, 29, 0.16) 0%, rgba(131, 31, 130, 0.24) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-media-card:focus-visible {
    outline: 3px solid rgba(45, 171, 227, 0.62);
    outline-offset: 4px;
  }

  .hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
    background: #111827;
    filter: saturate(0.94) contrast(1.02);
    border-radius: inherit;
    transform: translateZ(0);
  }

  .hero-fullscreen-toggle {
    display: inline-flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    top: 0.85rem;
    right: 0.85rem;
    padding: 0.62rem 0.88rem;
    border: 0;
    border-radius: 999px;
    background: rgba(34, 26, 44, 0.52);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(27, 32, 50, 0.14);
  }

  .hero-fullscreen-icon::before,
  .hero-fullscreen-icon::after {
    content: "";
    display: block;
  }

  .hero-fullscreen-toggle:not(.is-exit) .hero-fullscreen-icon {
    width: 0.8rem;
    height: 0.8rem;
    border: 2px solid currentColor;
    border-radius: 0.18rem;
  }

  .hero-fullscreen-toggle.is-exit {
    padding-inline: 0.78rem;
  }

  .hero-fullscreen-toggle.is-exit .hero-fullscreen-icon {
    position: relative;
    width: 0.9rem;
    height: 0.9rem;
  }

  .hero-fullscreen-toggle.is-exit .hero-fullscreen-icon::before,
  .hero-fullscreen-toggle.is-exit .hero-fullscreen-icon::after {
    position: absolute;
    top: 0.38rem;
    left: -0.02rem;
    width: 0.95rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .hero-fullscreen-toggle.is-exit .hero-fullscreen-icon::before {
    transform: rotate(45deg);
  }

  .hero-fullscreen-toggle.is-exit .hero-fullscreen-icon::after {
    transform: rotate(-45deg);
  }

  .hero-fullscreen-toggle.is-exit .hero-fullscreen-label {
    display: none;
  }

  .hero-sound-toggle {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.62rem 0.88rem;
    background: rgba(34, 26, 44, 0.52);
    font-size: 0.82rem;
  }

  #logo-container {
    display: none;
  }

  .header-shell {
    gap: 0.85rem;
    width: 100%;
  }

  .header-overlay {
    border-radius: 24px;
    padding-bottom: 1rem;
  }

  .subnav-panel {
    margin-top: 0;
    padding: 0.8rem;
    border-radius: 22px;
    width: 100%;
    background: rgba(255, 250, 246, 0.96);
    border-top: 0;
    box-shadow: 0 14px 24px rgba(27, 32, 50, 0.12);
    display: flex;
    flex-direction: column;
  }

  .subnav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 58px;
    padding: 0.95rem 1rem;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f1 100%);
    color: #2c2131;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  }

  .subnav-toggle-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
  }

  .subnav-toggle-label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(90, 63, 98, 0.66);
  }

  .subnav-toggle-current {
    font-size: 1rem;
    font-weight: 800;
    color: #5a3f62;
    line-height: 1.2;
  }

  .subnav-toggle-icon {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
  }

  .subnav-toggle-icon::before,
  .subnav-toggle-icon::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: #7f1d7a;
    transition: transform .2s ease;
  }

  .subnav-toggle-icon::before {
    left: 1px;
    transform: rotate(45deg);
  }

  .subnav-toggle-icon::after {
    right: 1px;
    transform: rotate(-45deg);
  }

  .subnav-panel.is-open .subnav-toggle-icon::before {
    transform: rotate(-45deg);
  }

  .subnav-panel.is-open .subnav-toggle-icon::after {
    transform: rotate(45deg);
  }

  .header-links-wrap {
    display: none;
    margin-top: 0.7rem;
    width: 100%;
  }

  .subnav-panel.is-open .header-links-wrap {
    display: block;
  }

  .header-links {
    /* display: grid; */
    width: 100%;
    gap: 0.55rem;
  }

  .header-overlay .header-links .btn,
  .subnav-panel .header-links .btn {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    font-size: 0.95rem;
    white-space: normal;
  }

  .subnav-panel.is-open {
    position: relative;
    background: rgba(255, 250, 246, 0.98);
    box-shadow: 0 18px 34px rgba(27, 32, 50, 0.18);
    max-height: min(48vh, 400px);
    overflow: hidden;
  }

  .subnav-panel.is-open .header-links-wrap {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(127, 29, 122, 0.08);
  }

  .subnav-panel.is-open .subnav-toggle {
    position: relative;
    flex: 0 0 auto;
  }

  .donate-hero-actions {
    width: 100%;
  }

  .donate-hero-actions .btn,
  .donate-secondary-link {
    width: 100%;
  }

  .services-grid .service-card .service-title {
    font-size: 1.55rem;
  }

  .services-grid .service-card .service-description {
    max-width: none;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    margin-bottom: 0;
    border-radius: 0 0 24px 24px;
  }

  .hero-media-card {
    aspect-ratio: 16 / 9.8;
    border-radius: inherit;
  }

  .hero-fullscreen-toggle {
    top: 0.7rem;
    right: 0.7rem;
  }

  .hero-sound-toggle {
    bottom: 0.7rem;
    right: 0.7rem;
  }

  #logo-container {
    left: 0.7rem;
    bottom: 0.7rem;
  }

  .header-shell {
    position: absolute;
    inset: auto 0.85rem 0.85rem 0.85rem;
    width: auto;
  }

  .header-overlay {
    padding: 1rem;
    border-radius: 20px;
    max-width: 100%;
  }

  .subnav-panel {
    width: 100%;
    padding: 0.8rem;
    border-radius: 22px;
  }

  .subnav-panel.is-open .header-links-wrap {
    margin-top: 0.5rem;
  }

  .subnav-toggle {
    min-height: 62px;
    padding: 1rem 1.05rem;
    border-radius: 16px;
  }

  .subnav-toggle-current {
    font-size: 0.98rem;
  }

  .header-links {
    gap: 0.65rem;
  }

  .subnav-panel .header-links .btn {
    min-height: 50px;
    padding: 0.9rem 1rem;
    font-size: 0.94rem;
    border-radius: 16px;
  }

  .donate-primary-card,
  .donate-impact-card,
  .donate-side-card,
  .donate-trust-card {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .donate-impact-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.2rem;
  }

  .donate-impact-item {
    padding: 1rem;
    border-radius: 18px;
  }

  .donate-side-title,
  .donate-section-title {
    font-size: 1.55rem;
  }

  .donate-payment-card {
    padding: 1rem;
  }

  .donate-amount-presets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ------ /Site Polish Fixes ------ */
/* ------ Overzicht Refresh ------ */
.overview-shell {
  position: relative;
}

.overview-hero-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid rgba(127, 29, 122, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(45, 171, 227, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 241, 0.96) 100%);
  box-shadow: 0 22px 46px rgba(27, 32, 50, 0.10);
}

.overview-copy {
  max-width: 680px;
}

.overview-eyebrow,
.overview-group-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(127, 29, 122, 0.08);
  color: #7f1d7a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overview-title {
  margin: 1rem 0 0.8rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #2c2131;
}

.overview-intro,
.overview-group-intro {
  margin: 0;
  color: rgba(31, 41, 51, 0.78);
  font-size: 1.02rem;
  line-height: 1.8;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1rem;
}

.overview-stat {
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(179, 70, 37, 0.08);
  text-align: center;
}

.overview-stat strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: #7f1d7a;
}

.overview-stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(31, 41, 51, 0.68);
  font-size: 0.92rem;
}

.overview-toolbar {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 1.2rem;
  border-radius: 28px;
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid rgba(127, 29, 122, 0.06);
  box-shadow: 0 16px 38px rgba(27, 32, 50, 0.08);
}

.overview-search-wrap {
  position: relative;
}

.overview-search {
  width: 100%;
  min-height: 60px;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(127, 29, 122, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #2c2131;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.overview-search:focus {
  outline: none;
  border-color: rgba(127, 29, 122, 0.32);
  box-shadow: 0 0 0 4px rgba(127, 29, 122, 0.08);
}

.overview-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.overview-filter {
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(127, 29, 122, 0.10);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
  color: #5a3f62;
  font-weight: 800;
}

.overview-filter:hover,
.overview-filter:focus,
.overview-filter.is-active {
  background: linear-gradient(135deg, #7f1d7a 0%, #b34625 100%);
  border-color: transparent;
  color: #fff;
}

.overview-group + .overview-group {
  margin-top: 2rem;
}

.overview-group-header {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.overview-group-title {
  margin: 0.9rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  color: #2c2131;
}

.overview-grid {
  margin-top: 0.1rem;
}

.overview-offer-card {
  position: relative;
  border: 1px solid rgba(127, 29, 122, 0.08);
  border-radius: 30px !important;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 243, 0.98) 100%),
    linear-gradient(135deg, rgba(127, 29, 122, 0.12), rgba(179, 70, 37, 0.12));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 20px 44px rgba(27, 32, 50, 0.10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.overview-offer-card:hover,
.overview-offer-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(127, 29, 122, 0.16);
  box-shadow: 0 28px 56px rgba(27, 32, 50, 0.16);
}

.overview-card-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(250, 243, 236, 0.95), rgba(255, 255, 255, 0.98));
}

.overview-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(20, 18, 33, 0.72);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.overview-card-sheen {
  position: absolute;
  inset: auto -15% -30% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.overview-offer-card .offer-img {
  height: 220px;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transition: transform .45s ease, filter .45s ease;
}

.overview-offer-card:hover .offer-img,
.overview-offer-card:focus-within .offer-img {
  transform: scale(1);
  filter: saturate(1.04);
}

.overview-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.3rem 1.35rem 1.35rem;
}

.overview-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: rgba(90, 63, 98, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.overview-card-kicker {
  color: #7f1d7a;
}

.overview-card-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(179, 70, 37, 0.55);
}

.overview-offer-card .offer-title {
  min-height: auto;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
  color: #241929;
}

.overview-offer-card .offer-text {
  display: block;
  margin-bottom: 0;
  color: rgba(31, 41, 51, 0.78);
  line-height: 1.65;
}

.overview-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(127, 29, 122, 0.08);
}

.overview-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7f1d7a 0%, #b34625 100%);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(127, 29, 122, 0.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.overview-card-link:hover,
.overview-card-link:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(127, 29, 122, 0.24);
  filter: brightness(1.02);
  text-decoration: none;
}

.overview-empty-state {
  margin: 2rem 0 0;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.94);
  border: 1px solid rgba(127, 29, 122, 0.08);
  color: rgba(31, 41, 51, 0.75);
  font-weight: 700;
}

#imageModal {
  background: rgba(12, 11, 18, 0.72);
  z-index: 2000;
}

.modal-backdrop.show {
  z-index: 1990;
}

.overview-modal-content {
  background: transparent;
  box-shadow: none;
}

.overview-modal-body {
  position: relative;
  padding: 3.75rem 1rem 1rem;
}

.overview-modal-viewport {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 84vh;
  overflow: auto;
  padding: 0.5rem;
}

.overview-modal-body #lightboxImage {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: calc(84vh - 1rem);
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #fff;
  cursor: zoom-in;
}

.overview-modal-body #lightboxImage.is-zoomed {
  width: max-content;
  min-width: 140%;
  max-width: none;
  max-height: none;
  cursor: zoom-out;
}

.overview-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.96);
  opacity: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.20);
}

.overview-modal-viewport.is-zoomed {
  display: block;
  cursor: zoom-out;
}

.overview-modal-viewport.is-zoomed #lightboxImage {
  margin: 0;
}

@media (max-width: 767px) {
  .overview-modal-body #lightboxImage,
  .overview-modal-body #lightboxImage.is-zoomed,
  .overview-modal-viewport.is-zoomed {
    cursor: default;
  }
}

@media (max-width: 991px) {
  .overview-hero-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .overview-stats {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .overview-toolbar {
    padding: 1rem;
    border-radius: 22px;
  }

  .overview-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-filter {
    width: 100%;
  }

  .overview-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .overview-card-link {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .overview-hero-card {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .overview-stats {
    grid-template-columns: 1fr 1fr;
  }

  .overview-offer-card .offer-img {
    height: auto;
    object-fit: contain;
  }

  .overview-card-body {
    padding: 1.1rem;
  }

  .overview-offer-card .offer-title {
    font-size: 1.3rem;
  }
}
/* ------ /Overzicht Refresh ------ */
/* ------ FAQ Page ------ */
.faq-page {
  position: relative;
}

.faq-hero {
  margin-bottom: 2rem;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(45, 171, 227, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 246, 239, 0.96) 100%);
  border: 1px solid rgba(127, 29, 122, 0.08);
  box-shadow: 0 18px 42px rgba(27, 32, 50, 0.08);
}

.faq-eyebrow,
.faq-side-label {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(127, 29, 122, 0.08);
  color: #7f1d7a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-title {
  margin: 1rem 0 0.8rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  color: #2c2131;
}

.faq-intro,
.faq-side-text {
  margin: 0;
  color: rgba(31, 41, 51, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(127, 29, 122, 0.08) !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 249, 244, 0.97) 100%);
  box-shadow: 0 14px 30px rgba(27, 32, 50, 0.07);
}

.faq-item .accordion-button {
  padding: 1.2rem 1.3rem;
  background: transparent;
  color: #2c2131;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.45;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  background: rgba(127, 29, 122, 0.05);
  color: #7f1d7a;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.faq-item .accordion-body {
  padding: 0 1.3rem 1.25rem;
  color: rgba(31, 41, 51, 0.78);
  line-height: 1.75;
}

.faq-side-card {
  position: sticky;
  top: 110px;
  padding: 1.45rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 244, 238, 0.97) 100%);
  border: 1px solid rgba(127, 29, 122, 0.08);
  box-shadow: 0 18px 38px rgba(27, 32, 50, 0.08);
}

.faq-side-title {
  margin: 1rem 0 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.1;
  color: #2c2131;
}

.faq-side-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.faq-side-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(127, 29, 122, 0.08);
  color: #7f1d7a;
  font-weight: 800;
  text-decoration: none;
}

.faq-side-link:hover,
.faq-side-link:focus {
  background: rgba(127, 29, 122, 0.14);
  color: #7f1d7a;
  text-decoration: none;
}

@media (max-width: 991px) {
  .faq-side-card {
    position: static;
  }
}

@media (max-width: 576px) {
  .faq-hero,
  .faq-side-card {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .faq-item {
    border-radius: 20px !important;
  }

  .faq-item .accordion-button,
  .faq-item .accordion-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* ------ /FAQ Page ------ */
/* ------ Subpage Refresh ------ */
.over-shuffle {
  position: relative;
  padding-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.over-shuffle .row {
  align-items: center;
}

.over-shuffle .col-lg-8.py-lg-5.py-3:not(.mx-auto) {
  position: relative;
  padding: clamp(1.4rem, 2.8vw, 2.3rem) !important;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(45, 171, 227, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 242, 0.92) 100%);
  border: 1px solid rgba(127, 29, 122, 0.06);
  box-shadow: 0 18px 42px rgba(27, 32, 50, 0.08);
}

.over-shuffle.beige-bg .col-lg-8.py-lg-5.py-3:not(.mx-auto) {
  background:
    radial-gradient(circle at top right, rgba(179, 70, 37, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 246, 0.96) 100%);
}

.over-shuffle .header-title {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(44, 33, 49, 0.08);
}

.over-shuffle .col-lg-8.py-lg-5.py-3 p,
.over-shuffle .col-lg-8.py-lg-5.py-3 ul,
.over-shuffle .col-lg-8.py-lg-5.py-3 ol {
  max-width: 68ch;
}

.over-shuffle .col-lg-8.py-lg-5.py-3 p + p {
  margin-top: 1.05rem;
}

.over-shuffle p {
  font-size: 1.04rem;
  line-height: 1.9;
}

.over-shuffle em {
  display: inline-block;
  padding: 0.15rem 0;
  color: #5d315f;
  font-style: italic;
}

.over-shuffle b,
.over-shuffle strong {
  color: #2c2131;
  font-weight: 800;
}

.over-shuffle a {
  color: #7f1d7a;
  text-decoration-color: rgba(127, 29, 122, 0.24);
  text-underline-offset: 0.18em;
}

.over-shuffle a:hover,
.over-shuffle a:focus {
  color: #b34625;
}

.over-shuffle img.img-fluid.rounded,
.over-shuffle .video-wrap,
.over-shuffle .img-fluid.rounded-xl,
.over-shuffle #map-section {
  display: block;
  width: 100%;
  border-radius: 30px !important;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(27, 32, 50, 0.12);
}

.over-shuffle .col-lg-8.mx-auto.py-lg-5.py-3 {
  position: relative;
}

.over-shuffle .col-lg-8.mx-auto.py-lg-5.py-3 > * {
  position: relative;
  z-index: 1;
}

.over-shuffle .video-wrap {
  background: #120f1d;
}

.over-shuffle .missie-video {
  border-radius: 30px;
}

.over-shuffle .leaf {
  opacity: 0.92;
  filter: drop-shadow(0 12px 26px rgba(27, 32, 50, 0.10));
}

@media (max-width: 991px) {
  .over-shuffle .col-lg-8.py-lg-5.py-3:not(.mx-auto) {
    border-radius: 24px;
    padding: 1.2rem !important;
  }

  .over-shuffle .col-lg-8.mx-auto.py-lg-5.py-3::before {
    inset: 0.8rem 0.4rem;
    border-radius: 28px;
  }
}

@media (max-width: 576px) {
  .over-shuffle {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .over-shuffle .header-title {
    max-width: none;
    padding-bottom: 0.75rem;
  }

  .over-shuffle img.img-fluid.rounded,
  .over-shuffle .video-wrap,
  .over-shuffle #map-section {
    border-radius: 22px !important;
  }
}
/* ------ /Subpage Refresh ------ */
