/* Visueel verborgen maar leesbaar voor screenreaders en zoekmachines */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

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

:root {
  --yellow: #d4c800;
  --yellow-bright: #f0e000;
  --yellow-dark: #a89f00;
  --charcoal: #2a2a2a;
  --charcoal-light: #3d3d3d;
  --bg: #fafaf8;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Inter-fallback', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h2 { font-family: 'Playfair Display', 'Playfair-fallback', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 1rem; }
h3 { font-family: 'Inter', sans-serif; }
a { color: inherit; text-decoration: none; }

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

.section-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-size: 1rem;
}
.btn-primary:hover { background: var(--yellow-bright); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: #fff; }

.btn-full { width: 100%; text-align: center; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

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

.logo { display: flex; align-items: center; }
.logo-img { height: 64px; width: auto; max-width: 220px; object-fit: contain; object-position: left center; }

/* Donker nav (transparant, over hero): toon donker logo, verberg licht logo */
.logo-nav-dark  { display: block; }
.logo-nav-light { display: none; }

/* Scrolled nav (witte achtergrond): toon licht logo, verberg donker logo */
#navbar.scrolled .logo-nav-dark  { display: none; }
#navbar.scrolled .logo-nav-light { display: block; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color .2s;
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--yellow); }
#navbar.scrolled .nav-links a:hover { color: var(--yellow-dark); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}
#navbar.scrolled .hamburger { color: var(--text); }

.nav-social { display: flex; gap: .5rem; align-items: center; }
.nav-social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem;
  color: #fff;
  transition: background .2s, border-color .2s;
}
.nav-social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--charcoal); }
#navbar.scrolled .nav-social-btn { background: rgba(0,0,0,.07); border-color: var(--border); color: var(--text); }
#navbar.scrolled .nav-social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--charcoal); }

.mobile-menu {
  display: none;
  list-style: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem 1.5rem 1.5rem;
  gap: .5rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 500; padding: .5rem 0; display: block; color: var(--text); }

