/* ═══════════════════════════════════════════════════════
   FORCHETTA — Authentiek Italiaans Restaurant Schoonhoven
   Design: premium, warm, authentiek Italiaans
   Kleuren: #C8102E (crimson), #F5F0E8 (crème), #1A1A1A (zwart), #8B7355 (goud)
   ═══════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #F5F0E8;
  color: #1A1A1A;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul { list-style: none; }

/* ─── VANGNET IMG CONTAINERS ────────────────────────── */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery-item img, .menu-card__img img, .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── CSS VARIABELEN ────────────────────────────────── */
:root {
  --red:    #C8102E;
  --red-dk: #a00d24;
  --cream:  #F5F0E8;
  --black:  #1A1A1A;
  --gold:   #8B7355;
  --text-muted: #5a5a5a;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 4px;
  --section-pad: 96px;
}

/* ─── TYPOGRAFIE ────────────────────────────────────── */
.script-heading {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.script-heading--light { color: #F5F0E8; }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.eyebrow--light { color: #e8bdc5; }

/* ─── KNOPPEN ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dk); border-color: var(--red-dk); }

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.btn--outline:hover { background: rgba(255,255,255,0.15); }

.btn--outline-dark {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline-dark:hover { background: var(--red); color: #fff; }

.btn--full { width: 100%; }

/* ─── CONTAINER & SECTIES ───────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-header--light .script-heading { color: #F5F0E8; }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.section-intro--light { color: rgba(245,240,232,0.8); }

/* ─── NAVIGATIE ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26,26,26,0.0);
  transition: background 0.35s, box-shadow 0.35s;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(26,26,26,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dk) !important; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0 1.5rem;
}
.logo-being {
  font-family: 'Dancing Script', cursive;
  font-size: 0.85rem;
  color: var(--red);
  display: block;
  line-height: 1.2;
}
.logo-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #fff;
  display: block;
  line-height: 1;
}
.logo-sub {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.65rem;
  font-style: italic;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 2px;
}

/* Hamburger trigger */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ─── MOBIEL MENU (fullscreen overlay) ──────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #1A1A1A;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  min-height: 100dvh;
  height: 100dvh;
  overflow-y: auto;
}
.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;
  min-height: 100%;
  padding: 80px 32px 48px;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }

.mobile-menu__list {
  flex: 1;
}
.mobile-menu__list li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu__item {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 1rem 0;
  transition: color 0.2s;
  min-height: 44px;
  text-decoration: none;
}
.mobile-menu__item:hover { color: #fff; }

.mobile-menu__item--cta {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  font-size: 1.1rem;
  border-bottom: none !important;
}
.mobile-menu__list li:has(.mobile-menu__item--cta) {
  border-bottom: none;
}

.mobile-menu__contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu__contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.mobile-menu__contact a:hover { color: #fff; }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 800px;
}

.hero__eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: #e8bdc5;
  margin-bottom: 0.8rem;
  display: block;
}

.hero__title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color 0.2s;
}
.hero__scroll:hover { color: #fff; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── OVER ONS ──────────────────────────────────────── */
.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.over-ons__text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1.025rem;
}
.over-ons__text .btn { margin-top: 1.5rem; }

.over-ons__image {
  position: relative;
}
.over-ons__image .img-fill {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.over-ons__image .img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.over-ons__image:hover .img-fill img { transform: scale(1.03); }

.over-ons__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(200,16,46,0.4);
}
.badge__text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge__italic {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
}

/* ─── MENU SECTIE ───────────────────────────────────── */
.menu-section { background: #fff; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.menu-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}

.menu-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card__img img { transform: scale(1.06); }

.menu-card__body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.menu-card__header h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.menu-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.menu-card__cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.menu-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.menu-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.menu-footer p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ─── SFEER GALERIJ ─────────────────────────────────── */
.sfeer-section {
  background: #1A1A1A;
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
  margin-top: 3rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.9);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.gallery-item--large {
  grid-column: span 2;
  aspect-ratio: 8/5;
}

/* ─── RESERVEREN ────────────────────────────────────── */
.reserveren-section {
  background: var(--cream);
  position: relative;
}
.reserveren-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B7355' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.reserveren-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.reserveren-info .script-heading { margin-top: 0.5rem; }
.reserveren-info > p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.reserveren-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--red); }
.contact-link svg { color: var(--red); flex-shrink: 0; }

.reserveren-hours h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.reserveren-hours ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9rem;
}
.closed { color: var(--text-muted); font-style: italic; }

/* Formulier */
.reserveren-form-wrap {
  background: #fff;
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.form-group label span { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: #fafaf8;
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
}

/* ─── OPENINGSTIJDEN ────────────────────────────────── */
.tijden-section {
  background: #fff;
}

.tijden-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.tijden-text > p { color: var(--text-muted); }

.tijden-table {
  background: var(--cream);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.tijden-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.tijden-row:last-of-type { border-bottom: none; }

.tijden-day { font-weight: 600; font-size: 0.95rem; }
.tijden-time {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
}
.tijden-time--closed {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
}

.tijden-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.tijden-note p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── LOCATIE ───────────────────────────────────────── */
.locatie-section { background: var(--cream); }

.locatie-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.locatie-info { display: flex; flex-direction: column; gap: 0; }
.locatie-info .script-heading { margin-bottom: 1.5rem; }

.locatie-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.locatie-detail svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.locatie-detail a { color: var(--black); transition: color 0.2s; }
.locatie-detail a:hover { color: var(--red); }

.locatie-info .btn { margin-top: 1rem; align-self: flex-start; }

.locatie-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.locatie-map iframe { display: block; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer-kit {
  background: #111;
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.footer-logo .logo-being {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  color: var(--red);
}
.footer-logo .logo-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #fff;
}
.footer-logo .logo-sub {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-socials a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.footer-nav h4,
.footer-tijden h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-nav ul li {
  margin-bottom: 0.55rem;
}
.footer-nav ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: #fff; }

.footer-tijden ul li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-tijden .closed {
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-contact address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.7rem;
  line-height: 1.7;
}
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.35rem;
}
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-credits a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-credits a:hover { color: #fff; }

/* ─── RESPONSIVE — TABLET (≤ 900px) ─────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 64px; }

  .nav-links { display: none; }
  .mobile-menu__trigger { display: flex; }

  .over-ons__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .over-ons__image { order: -1; }
  .over-ons__badge { width: 90px; height: 90px; left: -10px; bottom: -10px; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--large { grid-column: span 2; }

  .reserveren-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .tijden-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .locatie-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── RESPONSIVE — MOBIEL (≤ 600px) ─────────────────── */
@media (max-width: 600px) {
  :root { --section-pad: 48px; }

  .hero__title { font-size: 2.2rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 280px; }

  .menu-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }

  .reserveren-form-wrap { padding: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom .container { flex-direction: column; text-align: center; }

  .script-heading { font-size: 2rem; }

  .over-ons__badge { display: none; }

  .locatie-map iframe { height: 280px; }
}
