/* ═══════════════════════════════════════════════════
   VIVIAMO WOERDEN — Italiaans Restaurant Demo
   Palette: terracotta #8B3A2A, sand #C8B99A, crème #F5F0E8, 
            donkergrijs #2C2C2C, goud #D4A853
═══════════════════════════════════════════════════ */

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

:root {
  --terra:  #8B3A2A;
  --terra-dark: #6e2d20;
  --sand:   #C8B99A;
  --cream:  #F5F0E8;
  --dark:   #2C2C2C;
  --gold:   #D4A853;
  --gold-dark: #b8903f;
  --white:  #FFFFFF;
  --text:   #3a2e28;
  --text-light: #6b5e54;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(44,28,20,0.10);
  --shadow-card-hover: 0 8px 36px rgba(44,28,20,0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ─── IMAGE FILL UTILITY ─── */
.media,
.img-fill,
figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img,
.img-fill > img,
figure.photo > img,
.gallery img,
.card img,
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn--cta   { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn--cta:hover { background: var(--terra-dark); border-color: var(--terra-dark); }

/* Hero gold button — stronger box shadow for visibility over dark image */

/* Hero CTA — large, prominent, easy to see over dark image */
.btn--hero-cta {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 32px rgba(0,0,0,0.45), 0 0 0 3px rgba(212,168,83,0.3);
  text-transform: uppercase;
}
.btn--hero-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 4px rgba(212,168,83,0.4);
}


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

.btn--white { background: var(--white); color: var(--terra); border-color: var(--white); }
.btn--white:hover { background: var(--cream); border-color: var(--cream); }

.btn--outline { background: transparent; color: var(--terra); border-color: var(--terra); }
.btn--outline:hover { background: var(--terra); color: var(--white); }

/* ─── SECTION HEADINGS ─── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  color: var(--dark);
  margin-bottom: 12px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ─── STARS ─── */
.star { width: 18px; height: 18px; color: var(--gold); }

/* ════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════ */
/* Nav always has a subtle dark gradient at top to ensure white links readable over any hero image */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(20,10,5,0.72) 0%, rgba(20,10,5,0.0) 100%);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(245,240,232,0.97);
  box-shadow: 0 2px 16px rgba(44,28,20,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  flex-shrink: 0;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.site-nav.scrolled .nav-logo { color: var(--terra); text-shadow: none; }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.nav-links a:hover { color: var(--gold); }
.site-nav.scrolled .nav-links a { color: var(--dark); text-shadow: none; }
.site-nav.scrolled .nav-links a:hover { color: var(--terra); }

.nav-cta { font-size: 0.875rem; padding: 10px 20px; }

.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  transition: color 0.3s;
  flex-shrink: 0;
}
.site-nav.scrolled .mobile-menu__trigger { color: var(--dark); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

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

/* ════════════════════════════════════════════════
   MOBILE MENU — FULLSCREEN OVERLAY
════════════════════════════════════════════════ */
.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44,28,20,0.5);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu__backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__overlay {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  height: 100svh;
  min-height: 100dvh;
  z-index: 1000;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu__overlay.open {
  transform: translateX(0);
}
.mobile-menu__overlay[aria-hidden="true"] { pointer-events: none; }
.mobile-menu__overlay[aria-hidden="false"] { pointer-events: all; }

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  padding: 32px 32px 48px;
  min-height: 100%;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  align-self: flex-end;
  padding: 8px;
  margin-bottom: 24px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--terra);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.mobile-menu__list {
  list-style: none;
  flex: 1;
}
.mobile-menu__item {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
  padding: 16px 0;
  border-bottom: 1px solid rgba(200,185,154,0.35);
  transition: color 0.2s;
  min-height: 44px;
}
.mobile-menu__item:hover { color: var(--terra); }

.mobile-menu__cta {
  margin-top: 40px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 24px;
}

/* Prevent body scroll when menu open */
body.menu-open { overflow: hidden; }

/* ════════════════════════════════════════════════
   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(20,10,5,0.65) 0%,
    rgba(44,28,20,0.35) 40%,
    rgba(44,28,20,0.60) 70%,
    rgba(44,28,20,0.80) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}
.hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  margin-bottom: 36px;
  font-weight: 400;
}

/* ════════════════════════════════════════════════
   AWARD BAR
════════════════════════════════════════════════ */
.award-bar {
  background: linear-gradient(135deg, var(--terra) 0%, #a0432f 100%);
  color: var(--white);
  padding: 28px 24px;
}
.award-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.award-bar__trophy {
  color: var(--gold);
  flex-shrink: 0;
}
.award-bar__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.award-bar__text strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white);
  letter-spacing: 0.01em;
}
.award-bar__text span {
  font-size: 0.875rem;
  opacity: 0.85;
}
.award-bar__stars {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.award-bar__stars .star {
  color: var(--gold);
  width: 22px;
  height: 22px;
}

/* ════════════════════════════════════════════════
   CONCEPT SECTIE
════════════════════════════════════════════════ */
.concept-section {
  padding: 96px 0;
  background: var(--white);
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.concept-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(200,185,154,0.3);
  transition: box-shadow 0.25s, transform 0.25s;
}
.concept-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  background: linear-gradient(145deg, var(--cream) 60%, rgba(139,58,42,0.05) 100%);
}
.concept-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(139,58,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(139,58,42,0.12);
  margin: 0 auto 24px;
  color: var(--terra);
}
.concept-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.concept-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}
/* Decorative divider on concept cards */
.concept-card::after {
  content: "";
  display: block;
  width: 40px; height: 2px;
  background: var(--terra);
  margin: 20px auto 0;
  border-radius: 2px;
  opacity: 0.35;
}

