@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Roboto:wght@300;400;500;700&display=swap');

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

:root {
  --color-primary: #d67450;
  --color-primary-dark: #c3542b;
  --color-primary-light: #fff8f6;
  --color-nav: #000000;
  --color-topbar: #efe9ce;
  --color-bg-white: #ffffff;
  --color-bg-section: #efe9ce;
  --color-text-dark: #000000;
  --color-text-medium: #6C6C6C;
  --color-text-white: #FFFFFF;
  --color-border: #e8e0cc;
  --font-kop: 'Merriweather', Georgia, serif;
  --font-body: 'Roboto', Helvetica, sans-serif;
  --font-size-h1: 3rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.4rem;
  --font-size-h4: 1.125rem;
  --font-size-body: 1rem;
  --font-size-klein: 0.875rem;
  --line-height-kop: 1.35;
  --line-height-body: 1.6;
  --container-max: 1200px;
  --section-padding: 80px 0;
  --section-padding-mob: 48px 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--color-text-dark);
  line-height: var(--line-height-body);
  background: var(--color-bg-white);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-kop);
  font-weight: 400;
  line-height: var(--line-height-kop);
  color: var(--color-text-dark);
}
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-family: var(--font-body); font-size: var(--font-size-h4); font-weight: 400; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

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

/* Knoppen */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.btn-primair {
  background: var(--color-primary);
  color: var(--color-text-white);
}
.btn-primair:hover { background: var(--color-primary-dark); color: var(--color-text-white); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px 26px;
}
.btn-outline:hover { background: var(--color-primary-light); color: var(--color-primary); }
.cta-sectie .btn-outline:hover { background: rgba(255,255,255,0.15); color: white; }
.btn-donker {
  background: var(--color-nav);
  color: var(--color-text-white);
}
.btn-donker:hover { background: #333; color: var(--color-text-white); }

/* Sectie-titel stijl */
.sectie-titel {
  text-align: center;
  margin-bottom: 48px;
}
.sectie-titel h2 { margin-bottom: 12px; }
.sectie-titel .accent-lijn {
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  margin: 12px auto 0;
}
.sectie-titel p {
  color: var(--color-text-medium);
  max-width: 560px;
  margin: 16px auto 0;
}

/* Kaarten */
.kaart {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.kaart:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.kaart img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s ease; }
.kaart:hover img { transform: scale(1.05); }
.kaart-body { padding: 1.25rem; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--color-topbar);
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-medium);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.topbar a { color: var(--color-text-medium); }
.topbar a:hover { color: var(--color-primary); }
.topbar-links { display: flex; gap: 20px; align-items: center; }

/* ─── NAVIGATIE ─── */
.nav {
  background: var(--color-nav);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 56px; width: auto; display: block; }
