:root {
  --kleur-achtergrond: #ffffff;
  --kleur-tekst: #2c2c2c;
  --kleur-primair: #f5921e;
  --kleur-primair-contrast: #ffffff;
  --kleur-zacht: #f5f0eb;
  --font-koppen: Georgia, 'Times New Roman', serif;
  --font-tekst: 'Helvetica Neue', Arial, sans-serif;
  --radius: 10px;
}

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

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

body {
  background-color: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  line-height: 1.65;
}

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);
  line-height: 1.25;
  color: var(--kleur-tekst);
}

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

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

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-koppen);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--kleur-primair-contrast);
  line-height: 1.1;
  background-color: rgba(255,255,255,0.15);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
}

.logo-nl {
  font-size: 1rem;
  font-weight: 400;
  vertical-align: baseline;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

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

.main-nav a:hover,
.main-nav a.actief {
  background-color: rgba(255,255,255,0.25);
  text-decoration: none;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* SECTIONS */
section {
  padding: 3rem 0;
}

.section-wit {
  background-color: var(--kleur-achtergrond);
}

.section-zacht {
  background-color: var(--kleur-zacht);
}

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

.section-primair h1,
.section-primair h2,
.section-primair h3,
.section-primair p {
  color: var(--kleur-primair-contrast);
}

.tekst-center {
  text-align: center;
}

/* GOLF OVERGANGEN */
.sectie-golf-onder {
  position: relative;
  padding-bottom: 5rem;
}

.sectie-golf-bodem {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.sectie-golf-bodem svg {
  display: block;
  width: 100%;
  height: 60px;
}

.sectie-golf-boven {
  position: relative;
  padding-top: 3rem;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #f5921e 0%, #e8781a 50%, #d4611a 100%);
  padding: 5rem 1rem 7rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255,255,255,0.2);
  color: var(--kleur-primair-contrast);
  font-size: 0.9rem;
  font-family: var(--font-tekst);
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.35);
}

.hero h1 {
  font-family: var(--font-koppen);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--kleur-primair-contrast);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-slogan {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--kleur-primair-contrast);
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.92;
}

.hero-slogan--compact {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1.25rem;
}

.hero-golf {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-golf svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* PAGINA HERO */
.pagina-hero {
  padding: 2.5rem 1rem;
}

.pagina-hero-golf {
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.pagina-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.pagina-hero p {
  font-size: 1.1rem;
}

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

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

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

.btn-wit:hover {
  background-color: var(--kleur-zacht);
  color: var(--kleur-primair);
}

.btn-wit-outline {
  background-color: transparent;
  color: var(--kleur-primair-contrast);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-wit-outline:hover {
  background-color: rgba(255,255,255,0.15);
  color: var(--kleur-primair-contrast);
}

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

.cta-knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* INTRO SECTION */
.intro h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 1rem;
  color: var(--kleur-primair);
}

.intro p {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* FOTO GRID */
.fotos h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--kleur-primair);
  margin-bottom: 1.5rem;
}

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

.foto-item img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.foto-placeholder {
  background-color: #e8ddd0;
  border: 2px dashed var(--kleur-primair);
  border-radius: var(--radius);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kleur-primair);
  font-size: 1rem;
  font-family: var(--font-tekst);
  text-align: center;
  padding: 1rem;
}

.foto-placeholder.groot {
  min-height: 300px;
  font-size: 1.1rem;
}

/* DIENSTEN KAARTEN */
.diensten h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--kleur-primair);
  margin-bottom: 1.5rem;
}

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

.kaart {
  background-color: var(--kleur-achtergrond);
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(0,0,0,0.09);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.kaart-icon {
  font-size: 2.5rem;
}

.kaart h3 {
  font-size: 1.3rem;
  color: var(--kleur-primair);
}

.kaart p {
  flex: 1;
  font-size: 0.97rem;
}

/* UITNODIGING */
.uitnodiging h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 1rem;
}

.uitnodiging p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* BROOD PAGINA */
.brood-intro h2,
.bezorgservice h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--kleur-primair);
  margin-bottom: 1rem;
}

.brood-intro p,
.bezorgservice p {
  max-width: 720px;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

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

.product-kaart {
  background-color: var(--kleur-achtergrond);
  border-radius: var(--radius);
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-foto {
  background-color: #e8ddd0;
  border-bottom: 2px dashed var(--kleur-primair);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kleur-primair);
  font-family: var(--font-tekst);
  font-size: 0.9rem;
  text-align: center;
  padding: 0.75rem;
}

.product-info {
  padding: 0.85rem 1rem;
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.prijs {
  color: var(--kleur-primair);
  font-weight: 700;
  font-size: 1rem;
}

/* BESTELFORMULIER */
.bestelformulier-sectie h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--kleur-primair);
  margin-bottom: 0.5rem;
}

