/* ── Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --blue:       #00BFFF;
  --blue-hi:    #4FA3FF;
  --gold:       #f8a601;
  --gold-hi:    #ffb929;
  --dark:       #000c2c;
  --dark-card:  #002A6A;
  --white:      #ffffff;
  --tint:       #F0F6FB;
  --ink:        #0D1B2A;
  --ink-muted:  #4A5568;
  --chalk:      #dff0fa;
  --chalk-dim:  #82b8d8;
  --border-l:   #B3D9FF;
  --border-d:   rgba(255,255,255,0.1);
  --display:    'Bebas Neue', sans-serif;
  --body:       'Inter', sans-serif;
  --radius:     10px;
  --max:        1000px;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  background: var(--white);
}

/* Inner container to align nav content with page layout */
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo { flex-shrink: 0; line-height: 0; }
.nav__logo:hover { text-decoration: none; }
.nav__logo-img { height: 90px; width: auto; }

.nav__links { display: flex; gap: 20px; }
.nav__links a {
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); text-decoration: none; }
.nav__links a.active { color: var(--gold); text-decoration: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  padding-top: 60px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,15,46,0.74) 0%, rgba(0,31,77,0.52) 100%),
    url('Pictures/food1.jpg') center / cover no-repeat;
}

.hero__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 28px 80px;
}

.hero__logo-img {
  width: 500px;
  max-width: 100%;
  display: block;
  border-radius: 14px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0, 0.45));
}

.hero__content { display: flex; flex-direction: column; align-items: flex-start; }

.hero__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 14px;
}

.hero__sub {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-dim);
  margin-bottom: 32px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn:hover { background: var(--gold-hi); text-decoration: none; }

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); text-decoration: none; }

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 88px 28px; background: var(--white); }
.section--tint { background: var(--tint); }
.section--dark {
  background: var(--dark);
  color: var(--chalk);
}
.section--dark .section__title { color: #fff; }
.section--dark .section__text  { color: var(--chalk-dim); }

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

.section__title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--ink);
}

.section__text {
  color: var(--ink-muted);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.85;
}

/* ── About ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.offer-cards { display: flex; flex-direction: column; gap: 14px; }

.offer-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--tint);
  border: 1px solid rgba(10,184,245,0.15);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.offer-pill:hover { border-color: var(--blue); }
.offer-pill__icon { font-size: 1.4rem; }
.offer-pill div { display: flex; flex-direction: column; }
.offer-pill strong { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.offer-pill span { font-size: 0.8rem; color: var(--ink-muted); }

/* ── Highlight box ──────────────────────────────────────── */
.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(10,184,245,0.07);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  max-width: 460px;
  margin-top: 24px;
}
.highlight-box--sm { max-width: 100%; margin-top: 16px; }
.highlight-icon { font-size: 1rem; line-height: 1.8; }
.highlight-box p { font-size: 0.875rem; color: var(--ink); line-height: 1.65; }
.highlight-box strong { color: var(--blue); }

/* ── Menu ───────────────────────────────────────────────── */
.menu-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--border-d);
  margin-bottom: 36px;
}

.menu-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 10px 22px;
  color: var(--dark);
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.menu-tab:hover { color: #f3c23ac9; }
.menu-tab.active { color: #d4a832; border-bottom-color: #d4a832; }

.menu-panel { display: none; animation: fadeIn 0.2s ease; }
.menu-panel.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.menu-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px 48px;
}

.menu-cat__title {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-d);
}

.menu-list { list-style: none; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li span:first-child { flex: 1; }
.menu-list li span:last-child { color: #c9960e; font-weight: 500; white-space: nowrap; font-variant-numeric: tabular-nums; }

.menu-note {
  margin-top: 36px;
  font-size: 0.78rem;
  color: var(--dark);
  font-style: italic;
  border-top: 1px solid var(--border-d);
  padding-top: 16px;
}

/* ── Events ─────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-top: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}
.event-card:hover { box-shadow: 0 4px 20px rgba(10,184,245,0.1); }
.event-card--muted { opacity: 0.75; }
.event-card--muted:hover { opacity: 1; }

.event-badge {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.event-badge--soon {
  background: rgba(10,184,245,0.1);
  color: var(--blue);
}

.event-title {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 10px;
}
.event-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.75; }

.events-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ── Photos ─────────────────────────────────────────────── */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  margin-top: 36px;
}

.photo-item {
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  overflow: hidden;
  position: relative;
  background: var(--dark-card);
}

.photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-item:hover .photo-img { transform: scale(1.06); }

.photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,42,0.78) 0%, rgba(10,28,42,0.1) 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.photo-item--wide { grid-column: span 2; }
.photo-item--tall { grid-row: span 2; }

.photo-label {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.photos-cta {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* ── Partners ───────────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 36px;
  margin-bottom: 28px;
}

.partner-item {
  height: 80px;
  border: 1px solid var(--border-l);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 16px 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.partner-item:hover {
  border-color: rgba(10,184,245,0.3);
  box-shadow: 0 3px 14px rgba(10,184,245,0.08);
}
.partner-svg {
  width: 100%;
  height: 36px;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.partner-item:hover .partner-svg { opacity: 1; }

.partners-cta { font-size: 0.875rem; color: var(--ink-muted); }

/* ── Opening hours ──────────────────────────────────────── */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  margin-top: 40px;
}

.hours-block h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-l);
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-l);
  color: var(--ink);
}
.hours-table td:first-child { color: var(--ink-muted); width: 130px; }
.hours-table td:last-child { text-align: right; font-weight: 500; }
.hours-table td.closed { color: var(--ink-muted); font-style: italic; font-weight: 400; }
.hours-table tr:last-child td { border-bottom: none; }

.hours-note {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 14px;
}
.hours-note strong { color: var(--ink); font-weight: 600; }
.hours-note--small { color: var(--ink-muted); font-size: 0.82rem; margin-top: 10px; margin-bottom: 0; }

.hours-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* ── Locatie ────────────────────────────────────────────── */
.locatie-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.contact-grid { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { font-size: 1.1rem; margin-top: 4px; width: 1.5rem; flex-shrink: 0; text-align: center; }
.contact-item strong {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-dim);
  margin-bottom: 4px;
}
.contact-item p { font-size: 0.9rem; line-height: 1.7; color: var(--chalk); }
.contact-item a { color: var(--chalk); }
.contact-item a:hover { color: var(--gold); text-decoration: none; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border-d);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border-d);
  padding: 36px 28px;
  text-align: center;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer__logo {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer p { font-size: 0.8rem; color: var(--chalk-dim); line-height: 1.9; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .locatie-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 260px; }
  .hours-grid { gap: 32px; }
}

@media (max-width: 640px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    padding: 14px 28px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--ink);
    font-size: 0.9rem;
  }
  .nav__links a:last-child { border-bottom: none; }

  .section { padding: 64px 20px; }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 56px;
    text-align: center;
    gap: 32px;
  }
  .hero__logo-img { width: 200px; margin: 0 auto; }
  .hero__content { align-items: center; }
  .hero__title { font-size: clamp(2rem, 10vw, 3rem); }

  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
  .photo-item--wide { grid-column: span 2; }
  .photo-item--tall { grid-row: span 1; }
  .photos-grid { grid-auto-rows: 140px; }

  .menu-tab { padding: 10px 14px; font-size: 0.8rem; }
}
