/* ===================================================
   logereninfrankrijk.nl — stijlblad v20260706
   =================================================== */

:root {
  --groen:       #2a6e57;
  --groen-donker:#1d4f3d;
  --groen-licht: #e8f3ef;
  --goud:        #c9933a;
  --goud-licht:  #f5e8d0;
  --crème:       #fdf9f3;
  --wit:         #ffffff;
  --tekst:       #1e2822;
  --tekst-zacht: #4a5c52;
  --rand:        #d6e5df;
  --schaduw:     0 2px 12px rgba(42,110,87,.10);
  --schaduw-lg:  0 6px 32px rgba(42,110,87,.15);
  --radius:      10px;
  --radius-lg:   18px;
  --overgang:    .22s ease;
  --max:         1180px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--crème);
  color: var(--tekst);
  line-height: 1.75;
}

/* --- typografie --- */
h1,h2,h3,h4 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--tekst);
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-bottom: .6rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: .4rem; }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1.1rem; color: var(--tekst-zacht); }
a  { color: var(--groen); text-decoration: none; transition: color var(--overgang); }
a:hover { color: var(--goud); }
ul,ol { padding-left: 1.4rem; margin-bottom: 1.1rem; color: var(--tekst-zacht); }
li { margin-bottom: .35rem; }
strong { color: var(--tekst); }
img { max-width: 100%; height: auto; display: block; }

/* --- layout helpers --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section--grijs { background: var(--groen-licht); }
.section--crème  { background: var(--crème); }
.section--donker { background: var(--groen-donker); color: var(--wit); }
.section--donker h2,
.section--donker h3,
.section--donker p { color: var(--wit); }

/* ===================================================
   NAVIGATIE
   =================================================== */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: var(--wit);
  border-bottom: 2px solid var(--groen-licht);
  box-shadow: var(--schaduw);
  transition: box-shadow var(--overgang);
}
.site-header.scrolled { box-shadow: var(--schaduw-lg); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo-tekst { display: flex; flex-direction: column; }
.logo-naam  { font-family: Georgia, serif; font-size: 1.05rem; font-weight: 700; color: var(--groen-donker); line-height: 1.1; white-space: nowrap; }
.logo-sub   { font-size: .68rem; color: var(--tekst-zacht); white-space: nowrap; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  display: block;
  padding: .45rem .75rem;
  font-size: .88rem;
  font-family: sans-serif;
  color: var(--tekst);
  border-radius: 6px;
  white-space: nowrap;
  transition: background var(--overgang), color var(--overgang);
}
.nav-links a:hover { background: var(--groen-licht); color: var(--groen); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: .7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  box-shadow: var(--schaduw-lg);
  min-width: 200px;
  padding: .5rem 0;
  z-index: 200;
}
.dropdown-menu a {
  display: block;
  padding: .45rem 1rem;
  font-size: .85rem;
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--groen-licht); }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

.nav-cta {
  background: var(--goud) !important;
  color: var(--wit) !important;
  border-radius: 6px;
  padding: .5rem 1rem !important;
  font-weight: 700;
  font-family: sans-serif;
  font-size: .85rem;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--groen) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--tekst);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--wit);
  border-top: 1px solid var(--rand);
  padding: 1rem 1.25rem;
  gap: .3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .6rem .5rem;
  font-size: .95rem;
  color: var(--tekst);
  border-bottom: 1px solid var(--groen-licht);
  font-family: sans-serif;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  margin-top: .5rem;
  text-align: center;
  background: var(--goud) !important;
  color: var(--wit) !important;
  border-radius: 6px;
  padding: .7rem 1rem !important;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--groen-donker);
}
.hero-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .42;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,60,42,.82) 0%, rgba(30,80,55,.55) 60%, rgba(180,120,30,.18) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem 4rem;
}
.hero h1 { color: var(--wit); margin-bottom: 1rem; max-width: 680px; }
.hero-sub { font-size: 1.18rem; color: rgba(255,255,255,.88); max-width: 560px; margin-bottom: 2rem; font-family: sans-serif; }
.hero-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--wit);
  font-size: .78rem;
  padding: .3rem .75rem;
  border-radius: 20px;
  font-family: sans-serif;
}
.hero-cta-groep { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ===================================================
   KNOPPEN
   =================================================== */
.btn {
  display: inline-block;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-family: sans-serif;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--overgang);
  text-decoration: none;
}
.btn-primair  { background: var(--goud); color: var(--wit); }
.btn-primair:hover { background: #b07c28; color: var(--wit); }
.btn-groen    { background: var(--groen); color: var(--wit); }
.btn-groen:hover { background: var(--groen-donker); color: var(--wit); }
.btn-outline  { background: transparent; border-color: var(--wit); color: var(--wit); }
.btn-outline:hover { background: rgba(255,255,255,.12); color: var(--wit); }
.btn-klein    { padding: .5rem 1.1rem; font-size: .85rem; }

/* ===================================================
   KAARTEN
   =================================================== */
.kaarten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.kaart {
  background: var(--wit);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--schaduw);
  transition: transform var(--overgang), box-shadow var(--overgang);
  display: flex;
  flex-direction: column;
}
.kaart:hover { transform: translateY(-4px); box-shadow: var(--schaduw-lg); }
.kaart-beeld {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--groen-licht);
}
.kaart-beeld-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--groen-licht) 0%, var(--goud-licht) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--groen);
}
.kaart-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.kaart-label {
  font-size: .72rem;
  font-family: sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--goud);
  margin-bottom: .4rem;
}
.kaart h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.kaart p  { font-size: .88rem; flex: 1; }
.kaart-voet { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--rand); }
.kaart-datum { font-size: .75rem; color: var(--tekst-zacht); font-family: sans-serif; }

