/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --groen: #13427f;
  --groen-mid: #1a5299;
  --groen-licht: #2266b3;
  --goud: #E6007E;
  --goud-licht: #ff3399;
  --room: #f0f4f9;
  --wit: #ffffff;
  --tekst: #1a1a1a;
  --tekst-zacht: #5a5a5a;
  --rand: #d0dcea;
  --ff-display: 'Nunito', 'Arial Rounded MT Bold', Arial, sans-serif;
  --ff-body: 'Nunito Sans', Arial, sans-serif;
  --radius: 4px;
  --schaduw: 0 2px 20px rgba(19,66,127,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--tekst);
  background: var(--wit);
  line-height: 1.6;
}

/* ===========================
   NAVIGATIE
=========================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--goud);
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--goud-licht); }

.nav-cta {
  background: var(--goud) !important;
  color: var(--groen) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--goud-licht) !important; }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d2d5a 0%, #13427f 50%, #1a5299 100%);
  display: flex;
  align-items: center;
  padding: 10rem 2rem 8rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  color: var(--goud);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--goud);
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  color: var(--wit);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(230, 0, 126, 0.4);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.badge-label {
  color: var(--goud);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-time {
  color: var(--wit);
  font-family: var(--ff-display);
  font-size: 1rem;
}

/* ===========================
   KNOPPEN
=========================== */
.btn-primary {
  display: inline-block;
  background: var(--goud);
  color: var(--groen);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--goud-licht);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 400;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--goud);
  color: var(--goud);
}

.btn-large { font-size: 1rem; padding: 1rem 2.5rem; }

/* ===========================
   INFO STRIP
=========================== */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: -2.5rem auto 0;
  padding: 0 2rem;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

/* Athena huisstijl accenten */
.nav-logo { font-weight: 800; }
.hero-label { color: var(--goud); }
.section-header h2 { font-weight: 800; }
.info-card h3 { font-weight: 700; }

.info-card {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--schaduw);
  text-align: center;
  transition: transform 0.2s;
}
.info-card:hover { transform: translateY(-2px); }

.info-card.featured {
  background: var(--groen);
  border-color: var(--groen);
  color: var(--wit);
  border-top: 4px solid var(--goud);
}

.info-card.featured p { color: rgba(255,255,255,0.8); }
.info-card.featured .info-detail { color: rgba(255,255,255,0.6); }

.info-icon { font-size: 1.8rem; margin-bottom: 1rem; }

.info-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.info-card p { color: var(--tekst-zacht); font-size: 0.9rem; }

.info-price {
  font-family: var(--ff-display);
  font-size: 1.8rem !important;
  color: var(--goud) !important;
  font-weight: 600;
  margin: 0.5rem 0 !important;
}

.info-detail {
  font-size: 0.78rem !important;
  color: var(--tekst-zacht);
  margin-top: 0.5rem !important;
  line-height: 1.5;
}

/* ===========================
   MENU SECTIE
=========================== */
.menu-section {
  padding: 6rem 2rem 5rem;
  background: var(--room);
  margin-top: 4rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--groen);
  margin-bottom: 0.75rem;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--goud);
  margin: 0.75rem auto 0;
}

.section-header p { color: var(--tekst-zacht); }
.section-header.light h2 { color: var(--wit); }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* Datum dropdown */
.dropdown-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.date-dropdown {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid var(--groen);
  border-radius: var(--radius);
  color: var(--groen);
  background: var(--wit);
  cursor: pointer;
  min-width: 300px;
  transition: border-color 0.2s;
  appearance: auto;
}

.date-dropdown:focus {
  outline: none;
  border-color: var(--goud);
}

/* Menu display */
.menu-display {
  display: block;
}

.menu-twee-kolommen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.menu-kolom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-kolom-titel {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--groen);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--groen);
  margin-bottom: 0.25rem;
}

.veggie-titel {
  color: #2e7d32;
  border-bottom-color: #E6007E;
}

