/* ── RESET & BASIS ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --groen:        #1B4D2E;
  --groen-licht:  #2A6B42;
  --rood:         #7B1C1C;
  --oranje:       #D4700A;
  --crème:        #F7F3EC;
  --crème-donker: #EDE6D8;
  --tekst:        #1A1A1A;
  --subtiel:      #5A5A5A;
  --wit:          #ffffff;
}

html, body {
  height: 100%;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--crème);
  color: var(--tekst);
  font-size: 17px;
  line-height: 1.6;
}

/* ── TOPBAR ───────────────────────────────────────────────── */
header {
  background: var(--groen);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: .5px;
  text-decoration: none;
}
.topnav { display: flex; gap: 24px; }
.topnav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
}
.topnav a:hover { color: #fff; }

/* ── HAMBURGER ────────────────────────────────────────────── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 56px - 38px);
}

/* ── SIDEBAR ──────────────────────────────────────────────── */
aside {
  background: var(--groen);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-item {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  transition: background .18s, color .18s;
}
.nav-item:hover  { background: rgba(255,255,255,.12); color: #fff; }
.nav-item.actief { background: var(--rood); color: #fff; }
.nav-divider {
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 8px 4px;
}

/* ── MAIN ─────────────────────────────────────────────────── */
main {
  padding: 28px 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

/* ── TYPOGRAFIE ───────────────────────────────────────────── */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--groen);
  line-height: 1.2;
  margin-bottom: 6px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--groen);
  margin-bottom: 6px;
  margin-top: 4px;
}
h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--rood);
  margin-bottom: 4px;
}
.ondertitel {
  font-size: 15px;
  color: var(--subtiel);
  font-style: italic;
  margin-bottom: 8px;
}
p { font-size: 16px; line-height: 1.65; color: var(--tekst); }

/* ── INTRO TEKST ──────────────────────────────────────────── */
.intro-tekst {
  font-size: 16px;
  color: var(--tekst);
  line-height: 1.65;
  max-width: 680px;
}

/* ── KAARTEN (3-koloms) ───────────────────────────────────── */
.kaarten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.kaart {
  background: var(--wit);
  border-radius: 8px;
  padding: 16px;
  border-top: 4px solid var(--groen);
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.kaart-nr {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--crème-donker);
  line-height: 1;
  margin-bottom: 4px;
}
.kaart h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--groen);
  margin-bottom: 6px;
}
.kaart p { font-size: 14px; color: var(--subtiel); }

/* ── 2-KOLOMS KAARTEN ─────────────────────────────────────── */
.kaarten-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ── VOORDELEN BALK ───────────────────────────────────────── */
.voordelen {
  background: var(--groen);
  border-radius: 8px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.voordeel { text-align: center; color: #fff; }
.voordeel-icon { font-size: 26px; margin-bottom: 4px; }
.voordeel-label { font-size: 14px; font-weight: 600; line-height: 1.3; }

/* ── INFOBOX ──────────────────────────────────────────────── */
.infobox {
  background: var(--wit);
  border-left: 4px solid var(--groen);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.6;
}
.infobox.oranje { border-left-color: var(--oranje); }
.infobox.rood   { border-left-color: var(--rood); }

/* ── VOORBEELD BOX ────────────────────────────────────────── */
.voorbeeld {
  background: #EEF5F1;
  border: 1px solid #B8D4C2;
  border-radius: 8px;
  padding: 14px 18px;
}
.voorbeeld-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--groen);
  margin-bottom: 6px;
}
.voorbeeld p { font-size: 15px; }

/* ── STAPPENLIJST ─────────────────────────────────────────── */
.stappen { display: flex; flex-direction: column; gap: 10px; }
.stap {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--wit);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.stap-nr {
  background: var(--groen);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stap-tekst { font-size: 15px; line-height: 1.55; padding-top: 3px; }

/* ── LIJST ────────────────────────────────────────────────── */
ul.lijst {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
ul.lijst li {
  padding-left: 22px;
  position: relative;
  font-size: 16px;
  line-height: 1.55;
}
ul.lijst li::before {
  content: "●";
  color: var(--oranje);
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 4px;
}

/* ── CTA BALK ─────────────────────────────────────────────── */
.cta-balk {
  background: var(--crème-donker);
  border-left: 4px solid var(--oranje);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cta-tekst { font-size: 15px; line-height: 1.5; }
.cta-tekst strong { color: var(--groen); }

/* ── KNOPPEN ──────────────────────────────────────────────── */
.btn-oranje {
  background: var(--oranje);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}
.btn-oranje:hover { background: #b85e08; }

.pagina-nav {
  display: flex;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--crème-donker);
}
.btn-nav {
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s;
  display: inline-block;
}
.btn-grijs {
  background: var(--crème-donker);
  color: var(--subtiel);
  border: 1px solid #ccc;
}
.btn-grijs:hover { background: #ddd; }
.btn-rood {
  background: var(--rood);
  color: #fff;
  border: none;
  margin-left: auto;
}
.btn-rood:hover { background: #5e1515; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--groen);
  color: rgba(255,255,255,.6);
  font-size: 13px;
  text-align: center;
  padding: 10px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 720px) {
  header { padding: 0 16px; }
  .logo  { font-size: 18px; }
  .topnav { display: none; }
  .menu-toggle { display: flex; }

  .shell { grid-template-columns: 1fr; }

  aside { display: none; padding: 12px 10px; order: 2; }
  aside.open { display: flex; }
  main  { padding: 18px 16px; max-width: 100%; order: 1; }

  h1 { font-size: 24px; }
  .kaarten   { grid-template-columns: 1fr; }
  .kaarten-2 { grid-template-columns: 1fr; }
  .voordelen { grid-template-columns: repeat(2, 1fr); }

  .cta-balk { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-oranje { width: 100%; text-align: center; }
  .pagina-nav { flex-wrap: wrap; }
  .btn-rood   { margin-left: 0; width: 100%; text-align: center; }
}
