﻿/* === PLACEHOLDERS ===
   Zoek naar de volgende strings om alle placeholders in één keer te vervangen:
   PLACEHOLDER_EMAIL        → het e-mailadres van Judith
   PLACEHOLDER_KVK          → KVK-nummer van Judith Hoogstra
   PLACEHOLDER_TELEFOON     → telefoonnummer van Judith
   PLACEHOLDER_TARIEF       → prijs per traject (bijv. €275)
   PLACEHOLDER_DOMEIN       → het definitieve domein (bijv. www.judithhoogstra.nl)
*/

/* === FONTS === */
@font-face {
  font-family: 'Antropos';
  src: url('../fonts/antrf___.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === KLEURENPALET ===
   Primair: warm goud/okergeel — verwijst naar "Judith Hoogstra"
   Secundair: zacht groen — rust, groei, natuur (past bij Judith's achtergrond)
   Achtergrond: warm gebroken wit
*/
:root {
  --kleur-goud:       #C8922A;
  --kleur-goud-licht: #F5E6C8;
  --kleur-goud-donker:#8A6018;
  --kleur-groen:      #4A7C59;
  --kleur-groen-licht:#D6EBD9;
  --kleur-groen-donker:#2E5038;
  --kleur-wit:        #FDFAF5;
  --kleur-tekst:      #2C2A24;
  --kleur-tekst-licht:#6B6860;
  --kleur-lijn:       #E8E2D4;
  --kleur-achtergrond:#F7F2E8;

  --lettertype-kop:   'Antropos', Georgia, serif;
  --lettertype-tekst: 'Inter', system-ui, sans-serif;

  --breedte-max:      1100px;
  --ruimte-s:         0.75rem;
  --ruimte-m:         1.5rem;
  --ruimte-l:         3rem;
  --ruimte-xl:        5rem;

  --radius-klein:     6px;
  --radius-groot:     16px;
}

/* === BASIS === */
body {
  font-family: var(--lettertype-tekst);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--kleur-tekst);
  background: var(--kleur-wit);
}

h1, h2, h3, h4 {
  font-family: var(--lettertype-kop);
  font-weight: 500;
  line-height: 1.3;
  color: var(--kleur-tekst);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1.25rem; color: var(--kleur-tekst); }
p:last-child { margin-bottom: 0; }

/* === HERO === */
.hero-sectie {
  background:
    linear-gradient(rgba(247,242,232,0.80), rgba(247,242,232,0.80)),
    url('../images/botanisch.png') no-repeat bottom center / cover;
  padding: var(--ruimte-xl) 0;
  border-bottom: 1px solid var(--kleur-lijn);
}

/* === NAVIGATIE === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--kleur-wit);
  border-bottom: 1px solid var(--kleur-lijn);
}
.nav-inner {
  max-width: var(--breedte-max);
  margin: 0 auto;
  padding: 0 var(--ruimte-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--lettertype-kop);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--kleur-goud-donker);
  letter-spacing: -0.01em;
}
.nav-logo span {
  color: var(--kleur-groen);
}
.nav-links {
  display: flex;
  gap: var(--ruimte-m);
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--kleur-tekst-licht);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.actief {
  color: var(--kleur-goud-donker);
  border-bottom-color: var(--kleur-goud);
}
.nav-cta {
  background: var(--kleur-goud);
  color: #fff !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-klein);
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--kleur-goud-donker) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--kleur-tekst);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* === LAYOUT HELPERS === */
.container {
  max-width: var(--breedte-max);
  margin: 0 auto;
  padding: 0 var(--ruimte-m);
}
.sectie {
  padding: var(--ruimte-xl) 0;
}
.sectie-smal {
  padding: var(--ruimte-l) 0;
}
.sectie-achtergrond {
  background: var(--kleur-achtergrond);
}
.sectie-groen {
  background: var(--kleur-groen-licht);
}

/* === KNOP === */
.knop {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-klein);
  font-family: var(--lettertype-tekst);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}
.knop-goud {
  background: var(--kleur-goud);
  color: #fff;
}
.knop-goud:hover {
  background: var(--kleur-goud-donker);
}
.knop-omlijnd {
  background: transparent;
  color: var(--kleur-goud-donker);
  border: 1.5px solid var(--kleur-goud);
}
.knop-omlijnd:hover {
  background: var(--kleur-goud-licht);
}

/* === KAARTEN === */
.kaart {
  background: var(--kleur-wit);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius-groot);
  padding: var(--ruimte-l);
}
.kaart-raster {
  display: grid;
  gap: var(--ruimte-m);
}
@media (min-width: 640px) {
  .kaart-raster-2 { grid-template-columns: 1fr 1fr; }
  .kaart-raster-3 { grid-template-columns: repeat(3, 1fr); }
}

/* === PAGINA-HEADER === */
.pagina-header {
  background: var(--kleur-achtergrond);
  padding: var(--ruimte-l) 0;
  border-bottom: 1px solid var(--kleur-lijn);
}
.pagina-header h1 {
  margin-bottom: 0.5rem;
}
.pagina-header p {
  color: var(--kleur-tekst-licht);
  font-size: 1.1rem;
}

/* === LABEL === */
.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kleur-groen);
  margin-bottom: 0.75rem;
}

/* === SCHEIDINGSLIJN === */
.lijn {
  border: none;
  border-top: 1px solid var(--kleur-lijn);
  margin: var(--ruimte-l) 0;
}

/* === LIJST MET VINKJES === */
.check-lijst {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.check-lijst li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--kleur-tekst);
}
.check-lijst li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--kleur-groen);
  border-bottom: 2px solid var(--kleur-groen);
  transform: rotate(-45deg);
}

/* === FOOTER === */
.footer {
  background: var(--kleur-tekst);
  color: rgba(255,255,255,0.75);
  padding: var(--ruimte-l) 0;
  font-size: 0.875rem;
}
.footer-inner {
  max-width: var(--breedte-max);
  margin: 0 auto;
  padding: 0 var(--ruimte-m);
  display: grid;
  gap: var(--ruimte-m);
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}
.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.footer a {
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer a:hover { color: #fff; }
.footer-onder {
  max-width: var(--breedte-max);
  margin: var(--ruimte-m) auto 0;
  padding: var(--ruimte-m) var(--ruimte-m) 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* === MOBIEL === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--kleur-wit);
    border-bottom: 1px solid var(--kleur-lijn);
    flex-direction: column;
    padding: 1rem var(--ruimte-m);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--kleur-lijn);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav { position: relative; }
  .kaart { padding: var(--ruimte-m); }
}

/* === CITAAT === */
.citaat {
  border-left: 3px solid var(--kleur-goud);
  padding-left: var(--ruimte-m);
  font-family: var(--lettertype-kop);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--kleur-tekst);
  margin: var(--ruimte-m) 0;
}

/* === HIGHLIGHT BOX === */
.highlight {
  background: var(--kleur-goud-licht);
  border-left: 4px solid var(--kleur-goud);
  border-radius: 0 var(--radius-klein) var(--radius-klein) 0;
  padding: 1rem 1.25rem;
  margin: var(--ruimte-m) 0;
}

/* === TWEEKOLOMS LAYOUT === */
.twee-kolommen {
  display: grid;
  gap: var(--ruimte-l);
  align-items: center;
}
@media (min-width: 768px) {
  .twee-kolommen { grid-template-columns: 1fr 1fr; }
}