.dessert-titel {
  color: var(--groen);
  border-bottom-color: var(--goud);
  margin-bottom: 1rem;
}

.menu-dessert {
  margin-top: 0.5rem;
}

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

@media (max-width: 768px) {
  .menu-twee-kolommen { grid-template-columns: 1fr; }
}

.menu-card {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--schaduw);
  border-top: 3px solid var(--groen);
  position: relative;
}

.menu-card.veggie { border-top-color: #E6007E; }
.menu-card.dessert { border-top-color: var(--goud); }

.menu-gang {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tekst-zacht);
  margin-bottom: 0.5rem;
}

.menu-gerecht {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--groen);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.menu-allergenen {
  font-size: 0.75rem;
  color: var(--tekst-zacht);
  border-top: 1px solid var(--rand);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.menu-allergenen span {
  font-weight: 500;
  color: var(--tekst);
}

/* Beschikbaarheid */
.beschikbaarheid-display {
  margin-top: 2rem;
  text-align: center;
}

.beschikbaarheid-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
}

.beschikbaarheid-badge.beschikbaar {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.beschikbaarheid-badge.volzet {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.loading {
  text-align: center;
  color: var(--tekst-zacht);
  padding: 3rem;
  grid-column: 1 / -1;
}

/* ===========================
   RESERVATIE SECTIE
=========================== */
.reservatie-section {
  padding: 6rem 2rem;
  background: var(--groen);
}

.reservatie-form {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 40px rgba(0,0,0,0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--tekst);
}

input, select, textarea {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  color: var(--tekst);
  background: var(--wit);
  transition: border-color 0.2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--groen);
}

textarea { resize: vertical; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400 !important;
  font-size: 0.85rem;
  color: var(--tekst-zacht);
}

.checkbox-label input { width: auto; margin-top: 3px; }

.form-feedback {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}

.form-feedback.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  display: block;
}

.form-feedback.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
  display: block;
}

/* ===========================
   TEAM SECTIE
=========================== */
.team-section {
  padding: 5rem 2rem;
  background: var(--wit);
}

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

.team-card {
  background: var(--room);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--rand);
}

.team-card h4 {
  font-family: var(--ff-display);
  color: var(--groen);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rand);
}

.team-card p {
  font-size: 0.85rem;
  color: var(--tekst-zacht);
  margin-bottom: 0.25rem;
}


/* ===========================
   PRAKTISCHE INFO BANNER
=========================== */
.praktisch-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.praktisch-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

.praktisch-item strong { color: var(--wit); }
.praktisch-icon { font-size: 1rem; }

@media (max-width: 768px) {
  .praktisch-banner { flex-direction: column; align-items: center; }
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--groen);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--goud);
}

.footer-info p, .footer-school p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.footer-school strong { color: rgba(255,255,255,0.85); }

/* ===========================
   RESPONSIEF
=========================== */
@media (max-width: 768px) {
  /* Navigatie */
  .nav-links { display: none; }
  .nav-inner { padding: 0 1rem; }

  /* Hero */
  .hero { padding: 7rem 1.5rem 5rem; }
  .hero-badge { display: none; }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }

  /* Info strip */
  .info-strip { grid-template-columns: 1fr; margin-top: 1rem; padding: 0 1rem; }

  /* Menu */
  .menu-section { padding: 3rem 1rem; }
  .menu-twee-kolommen { grid-template-columns: 1fr; gap: 1rem; }
  .menu-kolom-titel { font-size: 0.7rem; }
  .date-dropdown { min-width: unset; width: 100%; }

  /* Praktische info banner */
  .praktisch-banner { flex-direction: column; align-items: stretch; }
  .praktisch-item { justify-content: center; }

  /* Reservatieformulier */
  .reservatie-section { padding: 3rem 1rem; }
  .reservatie-form { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-section { padding: 3rem 1rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 1rem; }

  /* Dessert */
  .menu-display-dessert { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.8rem; }
}
