:root {
  --groen-donker: #4a5d3a;
  --groen: #6b8a52;
  --groen-licht: #dfe7d0;
  --terracotta: #c65a2a;
  --crème: #f7f5ee;
  --bruin: #5c3a2a;
  --tekst: #34342c;
  --rand: #d8d3c2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", serif;
  color: var(--tekst);
  background: var(--crème);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Georgia", serif;
  color: var(--groen-donker);
  line-height: 1.25;
}

a { color: var(--groen-donker); }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
header.site-header {
  background: var(--crème);
  border-bottom: 1px solid var(--rand);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--groen-donker);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo span { color: var(--terracotta); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--tekst);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

nav.main-nav a:hover,
nav.main-nav a.actief { color: var(--terracotta); }

.btn-reserveer {
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: Arial, sans-serif;
}

/* ---- Hero ---- */
.hero {
  position: relative;
}
.hero img { width: 100%; display: block; }
.hero-tekst {
  max-width: 1080px;
  margin: -70px auto 0;
  padding: 32px;
  position: relative;
  z-index: 2;
}
.hero-tekst .kaart {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-width: 520px;
}
.hero-tekst h1 { margin-top: 0; font-size: 2.1rem; }
.hero-tekst p { font-family: Arial, sans-serif; }

/* ---- Algemene secties ---- */
main { padding: 48px 0 80px; }
section { margin-bottom: 56px; }

.intro { max-width: 720px; }
p { font-family: Arial, sans-serif; }

.kaarten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.kaart {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: 10px;
  overflow: hidden;
}
.kaart img { width: 100%; display: block; }
.kaart .kaart-inhoud { padding: 18px; font-family: Arial, sans-serif; }
.kaart h3 { margin: 0 0 8px; font-family: Georgia, serif; }

.badge {
  display: inline-block;
  background: var(--groen-licht);
  color: var(--groen-donker);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.tip {
  background: #fff9ec;
  border: 1px dashed #d8b25a;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  color: #6b5420;
}

/* ---- Formulieren ---- */
form { font-family: Arial, sans-serif; }
label { display: block; font-weight: bold; margin: 16px 0 6px; font-size: 0.92rem; }
input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--rand);
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
}
textarea { resize: vertical; min-height: 90px; }
.form-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-rij { grid-template-columns: 1fr; } }

button, .btn {
  display: inline-block;
  background: var(--groen-donker);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
}
button:hover, .btn:hover { background: var(--groen); }

.melding {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.melding.fout { background: #fbe4e0; color: #8a2f1c; border: 1px solid #e3a48f; }
.melding.succes { background: var(--groen-licht); color: var(--groen-donker); border: 1px solid var(--groen); }

/* ---- Kalender ---- */
.kalender-widget {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 20px;
  font-family: Arial, sans-serif;
  max-width: 460px;
}
.kalender-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.kalender-header button {
  margin: 0; padding: 4px 12px; background: var(--groen-licht); color: var(--groen-donker);
}
.kalender-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 0.85rem;
}
.kalender-grid .dagnaam { font-weight: bold; color: var(--groen-donker); padding-bottom: 4px; }
.kalender-dag {
  padding: 8px 0;
  border-radius: 5px;
  background: #f0efe6;
  color: #999;
}
.kalender-dag.vrij { background: var(--groen-licht); color: var(--groen-donker); }
.kalender-dag.beperkt { background: #fbe9c8; color: #8a5a12; }
.kalender-dag.vol { background: #f3d6ce; color: #8a2f1c; }
.kalender-legenda { display: flex; gap: 16px; margin-top: 12px; font-size: 0.8rem; }
.kalender-legenda span { display: inline-flex; align-items: center; gap: 6px; }
.stip { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* ---- Tabellen (admin) ---- */
table { width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; background: #fff; }
th, td { padding: 10px 12px; border-bottom: 1px solid var(--rand); text-align: left; font-size: 0.9rem; }
th { background: var(--groen-licht); color: var(--groen-donker); }
.status-pil {
  padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; display: inline-block;
}
.status-pil.in_afwachting { background: #fbe9c8; color: #8a5a12; }
.status-pil.bevestigd { background: var(--groen-licht); color: var(--groen-donker); }
.status-pil.geannuleerd { background: #f3d6ce; color: #8a2f1c; }

/* ---- Footer ---- */
footer.site-footer {
  background: var(--groen-donker);
  color: #eef2e6;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  margin-top: 60px;
}
footer.site-footer a { color: #eef2e6; }
footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
footer h4 { color: #fff; margin-top: 0; }
footer small { opacity: 0.7; display: block; margin-top: 24px; }