/* ===== HERO ===== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(212,200,0,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(212,200,0,.2) 0%, transparent 50%),
    var(--charcoal);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero-logo {
  width: min(650px, 80vw);
  height: auto;
}
.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
}
.highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.highlight:last-child { border-right: none; }
.highlight:hover { background: var(--charcoal-light); }
.hl-icon { font-size: 2rem; flex-shrink: 0; }
.highlight strong { display: block; font-weight: 600; font-size: .95rem; color: #fff; }
.highlight p { color: rgba(255,255,255,.5); font-size: .82rem; margin: 0; }

/* ===== OVER ===== */
.over { padding: 6rem 0; background: var(--bg); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-text p { color: var(--muted); margin-bottom: 1rem; }
.split-text .btn-primary { margin-top: 1rem; }
.split-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.visual-card {
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s;
}
.visual-card:hover { transform: translateY(-4px); }
.visual-card span { font-size: 2.5rem; }
.visual-card p { margin: 0; }
.card-yellow { background: var(--yellow); color: var(--charcoal); }
.card-dark   { background: var(--charcoal); color: #fff; }
.card-mid    { background: #4b4b4b; color: #fff; }
.card-green  { background: linear-gradient(135deg, #16a34a, #4ade80); color: #fff; }

/* ===== MENU ===== */
.menu-section { padding: 6rem 0; background: #fff; }
.menu-intro { color: var(--muted); margin-bottom: 2rem; max-width: 680px; }
.menu-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab {
  padding: .6rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-size: .92rem;
}
.tab.active, .tab:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--charcoal);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.menu-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow .2s, transform .2s;
}
.menu-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.menu-item-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: .3rem; }
.menu-item-info p { color: var(--muted); font-size: .85rem; margin: 0; }
.menu-price { font-weight: 700; font-size: 1rem; color: var(--yellow-dark); white-space: nowrap; }
.menu-note {
  margin-top: .5rem;
  background: #fefce8;
  border: 1px solid var(--yellow);
  border-radius: 10px;
  padding: .85rem 1.1rem;
  font-size: .88rem;
  color: var(--charcoal);
}
.menu-note a { color: var(--yellow-dark); font-weight: 600; text-decoration: underline; }

/* ===== WK AGENDA ===== */
.wk-section { padding: 6rem 0; background: #fff; }
.wk-section .section-label { background: #e8601c; color: #fff; }
.wk-intro { color: var(--muted); margin-bottom: 2.5rem; max-width: 620px; }
.wk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.wk-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.wk-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.wk-vlag { font-size: 2rem; letter-spacing: .3rem; }
.wk-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.wk-meta { display: flex; flex-direction: column; gap: .3rem; }
.wk-meta span { font-size: .85rem; color: var(--muted); }
.wk-datum { font-weight: 600; color: var(--text) !important; }
.wk-tijd { font-weight: 700; color: #e8601c !important; font-size: .95rem !important; }
.wk-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.wk-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 999px;
  letter-spacing: .06em;
}
.wk-locatie {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 999px;
}
.wk-locatie.binnen { background: #e0e7ff; color: #3730a3; }
.wk-locatie.buiten { background: #dcfce7; color: #15803d; }

.wk-doorgaan {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}
.wk-doorgaan-icon { font-size: 2rem; flex-shrink: 0; }
.wk-doorgaan p { margin: 0; font-size: .95rem; color: var(--charcoal); line-height: 1.5; }
.wk-doorgaan strong { color: #e8601c; }

@media (max-width: 760px) {
  .wk-grid { grid-template-columns: 1fr; }
}

/* ===== SPORT ===== */
.sport-section { padding: 6rem 0; background: var(--charcoal); }
.sport-section .section-label { background: var(--yellow); color: var(--charcoal); }
.sport-section h2 { color: #fff; }
.sport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.sport-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: background .2s, transform .2s;
}
.sport-card:hover { background: #555; transform: translateY(-3px); }
.sport-icon { font-size: 2.2rem; display: block; margin-bottom: .8rem; }
.sport-card h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.sport-card p { color: rgba(255,255,255,.55); font-size: .875rem; margin: 0; }

/* ===== TERRAS ===== */
.terras-section { padding: 6rem 0; background: var(--bg); }
.terras-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.terras-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: box-shadow .2s;
}
.terras-card:hover { box-shadow: var(--shadow); }
.terras-card span { font-size: 2rem; flex-shrink: 0; }
.terras-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.terras-card p { color: var(--muted); font-size: .85rem; margin: 0; }

/* ===== OPENINGSTIJDEN ===== */
.tijden-section { padding: 6rem 0; background: var(--charcoal); }
.tijden-section .section-label { background: var(--yellow); color: var(--charcoal); }
.tijden-section h2 { color: #fff; }
.tijden-sub { color: rgba(255,255,255,.5); margin-bottom: 2rem; }
.tijden-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.tijden-table { width: 100%; border-collapse: collapse; }
.tijden-table td {
  padding: .9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}
.tijden-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--yellow);
}
.tijden-table tr.today td {
  color: #fff;
  background: rgba(212,200,0,.12);
  border-radius: 8px;
}
.tijden-table tr.today td:first-child::after {
  content: ' ← vandaag';
  font-size: .75rem;
  font-weight: 400;
  opacity: .6;
}

/* ===== CONTACT ===== */
.contact-section { padding: 6rem 0; background: #fff; }
.split-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; margin: 1.5rem 0; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item span { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: .2rem; }
.contact-item p { color: var(--muted); margin: 0; line-height: 1.6; }
.contact-item a { color: var(--yellow-dark); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.map-placeholder {
  background: linear-gradient(135deg, #fefce8, #fef9c3);
  border: 2px dashed var(--yellow);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder p { color: var(--muted); font-size: 1rem; line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-link { display: block; margin-bottom: 1rem; }
.footer-logo-img {
  height: 64px;
  width: auto;
}
.footer-brand p { font-size: .88rem; line-height: 1.9; color: rgba(255,255,255,.5); }
.footer-links h4, .footer-social h4 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.social-icons { display: flex; gap: .75rem; margin-bottom: 1rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  transition: background .2s;
}
.social-btn:hover { background: var(--yellow); color: var(--charcoal); }
.opening-today { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .tijden-inner { grid-template-columns: 1fr; gap: 2rem; }
  .tijden-table tr.today td:first-child::after { display: block; }

  .highlights { grid-template-columns: repeat(2, 1fr); }
  .highlight:nth-child(2) { border-right: none; }
  .split, .split-times { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-visual { order: -1; }
  .sport-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .tijden-table td { padding: .75rem .5rem; font-size: .85rem; }
  .tijden-table tr.today td:first-child::after { content: ' ✓ vandaag'; font-size: .72rem; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .highlight { border-bottom: 1px solid rgba(255,255,255,.08); }
  .highlight:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .highlight:nth-child(even) { border-right: none; }
  .sport-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-logo { width: min(640px, 90vw); }
}