/* ════════════════════════════════════════════════
   ONS VERHAAL
════════════════════════════════════════════════ */
.verhaal-section {
  padding: 96px 0;
  background: var(--cream);
}
.verhaal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.verhaal-image .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 48px rgba(44,28,20,0.14);
}
.verhaal-image .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.verhaal-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}
.verhaal-tekst h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.verhaal-tekst p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.verhaal-tekst p strong { color: var(--terra); font-weight: 600; }
.verhaal-tekst .btn { margin-top: 8px; }

/* ════════════════════════════════════════════════
   MENU SECTIE
════════════════════════════════════════════════ */
.menu-section {
  padding: 96px 0;
  background: var(--white);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(200,185,154,0.25);
  transition: box-shadow 0.25s, transform 0.25s;
}
.menu-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.menu-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.menu-card:hover .menu-card__media img { transform: scale(1.04); }

.menu-card__body {
  padding: 24px;
}
.menu-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(139,58,42,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.menu-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.menu-card__body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.menu-card__price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--terra);
}
.menu-cta {
  text-align: center;
  margin-top: 48px;
}

/* ════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════ */
.reviews-section {
  padding: 96px 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(200,185,154,0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars {
  display: flex;
  gap: 4px;
}
.review-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-card p::before { content: "\201C"; }
.review-card p::after  { content: "\201D"; }
.review-card cite {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

/* ════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--terra) 0%, #7a3224 100%);
  padding: 80px 24px;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band__text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-section {
  padding: 96px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2,
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 28px;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-list li svg { color: var(--terra); flex-shrink: 0; margin-top: 2px; }
.contact-list a { color: var(--terra); font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}
.form-row input,
.form-row textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(200,185,154,0.5);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.2s;
  width: 100%;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--terra);
}
.contact-form .btn { margin-top: 8px; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold); }

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.social-link:hover { color: var(--gold); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bar a { color: rgba(255,255,255,0.55); }
.footer-bar a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET 768px
════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .concept-grid,
  .menu-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .verhaal-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE 480px
════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .concept-grid,
  .menu-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-band__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-band__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .award-bar__inner {
    gap: 12px;
  }
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* ─── SCREEN READER ONLY ─── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─── MOBILE REVIEW CARDS — HORIZONTAL SCROLL ─── */
@media (max-width: 600px) {
  .reviews-section .reviews-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .review-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