.footer-logo-img { height: 64px; width: auto; display: block; filter: brightness(0) invert(1); }
.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  color: #CCCCCC;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--color-primary); }
.nav-cta { margin-left: 12px; }
.nav-cta a.btn-primair { color: var(--color-text-white); }
.nav-cta a.btn-primair:hover { color: var(--color-text-white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-white);
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: #f5efe8;
  overflow: hidden;
}
.hero-bg { display: none; }
.hero-inner { display: contents; }
.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center center;
  opacity: 0.2;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 60px 0;
}
.hero-content h1 { margin-bottom: 1rem; }
.hero-content p { color: var(--color-text-medium); margin-bottom: 1.5rem; font-size: 1.05rem; }
.hero-knoppen { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── USP BLOKKEN ─── */
.usp-sectie { padding: var(--section-padding); background: var(--color-bg-white); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.usp-kaart { text-align: center; }
.usp-kaart img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 1.25rem; }
.usp-kaart h3 { margin-bottom: 0.75rem; }
.usp-kaart p { color: var(--color-text-medium); font-size: var(--font-size-klein); margin-bottom: 1rem; }

/* ─── REVIEWS ─── */
.reviews-sectie { padding: var(--section-padding); background: var(--color-bg-section); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-kaart { padding: 1.5rem; }
.sterren { color: var(--color-primary); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-tekst { font-style: italic; color: var(--color-text-medium); margin-bottom: 1rem; font-size: var(--font-size-klein); }
.review-naam { font-weight: 500; font-size: var(--font-size-klein); }
.review-tijd { font-weight: 400; color: var(--color-text-medium); }
.reviews-totaal { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 0.5rem; margin-bottom: 1.5rem; }
.reviews-score { font-size: 2rem; font-weight: 700; color: var(--color-primary); }
.reviews-sterren { color: var(--color-primary); font-size: 1.2rem; }
.reviews-aantal { font-size: var(--font-size-klein); color: var(--color-text-medium); }

/* ─── OVER ONS ─── */
.over-ons-sectie { padding: var(--section-padding); background: var(--color-bg-white); }
.over-ons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.over-ons-grid img { border-radius: var(--radius-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.over-ons-tekst h2 { margin-bottom: 1.25rem; }
.over-ons-tekst p { color: var(--color-text-medium); margin-bottom: 1rem; }

/* ─── VOORDELEN ─── */
.voordelen-sectie { padding: var(--section-padding); background: var(--color-bg-section); }
.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.voordeel { text-align: center; }
.voordeel-icoon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary-light);
  border: 1.5px solid #f0cfc0;
  color: var(--color-primary);
  margin: 0 auto 1.25rem;
}
.voordeel-icoon svg {
  width: 28px;
  height: 28px;
}
.voordeel h4 { margin-bottom: 0.5rem; }
.voordeel p { color: var(--color-text-medium); font-size: var(--font-size-klein); }

/* ─── LOCATIE ─── */
.locatie-sectie { padding: var(--section-padding); background: var(--color-bg-white); }
.locatie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.locatie-grid img { border-radius: var(--radius-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.locatie-info h2 { margin-bottom: 1.25rem; }
.locatie-info p { color: var(--color-text-medium); }
.openingstijden { margin: 1.25rem 0; }
.openingstijden table { width: 100%; font-size: var(--font-size-klein); }
.openingstijden td { padding: 4px 0; color: var(--color-text-medium); }
.openingstijden td:last-child { text-align: right; font-weight: 500; color: var(--color-text-dark); }

/* ─── INSTAGRAM ─── */
.instagram-sectie { padding: var(--section-padding); background: var(--color-bg-white); }
.instagram-feed-wrapper { max-width: 700px; margin: 0 auto; }

/* ─── FOOTER ─── */
.footer { background: var(--color-nav); color: #AAAAAA; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 { color: var(--color-text-white); font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer p, .footer a { color: #AAAAAA; font-size: var(--font-size-klein); line-height: 1.8; }
.footer a:hover { color: var(--color-primary); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 6px; }
.footer-logo { font-family: var(--font-kop); font-size: 1.2rem; color: var(--color-text-white); margin-bottom: 0.75rem; }
.footer-logo span { color: var(--color-primary); }
.footer-bottom {
  background: #1A1A1A;
  padding: 16px 0;
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  border-top: 1px solid #333;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--color-primary); }

/* ─── WHATSAPP KNOP ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.whatsapp-btn:hover { background: #1ebe57; color: white; transform: translateY(-2px); }
.whatsapp-btn svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* ─── TABLET (iPad: 768px – 1024px) ─── */
@media (max-width: 1024px) and (min-width: 769px) {
  .usp-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .voordelen-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .over-ons-grid, .locatie-grid { gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-menu { gap: 18px; }
  .nav-menu a { font-size: 0.78rem; }
}

/* ─── MOBIEL (onder 768px) ─── */
@media (max-width: 768px) {
  :root { --font-size-h1: 1.6rem; --font-size-h2: 1.35rem; }

  .topbar { display: none; }

  .nav-menu { display: none; flex-direction: column; gap: 0; position: absolute; top: 70px; left: 0; right: 0; background: var(--color-nav); padding: 12px 0; }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 12px 24px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav { position: relative; }

  .hero { min-height: 420px; }
  .hero-bg { background: rgba(255,255,255,0.88); }

  .usp-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .voordelen-grid { grid-template-columns: repeat(2, 1fr); }
  .over-ons-grid, .locatie-grid { grid-template-columns: 1fr; }
  .over-ons-grid img, .locatie-grid img { order: -1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .usp-sectie, .reviews-sectie, .over-ons-sectie, .voordelen-sectie, .locatie-sectie { padding: var(--section-padding-mob); }
}

/* ─── KLEINE MOBIEL (onder 480px) ─── */
@media (max-width: 480px) {
  .voordelen-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-knoppen { flex-direction: column; }
  .whatsapp-btn { padding: 10px 14px; font-size: 0.8rem; bottom: 16px; right: 16px; }
  .whatsapp-btn svg { width: 18px; height: 18px; }
}
