/* ═══════════════════════════════════════════════════════════════
   DE BOERVINDER — Shared Styles (alle pagina's)
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --forest:    #1a4a0a;
  --forest2:   #2d6b18;
  --moss:      #4a8c2a;
  --sage:      #8ab56a;
  --cream:     #f8f3e8;
  --parchment: #ede5cf;
  --warm:      #d4793a;
  --sky:       #3a8fd4;
  --text:      #1a2a0a;
  --muted:     #6a7a5a;
  --white:     #ffffff;
  --shadow:    rgba(20,50,5,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; }

/* ── Site header ──────────────────────────────────────────── */
.site-header {
  background: var(--forest);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
}
.site-logo-mark {
  width: 30px; height: 30px;
  background: var(--warm);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.site-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
}
.site-logo-text span { color: #f0c060; }

/* ── Desktop navigation ───────────────────────────────────── */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: rgba(248,243,232,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.site-nav a.nav-cta {
  background: var(--warm);
  color: #fff;
  font-weight: 600;
}
.site-nav a.nav-cta:hover { background: #c06a2e; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--cream);
  width: 36px; height: 36px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--forest);
  z-index: 99;
  flex-direction: column;
  padding: 20px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 10px;
  transition: background .15s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(255,255,255,0.12);
}
.mobile-nav a.nav-cta {
  background: var(--warm);
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ── Page content container ───────────────────────────────── */
.page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ── Hero banner (subpagina's) ────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest2) 100%);
  padding: 48px 20px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 180%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  color: rgba(248,243,232,0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}

/* ── Article typography ───────────────────────────────────── */
.article h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.article h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest2);
  margin: 28px 0 10px;
  line-height: 1.3;
}
.article p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}
.article strong { color: var(--forest); }
.article a { color: var(--forest); font-weight: 600; }

/* Tip box */
.tip-box {
  background: #fefce8;
  border-left: 4px solid #f0c060;
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0 24px;
  font-size: 0.88rem;
  line-height: 1.65;
}
.tip-box strong { color: #92400e; }

/* Info card */
.info-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px var(--shadow);
}
.info-card h3 {
  margin-top: 0;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question:hover { background: rgba(0,0,0,0.02); }
.faq-arrow {
  transition: transform .25s;
  font-size: 0.8rem;
  color: var(--muted);
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── CTA banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest2) 100%);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  margin: 40px 0;
}
.cta-banner h3 {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 1.2rem;
  margin: 0 0 8px;
}
.cta-banner p {
  color: rgba(248,243,232,0.72);
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.cta-btn {
  display: inline-block;
  background: var(--warm);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background .15s;
}
.cta-btn:hover { background: #c06a2e; }

/* ── Breadcrumbs ──────────────────────────────────────────── */
.breadcrumbs {
  padding: 14px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--forest);
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }

/* ── Site footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: rgba(248,243,232,0.6);
  padding: 40px 20px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .site-logo-text {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 8px;
}
.footer-col h4 {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: rgba(248,243,232,0.6);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 3px 0;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: rgba(248,243,232,0.6);
  text-decoration: none;
}
.footer-bottom a:hover { color: #fff; }

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-hero { padding: 32px 16px 36px; }
  .page-container { padding: 24px 16px 40px; }
}

/* ── Ad banner ────────────────────────────────────────────── */
.ad-banner-page {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  margin: 24px 0;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
