/* ============================================================
   Bar Restaurant van Rossum — Main Stylesheet
   Palette: Navy #1a3a5c · Gold #c8a96e · Cream #f5f0e8 · Dark #2c2c2c
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a3a5c;
  --navy-dark: #112843;
  --gold:   #c8a96e;
  --gold-light: #d4b97e;
  --cream:  #f5f0e8;
  --cream-dark: #ede6d8;
  --dark:   #2c2c2c;
  --mid:    #5a5a5a;
  --white:  #ffffff;

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

  --radius: 4px;
  --shadow-sm: 0 2px 12px rgba(26,58,92,.08);
  --shadow-md: 0 8px 32px rgba(26,58,92,.12);
  --shadow-lg: 0 20px 60px rgba(26,58,92,.16);

  --max-w: 1200px;
  --nav-h: 72px;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* Image fill utility — CRITICAL for aspect-ratio containers */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__media img, .hero__img,
.verhaal__img { width: 100%; height: 100%; object-fit: cover; display: block; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { line-height: 1.75; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .75rem;
}
.section-eyebrow.gold { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .875rem 2rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: all .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,92,.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,92,.4);
}
.btn--full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
  background: transparent;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}
.logo-r { color: var(--navy); }
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
}

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--white);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: all .25s ease;
  border-radius: 2px;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU OVERLAY (kit .mobile-menu__overlay)
   ============================================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--navy);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 2rem 2rem;
}
.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: .5rem;
  margin-bottom: 1.5rem;
}
.mobile-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.mobile-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}
.mobile-menu__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu__item {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s, padding-left .2s;
}
.mobile-menu__item:hover { color: var(--gold); padding-left: .5rem; }
.mobile-menu__item--cta {
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.mobile-menu__item--cta:hover { background: var(--gold-light); padding-left: 0; }
.mobile-menu__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  line-height: 1.8;
}
.mobile-menu__footer a { color: var(--gold); }

/* ============================================================
   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;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(17,40,67,.65) 0%,
    rgba(26,58,92,.45) 50%,
    rgba(26,58,92,.7) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  font-weight: 300;
  letter-spacing: .02em;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ONS VERHAAL
   ============================================================ */
.verhaal {
  background: var(--navy);
  color: var(--white);
  padding: 7rem 2rem;
}
.verhaal__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.verhaal__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.verhaal__divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.verhaal__body {
  color: rgba(255,255,255,.8);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.verhaal__quote {
  position: relative;
  margin-top: 2.5rem;
  padding: 2rem 2rem 2rem 3rem;
  border-left: 3px solid var(--gold);
  background: rgba(200,169,110,.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-mark {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 2.5rem;
}
.verhaal__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1.6;
}
.verhaal__visual {
  position: relative;
}
.verhaal__img-wrap {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.verhaal__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.verhaal__stat-box {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* ============================================================
   WAT WIJ BIEDEN — CARDS
   ============================================================ */
.aanbod {
  background: var(--cream);
  padding: 7rem 2rem;
}
.aanbod__inner { max-width: var(--max-w); margin: 0 auto; }
.aanbod__header {
  text-align: center;
  margin-bottom: 4rem;
}
.aanbod__header h2 { color: var(--navy); margin-top: .5rem; }

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

.card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card--featured {
  background: var(--navy);
  color: var(--white);
}

.card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .4s ease;
}
.card:hover .card__media img { transform: scale(1.04); }

.card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__icon {
  width: 44px; height: 44px;
  margin-bottom: 1rem;
  color: var(--gold);
}
.card__icon svg { width: 100%; height: 100%; }

.card h3 {
  color: var(--navy);
  margin-bottom: .75rem;
}
.card--featured h3 { color: var(--gold); }
.card--featured .card__icon { color: var(--gold); }

.card p {
  font-size: .95rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.card--featured p { color: rgba(255,255,255,.75); }

.card__features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.card__features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--dark);
}
.card--featured .card__features li { color: rgba(255,255,255,.85); }
.card__features li svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--navy);
  padding: 7rem 2rem;
}
.reviews__inner { max-width: var(--max-w); margin: 0 auto; }
.reviews__header {
  text-align: center;
  margin-bottom: 4rem;
}
.reviews__header h2 { color: var(--white); }
.reviews__rating-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.stars-row {
  display: flex;
  gap: 3px;
}
.stars-row svg,
.review-card__stars svg {
  width: 18px; height: 18px;
}
.rating-score {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.rating-score span { color: rgba(255,255,255,.6); font-weight: 400; font-size: .9rem; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .2s;
}
.review-card:hover { background: rgba(255,255,255,.1); }
.review-card__stars { display: flex; gap: 2px; }

.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .5rem;
}
.review-avatar {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-card__author strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
  font-weight: 600;
}
.review-card__author span {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--gold);
  padding: 5rem 2rem;
}
.cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: .5rem;
}
.cta-band__text p {
  color: rgba(26,58,92,.75);
  font-size: 1rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--cream);
  padding: 7rem 2rem;
}
.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact__info h2 { color: var(--navy); margin: .5rem 0 2rem; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__details li svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact__details a { color: var(--navy); transition: color .2s; }
.contact__details a:hover { color: var(--gold); }
.opening-hours {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-size: .9rem;
}

.contact__form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--mid);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer.footer-kit {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 5rem 2rem 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo .logo-text { color: var(--white); }
.footer__tagline {
  margin-top: 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.footer__nav h4,
.footer__hours h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__nav a:hover { color: var(--gold); }
.hours-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  gap: 1rem;
}
.footer__contact address {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .875rem;
}
.footer__contact a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer__contact a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Show hamburger, hide desktop nav */
  .nav-links { display: none; }
  .mobile-menu__trigger { display: block; }

  /* Hero */
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; }

  /* Verhaal */
  .verhaal__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .verhaal__visual { order: -1; }
  .verhaal__stat-box { left: 1rem; bottom: -1.5rem; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .verhaal { padding: 5rem 1.5rem; }
  .aanbod  { padding: 5rem 1.5rem; }
  .reviews { padding: 5rem 1.5rem; }
  .contact-section { padding: 5rem 1.5rem; }
  .cta-band { padding: 4rem 1.5rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
.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;
}
