/* ═══════════════════════════════════════════════════════════
   Restaurant Nostos — Stylesheet
   Palette: Egeïsch blauw #1B4F8A · Crème #FAF6EF · Goud #C8A84B
   Typography: Cormorant Garamond (serif) + Lato (sans)
═══════════════════════════════════════════════════════════ */

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

:root {
  --blue:       #1B4F8A;
  --blue-dark:  #123665;
  --blue-light: #2461a8;
  --cream:      #FAF6EF;
  --cream-dark: #F0E9DC;
  --gold:       #C8A84B;
  --gold-dark:  #a88830;
  --brown:      #3B2A1A;
  --text:       #2C1E10;
  --text-light: #5a4432;
  --white:      #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Lato', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-pad: clamp(4rem, 8vw, 7rem);

  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(27, 79, 138, 0.12);
  --shadow-lg: 0 8px 48px rgba(27, 79, 138, 0.18);

  --transition: 250ms ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul, ol { list-style: none; }

.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;
}

/* ─── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── Section utilities ───────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 52ch;
}
.section-header.center { text-align: center; }
.section-header.center .section-intro { margin: 0 auto; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn--text {
  background: none;
  border: none;
  color: var(--blue);
  padding: 0.4em 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.btn--text:hover { color: var(--gold-dark); }
.btn--lg { padding: 1em 2.5em; font-size: 1rem; }
.btn--full { width: 100%; text-align: center; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(18, 54, 101, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--gutter);
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-greek {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.logo-name {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* Desktop nav */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.desktop-nav a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.desktop-nav a:hover { color: var(--gold); }
.desktop-nav .nav-cta {
  background: var(--gold);
  color: var(--brown);
  padding: 0.55em 1.4em;
  border-radius: var(--radius);
}
.desktop-nav .nav-cta:hover { background: var(--gold-dark); color: var(--brown); }

/* ─── Hamburger ──────────────────────────────────────────── */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  position: relative;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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 ────────────────────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--blue-dark);
  z-index: 150;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  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: 2rem var(--gutter) 3rem;
}
.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.mobile-menu__close:hover { opacity: 1; }
.mobile-menu__logo {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200, 168, 75, 0.3);
}
.mobile-menu__logo .logo-greek {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.mobile-menu__item {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), padding-left var(--transition);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: left;
  width: 100%;
  text-decoration: none;
}
.mobile-menu__item:hover, .mobile-menu__item:focus-visible {
  color: var(--gold);
  padding-left: 0.5rem;
}
.mobile-menu__item--cta {
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--brown);
  text-align: center;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-menu__item--cta:hover { background: var(--gold-dark); color: var(--brown); padding-left: 0; }
.mobile-menu__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 168, 75, 0.3);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu__footer a { color: var(--gold); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  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;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18, 54, 101, 0.72) 0%,
    rgba(18, 54, 101, 0.45) 50%,
    rgba(59, 42, 26, 0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem var(--gutter) 6rem;
  max-width: 820px;
}
.hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Over ons ───────────────────────────────────────────── */
.over-ons { background: var(--white); }
.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.over-ons__body {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.over-ons__body em { color: var(--blue); font-style: italic; font-family: var(--font-serif); font-size: 1.15em; }
.over-ons__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.over-ons__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}

/* ─── Menu section ───────────────────────────────────────── */
.menu-section {
  background: var(--cream);
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 2.5rem 0 0;
  flex-wrap: wrap;
}
.menu-tab {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6em 1.6em;
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.menu-tab.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: 340px 1fr; gap: 3rem; margin-top: 2.5rem; align-items: start; }

.menu-panel__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 6rem;
}
.menu-panel__image img { width: 100%; height: 340px; object-fit: cover; }
.menu-panel__image--square img { height: 300px; }

.menu-items { display: flex; flex-direction: column; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
}
.menu-item__info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 38ch;
}
.menu-item__price {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-light);
  border-left: 3px solid var(--gold);
}

/* ─── CTA Band ───────────────────────────────────────────── */
.cta-band {
  background: var(--blue-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'Νόστος';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  white-space: nowrap;
}
.cta-band__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-band__inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ─── Openingstijden ──────────────────────────────────────── */
.openingstijden { background: var(--white); }
.openingstijden__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.openingstijden__text .section-title { margin-bottom: 1rem; }
.openingstijden__text p { color: var(--text-light); margin-bottom: 2rem; font-size: 1.02rem; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--transition);
}
.hours-table tr:hover { background: var(--cream); }
.hours-table th {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  padding: 0.85rem 1rem 0.85rem 0;
  width: 45%;
}
.hours-table td {
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 0.85rem 0;
  font-weight: 400;
}
.hours-table .highlight-row th,
.hours-table .highlight-row td { color: var(--blue); font-weight: 700; }
.gesloten { color: #b0a090; font-style: italic; font-weight: 400; }
.hours-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #8a7a6a;
  font-style: italic;
}

/* ─── Contact ──────────────────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-block { margin-bottom: 2rem; }
.contact-block h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}
.contact-block address, .contact-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.contact-list { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.contact-list a { color: var(--blue); }
.contact-list a:hover { color: var(--gold-dark); text-decoration: underline; }
.contact-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold-dark); }

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}
.form-field label span { color: var(--gold-dark); }
.form-field input, .form-field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 79, 138, 0.12);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-privacy { font-size: 0.78rem; color: #8a7a6a; text-align: center; }

.map-wrap {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer-kit {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.footer-col address, .footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-logo-greek {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.6; }
.footer-list { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-list li { font-size: 0.88rem; }
.footer-list a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-list a:hover { color: var(--gold); }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; }
.footer-hours .gesloten-sm { color: rgba(255,255,255,0.35); font-style: italic; }
.footer-kit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy, .footer-legal { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .menu-panel.active { grid-template-columns: 1fr; }
  .menu-panel__image { position: static; }
  .menu-panel__image img { height: 280px; }
  .footer-kit__grid { grid-template-columns: 1fr 1fr; }
}

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

  .over-ons__grid { grid-template-columns: 1fr; gap: 2rem; }
  .over-ons__image img { height: 260px; }

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

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

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

  .footer-kit__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-kit__bottom { flex-direction: column; text-align: center; }

  .hero__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-kit__grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 0.35rem; }
  .menu-tab { font-size: 0.78rem; padding: 0.5em 1em; }
}

/* ─── Reveal animation ────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
