/* =========================================
   3 Keuken & Bar — Demo Site
   Webgroeiers.nl
   ========================================= */

/* --- TOKENS --- */
:root {
  --gold: #c8a96e;
  --gold-light: #dfc090;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --off-white: #f5f2ee;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #6b6560;
  --border: rgba(200, 169, 110, 0.25);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

/* Image fill utility */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill, figure.photo > img,
.gallery img, .card img, .hero__img,
.private-dining__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- TYPOGRAPHY --- */
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.body-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.25rem;
}

/* --- CONTAINER --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =========================================
   NAV
   ========================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  /* Always show a dark scrim so nav links contrast on any hero image */
  background: linear-gradient(
    to bottom,
    rgba(20,16,12,0.75) 0%,
    rgba(20,16,12,0) 100%
  );
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(26,26,26,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links__item {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-links__item:hover { color: var(--gold); }
.nav-links__item--cta {
  background: var(--gold);
  color: var(--dark);
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav-links__item--cta:hover {
  background: var(--gold-light);
  color: var(--dark);
}

/* =========================================
   MOBILE MENU (fullscreen kit)
   ========================================= */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 910;
}
.hamburger__bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  height: 100svh;
  height: 100dvh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 5rem 2rem 2rem;
  justify-content: center;
}

.mobile-menu__close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 960;
}
.mobile-menu__close:hover { color: var(--gold); }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.mobile-menu__item {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.1;
  min-height: 64px;
  transition: color 0.2s;
}
.mobile-menu__item:hover,
.mobile-menu__item:focus { color: var(--gold); outline: none; }
.mobile-menu__item--cta { color: var(--gold); }

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.mobile-menu__footer a { color: var(--gold); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .mobile-menu__trigger { display: flex; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,14,8,0.60) 0%,
    rgba(20,14,8,0.30) 40%,
    rgba(20,14,8,0.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   OVER ONS
   ========================================= */
.over-ons {
  padding: 7rem 0;
  background: var(--white);
}
.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.over-ons__image .media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.over-ons__highlights {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* =========================================
   MENU SECTION
   ========================================= */
.menu-section {
  padding: 7rem 0;
  background: var(--off-white);
}
.menu-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.menu-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
  align-items: stretch;
}
.menu-photo.media {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Menu category cards */
.menu-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.menu-category.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(200,169,110,0.12);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.menu-category.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.menu-category__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.menu-category__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}
.menu-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-left: 0.5rem;
}

.menu-items { display: flex; flex-direction: column; gap: 1.25rem; }
.menu-item { border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 1.25rem; }
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }
.menu-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.menu-item__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}
.menu-item__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item__price::before { content: '€'; margin-right: 0.1em; }
.menu-item__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.menu-note {
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* =========================================
   PRIVATE DINING
   ========================================= */
.private-dining {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.private-dining__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.private-dining__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.private-dining__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,8,6,0.88) 0%,
    rgba(26,20,12,0.72) 100%
  );
}
.private-dining__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.private-dining__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.private-dining__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.pd-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  margin-bottom: 2.5rem;
}
.pd-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* =========================================
   RESERVEREN / CTA-BAND
   ========================================= */
.reserveer-section.cta-band {
  padding: 7rem 0;
  background: var(--off-white);
}
.reserveer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 3px solid var(--gold);
  margin-bottom: 1.25rem;
}
.info-card:last-child { margin-bottom: 0; }
.info-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hours-list li:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); }
.hours-time { font-weight: 500; color: var(--dark); }
.hours-time--closed { color: #b5a48a; font-style: italic; }
.contact-detail {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.contact-detail a { color: var(--gold); }
.contact-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.75rem;
}
.reserveer__text .section-title { color: var(--dark); }
.reserveer__text .body-text { margin-bottom: 2rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-kit__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.55);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-kit__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-kit__col-title--mt { margin-top: 1.75rem; }
.footer-kit__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-kit__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-kit__nav a:hover { color: var(--gold); }
.footer-kit__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-kit__contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.footer-kit__contact-list a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-kit__contact-list a:hover { color: var(--gold); }
.footer-kit__hours {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-kit__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.closed-text { color: rgba(255,255,255,0.3); font-style: italic; }
.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-kit__bottom a { color: rgba(200,169,110,0.6); transition: color 0.2s; }
.footer-kit__bottom a:hover { color: var(--gold); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 980px) {
  .over-ons__grid { grid-template-columns: 1fr; gap: 3rem; }
  .over-ons__image { order: -1; }
  .over-ons__image .media { max-height: 360px; }
  .menu-categories { grid-template-columns: 1fr; }
  .reserveer__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
  .footer-kit__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .menu-photos { grid-template-columns: 1fr 1fr; }
  .menu-photos .menu-photo:last-child { grid-column: 1 / -1; }
  .pd-features { grid-template-columns: 1fr; }
  .footer-kit__inner { grid-template-columns: 1fr; gap: 2rem; padding-top: 3rem; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 280px; }
  .menu-photos { grid-template-columns: 1fr; }
  .menu-photos .menu-photo:last-child { grid-column: auto; }
  .menu-item__top { flex-direction: column; gap: 0.15rem; }
  .menu-item__price { align-self: flex-end; }
}

/* sr-only utility */
.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;
}
