/* =========================
   BASIS
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0b;
  --surface: #151515;
  --surface-soft: #1c1c1c;
  --text: #f6f6f6;
  --muted: #cccccc;
  --accent: #ff7a00;
  --accent-dark: #ff4d00;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
  --header-gradient:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 30%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a {
  text-decoration: none;
  color: inherit;
}

code {
  background: #000;
  padding: 2px 6px;
  border-radius: 6px;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* =========================
   THEMA'S PER PAGINA
========================= */

/* Home */
body.theme-home {
  --bg: #0b0b0b;
  --surface: #151515;
  --surface-soft: #1c1c1c;
  --text: #f6f6f6;
  --muted: #cccccc;
  --accent: #ff7a00;
  --accent-dark: #ff4d00;
}

/* Menu */
body.theme-menu {
  --bg: #0d1b12;
  --surface: #13241a;
  --surface-soft: #1a3123;
  --text: #f4fff6;
  --muted: #c8d8cc;
  --accent: #39b86f;
  --accent-dark: #1f8f4f;
}

/* Over ons */
body.theme-about {
  --bg: #1e140c;
  --surface: #2b1c12;
  --surface-soft: #3a2718;
  --text: #fff8ef;
  --muted: #dfcfc0;
  --accent: #d6a441;
  --accent-dark: #b27a1d;
}

/* Contact */
body.theme-contact {
  --bg: #0f1724;
  --surface: #162133;
  --surface-soft: #1d2b42;
  --text: #f3f8ff;
  --muted: #c7d2e2;
  --accent: #31a8ff;
  --accent-dark: #156fd1;
}

/* Groepen */
body.theme-groepen {
   --bg: #0f1724;
  --surface: #162133;
  --surface-soft: #1d2b42;
  --text: #f3f8ff;
  --muted: #c7d2e2;
  --accent: #31a8ff;
  --accent-dark: #156fd1;
}

/* Openingstijden */
body.theme-hours {
  --bg: #0f1a24;
  --surface: #162533;
  --surface-soft: #1d3142;
  --text: #f2f7fb;
  --muted: #c9d6e2;
  --accent: #38bdf8;
  --accent-dark: #0284c7;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: var(--header-gradient);
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.logo {
  width: 180px;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  flex-wrap: wrap;
}

.nav a:hover,
.nav a.active {
  text-decoration: underline;
}

/* =========================
   BUTTONS
========================= */
.btn,
.cta-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.cta-nav:hover {
  transform: translateY(-2px);
}

.btn-primary,
.cta-nav {
  background: #000;
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* =========================
   HERO
========================= */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 44px 0 64px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero h1 {
  margin: 0 0 16px;
  max-width: 10ch;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.lead {
  max-width: 54ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 700;
}

.hero-points li::before {
  content: "• ";
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-burger {
  width: min(100%, 520px);
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.42));
}

.page-hero {
  padding: 36px 0 54px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
}

.page-hero p {
  max-width: 64ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
   SECTIES
========================= */
.section {
  padding: 72px 0;
}

.section-tight {
  padding: 52px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.section p {
  color: var(--muted);
}

.section-dark {
  background: rgba(255, 255, 255, 0.03);
}

.section-accent {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}

/* =========================
   GRIDS
========================= */
.cards,
.feature-grid,
.contact-cards,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-grid,
.promo-grid,
.contact-grid,
.hours-grid,
.group-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

/* =========================
   BOXES / CARDS
========================= */
.card,
.menu-box,
.info-box,
.feature,
.contact-card,
.step,
.pricing-box {
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  overflow: hidden;
}

.card-image {
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  max-height: 100%;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.32));
}

.card-body,
.menu-box,
.info-box,
.feature,
.contact-card,
.step,
.pricing-box {
  padding: 24px;
}

.card-body h3,
.menu-box h3,
.info-box h3,
.feature h3,
.contact-card h3,
.step h3,
.pricing-box h3 {
  margin-top: 0;
}

.card-body p {
  margin: 0 0 12px;
}

.card-body strong {
  font-size: 1.1rem;
  color: #fff;
}

/* =========================
   LIJSTEN
========================= */
.menu-list,
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li,
.highlight-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-list li {
  display: block;
}

.menu-list li:last-child,
.highlight-list li:last-child {
  border-bottom: 0;
}

.menu-list span:last-child {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* =========================
   AFBEELDINGEN
========================= */
.about-photo img,
.promo-photo img,
.contact-photo img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

/* =========================
   OPENINGSTIJDEN
========================= */
.hours-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hours-table th,
.hours-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-table tr:last-child td {
  border-bottom: 0;
}

.hours-table th {
  background: #000;
}

/* =========================
   EXTRA ELEMENTEN
========================= */
.notice {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #000;
  font-weight: 700;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000;
  padding: 36px 0 48px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 960px) {
  .hero,
  .cards,
  .menu-grid,
  .about-grid,
  .promo-grid,
  .feature-grid,
  .footer-grid,
  .contact-grid,
  .hours-grid,
  .contact-cards,
  .steps,
  .group-layout {
    grid-template-columns: 1fr;
  }

  .topbar {
    justify-content: center;
  }

  .nav {
    justify-content: center;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .logo {
    width: 150px;
  }

  .section {
    padding: 54px 0;
  }
}
.theme-hours .today {
  color: var(--accent);
  font-weight: 700;
}
.menu-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.menu-images .promo-photo {
  width: 100%;
}

.menu-images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

/* Tablet en mobiel */
@media (max-width: 768px) {
  .menu-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.open-status {
  text-align: center;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 6px;
  margin: 10px auto;
  width: fit-content;
}

.open {
  background: #2ecc71;
  color: #fff;
}

.closed {
  background: #e74c3c;
  color: #fff;
}
.status-badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-left: 15px;
  white-space: nowrap;
}

/* kleuren */
.status-open {
  background: #2ecc71;
  color: #fff;
}

.status-closed {
  background: #e74c3c;
  color: #fff;
}