:root {
  --kleur-achtergrond: #f5f5f5;
  --kleur-tekst: #222222;
  --kleur-primair: #f07800;
  --kleur-primair-contrast: #ffffff;
  --kleur-zacht: #fff3e6;
  --font-koppen: Georgia, 'Times New Roman', serif;
  --font-tekst: Arial, Helvetica, sans-serif;
  --radius: 10px;
}

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

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

body {
  background: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  line-height: 1.6;
  min-width: 0;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--kleur-primair); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-koppen);
  color: var(--kleur-tekst);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* HEADER */
.site-header {
  background: var(--kleur-primair);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.logo-wrap { flex-shrink: 0; }

.logo-text {
  font-family: var(--font-koppen);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: bold;
  color: var(--kleur-primair-contrast);
  letter-spacing: 0.02em;
}

.logo-accent {
  background: var(--kleur-primair-contrast);
  color: var(--kleur-primair);
  border-radius: var(--radius);
  padding: 0.1em 0.35em;
  margin-left: 0.2em;
  font-style: italic;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.nav-link {
  color: var(--kleur-primair-contrast);
  font-family: var(--font-tekst);
  font-size: 0.95rem;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.2);
  text-decoration: none;
}

/* KNOPPEN */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-tekst);
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.2s, background 0.2s;
  min-height: 44px;
}

.btn-primair {
  background: var(--kleur-primair);
  color: var(--kleur-primair-contrast);
  border-color: var(--kleur-primair);
}

.btn-primair:hover { opacity: 0.88; text-decoration: none; }

.btn-omlijnd {
  background: transparent;
  color: var(--kleur-primair);
  border-color: var(--kleur-primair);
}

.btn-omlijnd:hover { background: var(--kleur-zacht); text-decoration: none; }

.btn-groot { font-size: 1.1rem; padding: 0.9rem 2rem; }

.btn-volledig { width: 100%; }

/* HERO */
.hero {
  background: var(--kleur-primair);
  color: var(--kleur-primair-contrast);
  padding: clamp(3rem, 8vw, 6rem) 1rem;
  text-align: center;
}

.hero-inner { max-width: 700px; margin: 0 auto; }

.hero-titel {
  font-family: var(--font-koppen);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--kleur-primair-contrast);
  margin-bottom: 0.5rem;
}

.hero-slogan {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-intro {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  opacity: 0.92;
}

.hero-knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-knoppen .btn-omlijnd {
  color: var(--kleur-primair-contrast);
  border-color: var(--kleur-primair-contrast);
}

.hero-knoppen .btn-omlijnd:hover { background: rgba(255,255,255,0.15); }

/* FOTOGRID HOME */
.foto-sectie {
  background: var(--kleur-zacht);
  padding: 2rem 1rem;
}

.foto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.fotoplekhouder {
  background: #e0d0c0;
  border-radius: var(--radius);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #7a5c3a;
  font-family: var(--font-tekst);
  font-size: 0.95rem;
  padding: 1rem;
  border: 2px dashed #c4a882;
}

.fotoplekhouder--groot { min-height: 280px; width: 100%; }

/* INTRO SECTIE */
.intro-sectie {
  padding: 2.5rem 1rem;
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.intro-sectie h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--kleur-primair);
}

.intro-sectie p { font-size: 1.05rem; }

/* DIENSTEN */
.diensten-sectie {
  background: var(--kleur-zacht);
  padding: 2.5rem 1rem;
}

