/* ═══════════════════════════════════════
   OLYMPIA RESTAURANT - DEMO SITE
   Olijfgroen #4a5c3f | Goud #c8a84b | Creme #f5f0e8 | Donkergrijs #2c2c2c
═══════════════════════════════════════ */

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

:root {
  --green:  #4a5c3f;
  --green-dark: #2c3b2a;
  --gold:   #c8a84b;
  --gold-light: #e0c97a;
  --cream:  #f5f0e8;
  --dark:   #2c2c2c;
  --text:   #3a3a3a;
  --text-light: #6b6b6b;
  --white:  #ffffff;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(44,44,44,.10);
  --shadow-lg: 0 12px 48px rgba(44,44,44,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

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

/* 1. TYPOGRAPHY
──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}

.section-tag {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.section-tag--light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title--light { color: var(--cream); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

.section-head { text-align: center; margin-bottom: 3rem; }

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

/* 3. BUTTONS
──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,92,63,.35); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,168,75,.35); }

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

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

/* 4. NAVIGATION
──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  transition: background .3s;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
}
.nav-logo__leaf { display: flex; align-items: center; }
.nav-logo__text { letter-spacing: .04em; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(245,240,232,1);
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

/* Mobile trigger */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--cream);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s;
}

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

.mobile-menu__panel { display: flex; flex-direction: column; height: 100%; padding: 1.5rem; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200,168,75,.2);
}
.mobile-menu__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream);
  font-weight: 600;
}
.mobile-menu__close {
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: .4rem;
  border-radius: var(--radius);
  transition: color .2s;
}
.mobile-menu__close:hover { color: var(--gold); }

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem 0;
  gap: .25rem;
}
.mobile-menu__item {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(200,168,75,.15);
  transition: color .2s, padding-left .2s;
}
.mobile-menu__item:hover { color: var(--gold); padding-left: .75rem; }

.mobile-menu__footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,168,75,.2);
}
.mobile-menu__cta {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: background .2s;
}
.mobile-menu__cta:hover { background: var(--gold-light); }

/* 5. MEANDER DIVIDER
──────────────────────────────────────── */
.meander-divider {
  width: 100%;
  padding: .5rem 0;
  line-height: 0;
  overflow: hidden;
}
.meander-divider svg { width: 100%; height: 30px; }

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

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,59,42,.55) 0%,
    rgba(44,59,42,.35) 40%,
    rgba(44,59,42,.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
}

.hero__tag {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.hero__headline {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,.85);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: .7;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.scroll-dot { animation: dotFall 2s infinite; }
@keyframes dotFall {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* 7. WELCOME
──────────────────────────────────────── */
.welcome {
  background: var(--cream);
  padding: 6rem 0;
}

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

.welcome__img-wrap {
  position: relative;
}
.welcome__img-frame {
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.welcome__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.welcome__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(200,168,75,.4);
  text-align: center;
  z-index: 2;
}
.welcome__badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.welcome__badge-num sup { font-size: 1rem; vertical-align: super; }
.welcome__badge-txt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: .2rem;
}

.welcome__lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}
.welcome__body {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.welcome__pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.welcome__pillars li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}
.pillar__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74,92,63,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

/* 8. MENU SECTION
──────────────────────────────────────── */
.menu-section {
  background: var(--white);
  padding: 6rem 0;
}

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

.dish-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.dish-card__img-wrap {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.dish-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.dish-card:hover .dish-card__img { transform: scale(1.05); }

.dish-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 2px;
}
.dish-card__badge--gold {
  background: var(--gold);
  color: var(--dark);
}

.dish-card__body {
  padding: 1.25rem;
}
.dish-card__top {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}
.dish-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.dish-card__dots {
  flex: 1;
  height: 1px;
  border-top: 2px dotted rgba(200,168,75,.4);
}
.dish-card__desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: .85rem;
}
.dish-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(74,92,63,.1);
  padding: .2rem .65rem;
  border-radius: 2px;
}

.menu-cta {
  text-align: center;
  margin-top: 3rem;
}

/* 9. RESERVATION
──────────────────────────────────────── */
.reservation {
  position: relative;
  background: var(--green);
  padding: 6rem 0;
  overflow: hidden;
}

.reservation__bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(200,168,75,.04) 30px,
    rgba(200,168,75,.04) 31px
  );
}

.reservation__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.reservation__copy {
  color: var(--cream);
}

.reservation__lead {
  font-size: 1.05rem;
  color: rgba(245,240,232,1);
  margin-bottom: 2rem;
}

.reservation__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reservation__details li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .95rem;
  color: rgba(245,240,232,.9);
}
.reservation__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200,168,75,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.reservation__tel { color: var(--gold); font-weight: 700; }

/* Form */
.reservation__form-wrap {
  background: var(--cream);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.reservation__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row--2 { flex-direction: row; }
.form-row--2 > * { flex: 1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-field label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: .75rem 1rem;
  border: 1.5px solid rgba(74,92,63,.25);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,92,63,.12);
}
.form-field textarea { resize: vertical; min-height: 80px; }

/* 10. REVIEWS
──────────────────────────────────────── */
.reviews {
  background: var(--cream);
  padding: 6rem 0;
}

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

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card__stars {
  display: flex;
  gap: .2rem;
}

.review-card__text {
  font-style: italic;
  font-size: .97rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  border-left: none;
  padding: 0;
}
.review-card__text::before { content: open-quote; color: var(--gold); font-size: 1.4em; }
.review-card__text::after { content: close-quote; color: var(--gold); font-size: 1.4em; }

.review-card__author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(74,92,63,.1);
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: .95rem; color: var(--dark); }
.review-card__author span { font-size: .82rem; color: var(--text-light); }

/* 11. FOOTER
──────────────────────────────────────── */
.footer-kit {
  background: var(--green-dark);
  color: var(--cream);
}

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: .9rem;
  color: rgba(245,240,232,.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,168,75,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,.7);
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col__title {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: rgba(245,240,232,.75);
  border-bottom: 1px solid rgba(200,168,75,.1);
  padding-bottom: .4rem;
}
.footer-hours .closed { color: rgba(245,240,232,.35); font-style: italic; }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 1.5rem;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: rgba(245,240,232,1);
}
.footer-contact-list a {
  color: rgba(245,240,232,1);
  transition: color .2s;
}
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list svg { flex-shrink: 0; color: var(--gold); opacity: .85; }

.footer-reserve-btn { font-size: .88rem; padding: .7rem 1.5rem; }

.footer-bottom {
  background: rgba(0,0,0,.2);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(245,240,232,.45);
}
.footer-demo-note a { color: var(--gold); opacity: .65; }
.footer-demo-note a:hover { opacity: 1; }


/* Hero CTA: gold primary button on dark hero for max contrast */
.hero .btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.hero .btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,168,75,.45);
}

/* 12. RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome__grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

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

  .welcome__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .welcome__badge {
    right: 1rem;
    bottom: -1rem;
    width: 88px;
    height: 88px;
  }
  .welcome__badge-num { font-size: 1.6rem; }

  .reservation__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .reservation__form-wrap { padding: 1.75rem; }

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

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

  .form-row--2 { flex-direction: column; gap: 1.25rem; }
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .hero__cta-group { flex-direction: column; align-items: center; }
  .hero__cta-group .btn { width: 100%; max-width: 280px; }

  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

@media (max-width: 380px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* 13. REDUCED MOTION
──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