/* ===================================================
   REGIO-TEGELS
   =================================================== */
.regio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.regio-tegel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  box-shadow: var(--schaduw);
  transition: transform var(--overgang), box-shadow var(--overgang);
}
.regio-tegel:hover { transform: translateY(-4px); box-shadow: var(--schaduw-lg); }
.regio-tegel-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
}
.regio-tegel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,55,38,.82) 0%, transparent 60%);
}
.regio-tegel-naam {
  position: relative; z-index: 2;
  padding: 1rem;
  color: var(--wit);
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}
.regio-tegel-naam small {
  display: block;
  font-size: .72rem;
  font-family: sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,.78);
  margin-top: .2rem;
}

/* placeholder regio-tegels */
.regio-bg-1 { background: linear-gradient(135deg,#2d7a5a,#4a9e78); }
.regio-bg-2 { background: linear-gradient(135deg,#5a7a2d,#8aae4a); }
.regio-bg-3 { background: linear-gradient(135deg,#7a5a2d,#c08050); }
.regio-bg-4 { background: linear-gradient(135deg,#2d5a7a,#4a80ae); }
.regio-bg-5 { background: linear-gradient(135deg,#7a2d5a,#ae4a80); }
.regio-bg-6 { background: linear-gradient(135deg,#5a2d7a,#8050c0); }
.regio-bg-7 { background: linear-gradient(135deg,#2d7a7a,#4aaeae); }
.regio-bg-8 { background: linear-gradient(135deg,#7a7a2d,#aeae4a); }
.regio-bg-9 { background: linear-gradient(135deg,#3d6e50,#6aae82); }
.regio-bg-10{ background: linear-gradient(135deg,#6e503d,#ae826a); }
.regio-bg-11{ background: linear-gradient(135deg,#3d4e6e,#6a82ae); }
.regio-bg-12{ background: linear-gradient(135deg,#6e3d4e,#ae6a82); }

/* ===================================================
   GITELAGRANGE GESPONSORD BLOK
   =================================================== */
.gitelagrange-blok {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--schaduw-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--wit);
  border: 2px solid var(--goud);
}
.gitelagrange-beeld { position: relative; min-height: 320px; }
.gitelagrange-beeld img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.gitelagrange-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.gesponsord-label {
  display: inline-block;
  background: var(--goud-licht);
  color: var(--goud);
  font-size: .7rem;
  font-weight: 700;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .65rem;
  border-radius: 4px;
  margin-bottom: .9rem;
  border: 1px solid var(--goud);
}
.gitelagrange-content h2 { color: var(--groen-donker); margin-bottom: .8rem; }
.gitelagrange-content p  { margin-bottom: .6rem; }
.gitelagrange-kenmerken { display: flex; flex-wrap: wrap; gap: .5rem; margin: .9rem 0 1.4rem; }
.kenmerk {
  background: var(--groen-licht);
  color: var(--groen-donker);
  font-size: .78rem;
  font-family: sans-serif;
  padding: .3rem .7rem;
  border-radius: 20px;
}

/* sidebar CTA voor blogs */
.gitelagrange-sidebar {
  background: linear-gradient(160deg, var(--groen-donker) 0%, var(--groen) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--schaduw);
  margin-bottom: 2rem;
}
.gitelagrange-sidebar img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .82;
}
.gitelagrange-sidebar-body {
  padding: 1.25rem;
  color: var(--wit);
}
.gitelagrange-sidebar-body .gesponsord-label {
  background: rgba(255,255,255,.15);
  color: var(--wit);
  border-color: rgba(255,255,255,.3);
}
.gitelagrange-sidebar-body h4 { color: var(--wit); margin-bottom: .5rem; font-size: 1rem; }
.gitelagrange-sidebar-body p  { color: rgba(255,255,255,.85); font-size: .85rem; margin-bottom: .9rem; }

/* ===================================================
   BLOG
   =================================================== */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.blog-artikel h2 { margin-top: 2rem; margin-bottom: .6rem; color: var(--groen-donker); }
.blog-artikel h3 { margin-top: 1.5rem; margin-bottom: .4rem; }
.blog-hero-img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 1.5rem; aspect-ratio: 16/7; object-fit: cover; }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-bottom: 1.5rem; font-family: sans-serif; font-size: .82rem; color: var(--tekst-zacht); }
.blog-meta-regio { background: var(--groen-licht); color: var(--groen); padding: .2rem .7rem; border-radius: 20px; font-weight: 700; }
.blog-inhoud { max-width: 72ch; }
.blog-inhoud p { font-size: 1.02rem; }

/* auteur blok */
.auteur-blok {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--groen-licht);
  border-left: 4px solid var(--groen);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem;
  margin: 2rem 0;
}
.auteur-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.auteur-info h4 { color: var(--groen-donker); margin-bottom: .25rem; }
.auteur-info p { font-size: .86rem; margin: 0; color: var(--tekst-zacht); }

/* inhoudsopgave */
.toc {
  background: var(--crème);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.toc h4 { font-size: .9rem; color: var(--groen-donker); margin-bottom: .7rem; font-family: sans-serif; }
.toc ol { padding-left: 1.2rem; margin: 0; }
.toc li { font-size: .88rem; margin-bottom: .3rem; }

/* pros cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.pros, .cons { background: var(--wit); border-radius: var(--radius); padding: 1rem 1.25rem; }
.pros { border-top: 3px solid #3aad6b; }
.cons { border-top: 3px solid #e05050; }
.pros h4 { color: #2a8050; margin-bottom: .6rem; }
.cons h4 { color: #c03030; margin-bottom: .6rem; }
.pros li::marker { color: #3aad6b; }
.cons li::marker { color: #e05050; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--rand); }
.faq-vraag {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0;
  font-size: 1rem; font-family: Georgia, serif; font-weight: 700;
  color: var(--tekst); text-align: left;
}
.faq-vraag .faq-icoon { flex-shrink: 0; width: 22px; height: 22px; background: var(--groen-licht); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--groen); transition: transform var(--overgang); }
.faq-vraag[aria-expanded="true"] .faq-icoon { transform: rotate(45deg); background: var(--groen); color: var(--wit); }
.faq-antwoord { padding: 0 0 1rem; display: none; }
.faq-antwoord p { margin: 0; }
.faq-antwoord.open { display: block; }

/* interne link blok */
.interne-links { background: var(--goud-licht); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 2rem 0; border-left: 4px solid var(--goud); }
.interne-links h4 { color: var(--groen-donker); margin-bottom: .6rem; font-size: .95rem; }
.interne-links ul { margin: 0; }
.interne-links li { font-size: .9rem; }

/* sidebar */
.sidebar {}
.sidebar-blok { background: var(--wit); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--schaduw); margin-bottom: 1.5rem; }
.sidebar-blok h4 { font-size: .95rem; color: var(--groen-donker); margin-bottom: .9rem; border-bottom: 2px solid var(--groen-licht); padding-bottom: .5rem; }
.sidebar-blok ul { list-style: none; padding: 0; margin: 0; }
.sidebar-blok li { padding: .35rem 0; border-bottom: 1px solid var(--groen-licht); font-size: .88rem; }
.sidebar-blok li:last-child { border-bottom: none; }

/* breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .82rem; font-family: sans-serif; color: var(--tekst-zacht); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--groen); }
.breadcrumb span { color: var(--tekst-zacht); }

/* ===================================================
   SECTIES — diversen
   =================================================== */
.intro-tekst { max-width: 680px; font-size: 1.08rem; }
.sectie-kop { text-align: center; margin-bottom: 3rem; }
.sectie-kop p { max-width: 600px; margin: .75rem auto 0; }

.statistieken { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; }
.stat { text-align: center; }
.stat-getal { font-size: 2.4rem; font-weight: 700; color: var(--groen); line-height: 1; }
.stat-label { font-size: .85rem; font-family: sans-serif; color: var(--tekst-zacht); margin-top: .3rem; }

.checklist { list-style: none; padding: 0; }
.checklist li { padding: .4rem 0 .4rem 1.8rem; position: relative; font-size: .95rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--groen); font-weight: 700; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--groen-donker);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-col h4 { color: var(--wit); font-size: .95rem; margin-bottom: 1rem; font-family: sans-serif; }
.footer-col p { font-size: .85rem; line-height: 1.6; margin-bottom: .5rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .45rem; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .85rem; font-family: sans-serif; transition: color var(--overgang); }
.footer-col a:hover { color: var(--goud); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.25rem 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: .75rem; font-size: .78rem; font-family: sans-serif;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--goud); }
.disclosure-zin { font-size: .78rem; color: rgba(255,255,255,.5); max-width: 680px; line-height: 1.5; margin-bottom: .5rem; }

/* ===================================================
   REGIO-LANDINGSPAGINA
   =================================================== */
.regio-hero { min-height: 380px; position: relative; display: flex; align-items: flex-end; overflow: hidden; background: var(--groen-donker); }
.regio-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,45,30,.88) 0%, rgba(15,45,30,.3) 70%, transparent 100%); }
.regio-hero-inner { position: relative; z-index: 2; padding: 3rem 1.25rem 2.5rem; max-width: var(--max); margin: 0 auto; width: 100%; }
.regio-hero-inner h1 { color: var(--wit); }
.regio-hero-inner p { color: rgba(255,255,255,.85); max-width: 560px; font-family: sans-serif; }

/* ===================================================
   BACK TO TOP
   =================================================== */
.back-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--groen);
  color: var(--wit);
  border: none; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem;
  box-shadow: var(--schaduw-lg);
  display: none; align-items: center; justify-content: center;
  transition: background var(--overgang);
  z-index: 90;
}
.back-top.zichtbaar { display: flex; }
.back-top:hover { background: var(--goud); }

/* ===================================================
   COOKIE BANNER
   =================================================== */
.cookie-banner {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--groen-donker);
  color: var(--wit);
  padding: 1.1rem 1.5rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.cookie-tekst { font-size: .87rem; font-family: sans-serif; flex: 1 1 300px; }
.cookie-tekst a { color: var(--goud); }
.cookie-knoppen { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-knoppen button { padding: .5rem 1.1rem; border-radius: 6px; border: none; cursor: pointer; font-size: .85rem; font-family: sans-serif; font-weight: 700; }
.btn-accepteer { background: var(--goud); color: var(--wit); }
.btn-weiger { background: transparent; border: 1px solid rgba(255,255,255,.4) !important; color: rgba(255,255,255,.8); }

/* ===================================================
   SKIP LINK & FOCUS
   =================================================== */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--groen); color: var(--wit); padding: .5rem 1rem; border-radius: 4px; font-family: sans-serif; z-index: 9999; }
.skip-link:focus { top: .5rem; }
:focus-visible { outline: 3px solid var(--goud); outline-offset: 2px; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .gitelagrange-blok { grid-template-columns: 1fr; }
  .gitelagrange-beeld { min-height: 260px; }
  .blog-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 440px; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .regio-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .statistieken { grid-template-columns: repeat(2, 1fr); }
  .kaarten-grid { grid-template-columns: 1fr; }
  .hero-cta-groep { flex-direction: column; align-items: flex-start; }
}

/* ===================================================
   AANBOD SECTIE + FILTER — regio-pagina's
   =================================================== */
.aanbod-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }

/* filterbar sidebar */
.filter-panel {
  background: var(--wit);
  border-radius: var(--radius-lg);
  box-shadow: var(--schaduw);
  padding: 1.5rem;
  position: sticky;
  top: 84px;
}
.filter-panel h3 { font-size: 1rem; margin-bottom: 1.25rem; color: var(--groen-donker); border-bottom: 2px solid var(--groen-licht); padding-bottom: .5rem; }
.filter-groep { margin-bottom: 1.25rem; }
.filter-groep-titel { font-family: sans-serif; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--tekst-zacht); margin-bottom: .6rem; }
.filter-item { display: flex; align-items: center; gap: .55rem; margin-bottom: .4rem; }
.filter-item input[type=checkbox],
.filter-item input[type=radio] { width: 17px; height: 17px; accent-color: var(--groen); cursor: pointer; flex-shrink: 0; }
.filter-item label { font-size: .87rem; font-family: sans-serif; color: var(--tekst); cursor: pointer; line-height: 1.3; }
.filter-reset { width: 100%; background: none; border: 1.5px solid var(--rand); border-radius: 6px; padding: .45rem; font-size: .82rem; font-family: sans-serif; color: var(--tekst-zacht); cursor: pointer; margin-top: .5rem; transition: border-color var(--overgang); }
.filter-reset:hover { border-color: var(--groen); color: var(--groen); }

/* listing grid */
.listing-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: .5rem; }
.listing-count { font-family: sans-serif; font-size: .88rem; color: var(--tekst-zacht); }
.listing-sort { font-family: sans-serif; font-size: .85rem; padding: .4rem .75rem; border: 1.5px solid var(--rand); border-radius: 6px; background: var(--wit); color: var(--tekst); cursor: pointer; }

.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }

.listing-kaart {
  background: var(--wit);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--schaduw);
  transition: transform var(--overgang), box-shadow var(--overgang);
  display: flex; flex-direction: column;
}
.listing-kaart:hover { transform: translateY(-3px); box-shadow: var(--schaduw-lg); }
.listing-kaart[data-hidden="true"] { display: none; }

.listing-beeld {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--groen-licht), var(--goud-licht));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.listing-beeld img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.listing-badge {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--goud); color: var(--wit);
  font-size: .68rem; font-family: sans-serif; font-weight: 700;
  padding: .2rem .55rem; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .05em;
}
.listing-badge.gesponsord { background: var(--groen); }

.listing-body { padding: 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.listing-naam { font-size: .98rem; font-weight: 700; color: var(--tekst); margin-bottom: .25rem; line-height: 1.3; }
.listing-locatie { font-size: .78rem; font-family: sans-serif; color: var(--tekst-zacht); margin-bottom: .5rem; }
.listing-kenmerken { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .65rem; }
.listing-kenmerk {
  background: var(--groen-licht); color: var(--groen-donker);
  font-size: .7rem; font-family: sans-serif;
  padding: .18rem .5rem; border-radius: 12px;
}
.listing-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--rand); }
.listing-prijs { font-size: .88rem; font-family: sans-serif; }
.listing-prijs strong { font-size: 1.1rem; color: var(--groen-donker); }
.listing-prijs span { font-size: .73rem; color: var(--tekst-zacht); }
.listing-cta { font-size: .8rem; font-family: sans-serif; font-weight: 700; color: var(--wit); background: var(--groen); padding: .38rem .8rem; border-radius: 6px; white-space: nowrap; transition: background var(--overgang); }
.listing-cta:hover { background: var(--goud); color: var(--wit); }

.listing-geen { display: none; text-align: center; padding: 3rem; font-family: sans-serif; color: var(--tekst-zacht); grid-column: 1/-1; }
.listing-geen.zichtbaar { display: block; }

/* kaart embed */
.kaart-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--schaduw); margin-top: 2rem; }
.kaart-embed iframe { display: block; width: 100%; height: 380px; border: none; }

/* traject info strip */
.regio-info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--schaduw);
  margin: 2rem 0;
}
.strip-item { text-align: center; }
.strip-icoon { font-size: 1.4rem; margin-bottom: .25rem; }
.strip-waarde { font-size: 1.05rem; font-weight: 700; color: var(--groen-donker); line-height: 1.2; }
.strip-label { font-size: .73rem; font-family: sans-serif; color: var(--tekst-zacht); }