.sectie-titel {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--kleur-primair);
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.dienst-kaart {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dienst-fotoplekhouder {
  background: #ffe8cc;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.dienst-inhoud {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.dienst-inhoud h3 {
  font-size: 1.2rem;
  color: var(--kleur-primair);
}

/* UITNODIGING */
.uitnodiging-sectie {
  background: var(--kleur-primair);
  padding: 3rem 1rem;
}

.uitnodiging-inner {
  text-align: center;
  max-width: 700px;
}

.uitnodiging-sectie h2 {
  color: var(--kleur-primair-contrast);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.uitnodiging-sectie p {
  color: var(--kleur-primair-contrast);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.uitnodiging-sectie a { color: var(--kleur-primair-contrast); font-weight: bold; }

.uitnodiging-knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.uitnodiging-knoppen .btn-primair {
  background: var(--kleur-primair-contrast);
  color: var(--kleur-primair);
  border-color: var(--kleur-primair-contrast);
}

.uitnodiging-knoppen .btn-omlijnd {
  color: var(--kleur-primair-contrast);
  border-color: var(--kleur-primair-contrast);
}

.uitnodiging-knoppen .btn-omlijnd:hover { background: rgba(255,255,255,0.15); }

/* PAGINA HERO */
.pagina-hero {
  background: var(--kleur-primair);
  color: var(--kleur-primair-contrast);
  padding: clamp(2rem, 6vw, 4rem) 1rem;
  text-align: center;
}

.pagina-hero h1 {
  font-family: var(--font-koppen);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--kleur-primair-contrast);
  margin-bottom: 0.5rem;
}

.pagina-hero p {
  font-size: 1.05rem;
  opacity: 0.93;
}

/* BROOD */
.brood-intro {
  padding: 2rem 1rem;
  max-width: 800px;
  font-size: 1.05rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.brood-sectie {
  background: var(--kleur-zacht);
  padding: 2rem 1rem;
}

.brood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto 2rem auto;
}

.brood-kaart {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
}

.brood-foto {
  background: #ffe8cc;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.brood-info { padding: 1rem; }

.brood-info h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--kleur-tekst);
}

.prijs {
  font-family: var(--font-koppen);
  font-size: 1.2rem;
  color: var(--kleur-primair);
  font-weight: bold;
}

.brood-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.brood-cta p { font-size: 1.05rem; margin-bottom: 1rem; }

/* BESTELSERVICE SECTIE */
.bestelservice-sectie {
  padding: 2.5rem 1rem 3rem;
}

.bestelservice-intro {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.bestelservice-intro h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--kleur-primair);
  margin-bottom: 0.75rem;
}

.bestelservice-intro p {
  font-size: 1.05rem;
}

/* BESTELFORMULIER PRODUCTEN */
.form-fieldset {
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-legend {
  font-family: var(--font-koppen);
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--kleur-primair);
  padding: 0 0.5rem;
}

.bestel-producten {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.bestel-product-rij {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--kleur-zacht);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
}

.product-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  font-family: var(--font-tekst);
  font-size: 1rem;
  color: var(--kleur-tekst);
  cursor: default;
}

.product-naam {
  font-weight: bold;
}

.product-prijs {
  color: var(--kleur-primair);
  font-family: var(--font-koppen);
  font-size: 0.97rem;
  white-space: nowrap;
}

.aantal-veld {
  font-family: var(--font-tekst);
  font-size: 1rem;
  padding: 0.4rem 0.5rem;
  border: 1.5px solid #cccccc;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--kleur-tekst);
  width: 5rem;
  text-align: center;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.aantal-veld:focus {
  outline: none;
  border-color: var(--kleur-primair);
  background: #fff;
}

/* BARBECUE */
.bbq-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bbq-tekst h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--kleur-primair);
  margin-bottom: 0.75rem;
}

.bbq-tekst p { font-size: 1.05rem; margin-bottom: 0.75rem; }

.bbq-voordelen {
  background: var(--kleur-zacht);
  padding: 2rem 1rem;
}