.bestelformulier-sectie > .container > p {
  margin-bottom: 1.5rem;
}

fieldset {
  border: 2px solid #e0d5cb;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--kleur-achtergrond);
}

legend {
  font-family: var(--font-koppen);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kleur-primair);
  padding: 0 0.5rem;
}

.bestelling-tabel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bestelling-rij {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #ece4da;
}

.bestelling-rij:last-child {
  border-bottom: none;
}

.bestelling-header {
  font-weight: 700;
  font-family: var(--font-koppen);
  font-size: 0.9rem;
  color: var(--kleur-primair);
  border-bottom: 2px solid var(--kleur-primair) !important;
}

.bestelling-rij label {
  font-size: 1rem;
  cursor: default;
}

.prijs-label {
  font-size: 0.95rem;
  color: var(--kleur-primair);
  font-weight: 600;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

.bestelling-rij input[type="number"] {
  width: 70px;
  padding: 0.4rem 0.5rem;
  border: 2px solid #d0c6bc;
  border-radius: calc(var(--radius) / 2);
  font-size: 1rem;
  font-family: var(--font-tekst);
  text-align: center;
  background-color: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
}

.bestelling-rij input[type="number"]:focus {
  outline: none;
  border-color: var(--kleur-primair);
}

.form-veld {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-veld label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-veld input,
.form-veld select,
.form-veld textarea {
  padding: 0.65rem 0.85rem;
  border: 2px solid #d0c6bc;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-tekst);
  background-color: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  width: 100%;
  min-height: 44px;
  transition: border-color 0.2s;
}

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

.form-veld textarea {
  resize: vertical;
  min-height: 100px;
}

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

.form-opmerking {
  margin-top: 0.75rem;
  color: #6b6b6b;
  font-size: 0.875rem;
}

/* PRODUCT LABEL MET KLEINE FOTO */
.product-label-foto {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  cursor: default;
}

.bestelling-foto {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

/* BESTELLING TOTAAL */
.bestelling-totaal {
  margin-top: 1rem;
  text-align: right;
  font-size: 1.05rem;
}

/* BARBECUE PAGINA */
.bbq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

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

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

.bbq-tekst .btn {
  margin-top: 0.5rem;
}

.bbq-pakket h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--kleur-primair);
  margin-bottom: 1.5rem;
}

.pakket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pakket-item {
  background-color: var(--kleur-achtergrond);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.pakket-icon {
  font-size: 2rem;
}

.pakket-opmerking {
  font-style: italic;
  font-size: 0.97rem;
  color: #555;
}

.bbq-cta h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.75rem;
}

.bbq-cta p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

.link-wit {
  color: var(--kleur-primair-contrast);
  text-decoration: underline;
}

/* CONTACT PAGINA */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-gegevens h2,
.contact-route h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--kleur-primair);
  margin-bottom: 1.25rem;
}

.gegevens-blok {
  margin-bottom: 1.25rem;
}

.gegevens-blok h3 {
  font-size: 1rem;
  color: var(--kleur-primair);
  margin-bottom: 0.3rem;
}

.gegevens-blok p,
.gegevens-blok a {
  font-size: 1rem;
}

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

.tijden-tabel th,
.tijden-tabel td {
  padding: 0.4rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid #e0d5cb;
}

.tijden-tabel th {
  font-weight: 600;
  color: var(--kleur-tekst);
  white-space: nowrap;
}

.kaart-placeholder {
  background-color: #e8ddd0;
  border: 2px dashed var(--kleur-primair);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kleur-primair);
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  margin-bottom: 1rem;
}

.contact-route p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

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

.contact-formulier > .container > p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.formulier-smal {
  max-width: 640px;
}

.contactformulier fieldset {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
}

/* FOOTER */
.site-footer {
  background-color: #2c2c2c;
  color: #d0cac3;
  padding: 2.5rem 0 0;
  font-size: 0.92rem;
}

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

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

.footer-blok p {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.footer-blok a {
  color: #d0cac3;
  text-decoration: none;
}

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

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

.footer-blok nav a {
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: #888;
}

/* MEDIA QUERIES */
@media (min-width: 640px) {
  .bbq-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .bestelling-rij {
    grid-template-columns: 1fr 120px 90px;
  }
}

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

  .logo-text {
    font-size: 2rem;
  }

  section {
    padding: 4rem 0;
  }

  .sectie-golf-onder {
    padding-bottom: 6rem;
  }

  .hero {
    padding: 6rem 1rem 8rem;
  }

  .hero-golf svg {
    height: 80px;
  }

  .pagina-hero-golf {
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .logo-text {
    font-size: 2.2rem;
  }
}