/* seizoen tabel */
.seizoen-tabel { width: 100%; border-collapse: collapse; font-family: sans-serif; font-size: .85rem; margin: 1.25rem 0; }
.seizoen-tabel th { background: var(--groen-donker); color: var(--wit); padding: .5rem .75rem; text-align: left; font-size: .8rem; }
.seizoen-tabel td { padding: .5rem .75rem; border-bottom: 1px solid var(--rand); vertical-align: top; }
.seizoen-tabel tr:nth-child(even) td { background: var(--groen-licht); }
.seizoen-ster { color: var(--goud); }

/* feed placeholder banner */
.feed-placeholder-banner {
  background: linear-gradient(135deg, var(--groen-licht), var(--goud-licht));
  border: 2px dashed var(--groen);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-family: sans-serif;
  font-size: .85rem;
  color: var(--tekst-zacht);
  display: flex; align-items: center; gap: .75rem;
}

@media (max-width: 900px) {
  .aanbod-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
}
@media (max-width: 640px) {
  .listing-grid { grid-template-columns: 1fr; }
  .regio-info-strip { grid-template-columns: repeat(2, 1fr); }
}

/* regio content 2-koloms grid responsive */
.regio-content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
@media (max-width: 1020px) {
  .regio-content-grid { grid-template-columns: 1fr; }
}