.voordelen-lijst {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.voordelen-lijst li {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

.bbq-cta {
  background: var(--kleur-primair);
  padding: 2.5rem 1rem;
}

.bbq-cta-inner {
  text-align: center;
  max-width: 700px;
}

.bbq-cta h2 {
  color: var(--kleur-primair-contrast);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 0.75rem;
}

.bbq-cta p {
  color: var(--kleur-primair-contrast);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.bbq-knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.bbq-knoppen .btn-primair {
  background: var(--kleur-primair-contrast);
  color: var(--kleur-primair);
  border-color: var(--kleur-primair-contrast);
}

.bbq-knoppen .btn-omlijnd {
  color: var(--kleur-primair-contrast);
  border-color: var(--kleur-primair-contrast);
}

.bbq-knoppen .btn-omlijnd:hover { background: rgba(255,255,255,0.15); }

/* FORMULIER */
.formulier-sectie {
  background: var(--kleur-zacht);
  padding: 2rem 1rem;
}

.formulier-wrap {
  max-width: 700px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(0,0,0,0.09);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  margin: 0 auto;
}

.formulier-wrap h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--kleur-primair);
  margin-bottom: 0.5rem;
}

.formulier-wrap > p { font-size: 1rem; margin-bottom: 1.25rem; }

.bestel-formulier { display: flex; flex-direction: column; gap: 1rem; }

.form-groep { display: flex; flex-direction: column; gap: 0.3rem; }

.form-groep label {
  font-family: var(--font-tekst);
  font-weight: bold;
  font-size: 0.95rem;
  color: var(--kleur-tekst);
}

.verplicht { color: var(--kleur-primair); }

.form-groep input,
.form-groep textarea,
.form-groep select {
  font-family: var(--font-tekst);
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #cccccc;
  border-radius: var(--radius);
  background: #fafafa;
  color: var(--kleur-tekst);
  width: 100%;
  transition: border-color 0.2s;
}

.form-groep input:focus,
.form-groep textarea:focus,
.form-groep select:focus {
  outline: none;
  border-color: var(--kleur-primair);
  background: #fff;
}

.form-groep textarea { resize: vertical; min-height: 120px; }

/* CONTACT */
.contact-sectie {
  padding: 2rem 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-info-blok h2,
.contact-formulier-blok h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--kleur-primair);
  margin-bottom: 0.75rem;
}

.contact-formulier-blok > p { font-size: 1rem; margin-bottom: 1rem; }

.info-kaart {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-rij {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.info-rij:last-child { margin-bottom: 0; }

.info-icoon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.info-rij strong { display: block; font-size: 0.9rem; color: #777; margin-bottom: 0.2rem; }

.info-rij p { font-size: 1rem; margin: 0; }

.tijden-tabel { width: 100%; border-collapse: collapse; font-size: 0.97rem; }

.tijden-tabel th { text-align: left; padding: 0.4rem 0.5rem 0.4rem 0; font-weight: bold; white-space: nowrap; }

.tijden-tabel td { padding: 0.4rem 0.5rem; }

.tijden-tabel tr:not(:last-child) th,
.tijden-tabel tr:not(:last-child) td { border-bottom: 1px solid #eeeeee; }

.routebeschrijving { padding-top: 1rem; }

.routebeschrijving h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--kleur-primair);
  margin-bottom: 0.75rem;
}

.routebeschrijving p { font-size: 1rem; margin-bottom: 1rem; }

.kaart-plekhouder {
  background: #e0e0e0;
  border-radius: var(--radius);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #666;
  font-size: 1rem;
  border: 2px dashed #bbbbbb;
  padding: 2rem;
  text-align: center;
}

/* FOOTER */
.site-footer {
  background: #2a2a2a;
  color: #dddddd;
  padding: 2.5rem 1rem 0;
  margin-top: 3rem;
  font-family: var(--font-tekst);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-blok h4 {
  font-family: var(--font-koppen);
  color: var(--kleur-primair);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.footer-blok p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
  color: #cccccc;
}

.footer-blok a { color: #f0a050; }
.footer-blok a:hover { color: #ffffff; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  color: #cccccc;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-nav a:hover { color: var(--kleur-primair); }

.footer-bottom {
  border-top: 1px solid #3f3f3f;
  padding: 1rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
}

/* RESPONSIVE */
@media (min-width: 640px) {
  .bbq-intro {
    flex-direction: row;
    align-items: flex-start;
  }

  .bbq-foto-wrap { flex: 0 0 300px; }
  .bbq-tekst { flex: 1; }

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

@media (min-width: 900px) {
  .header-inner { flex-wrap: nowrap; }
}

