/* ==========================================================================
   Olympia Garten Nürnberg – Griechisches Restaurant
   Stylesheet · heller, mediterraner Look (Creme / Navy / Gold)
   ========================================================================== */

/* --- Design-Tokens ------------------------------------------------------- */
:root {
  --cream:        #fbf7ec;   /* Grundfläche, wie Speisekarte */
  --cream-2:      #f4edda;   /* etwas dunklere Fläche */
  --navy:         #16202e;   /* Haupttext / dunkel */
  --navy-soft:    #2b3a4d;
  --gold:         #b8912f;   /* Akzent (Logo-Gold) */
  --gold-soft:    #c9a95e;
  --muted:        #6a6252;   /* Beschreibungstext */
  --line:         #e2d8bf;   /* dezente Trennlinien */
  --white:        #ffffff;

  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1140px;
  --radius: 4px;
  --shadow: 0 18px 45px -25px rgba(22, 32, 46, 0.4);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; margin: 0; }

/* --- Layout-Helfer ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tint { background: var(--cream-2); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 16px 0 0; }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
  border: 1.5px solid var(--gold);
}
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--navy); border-color: var(--navy); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn--light { border-color: rgba(255,255,255,.8); color: #fff; background: transparent; }
.btn--light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 600; letter-spacing: .04em;
  color: #fff;
  transition: color .3s ease;
}
.nav__logo span { color: var(--gold-soft); }
.nav__links { display: flex; gap: 30px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; color: rgba(255,255,255,.9);
  transition: color .25s ease;
}
.nav__links a:hover { color: var(--gold-soft); }
.nav__cta {
  font-size: .78rem !important; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; padding: 10px 20px; border: 1.5px solid var(--gold-soft);
  border-radius: var(--radius); color: #fff !important;
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); }

/* Zustand nach dem Scrollen: heller Balken */
.nav.is-scrolled {
  background: var(--cream);
  box-shadow: 0 2px 20px -12px rgba(22,32,46,.5);
  padding: 12px 40px;
}
.nav.is-scrolled .nav__logo { color: var(--navy); }
.nav.is-scrolled .nav__links a { color: var(--navy-soft); }
.nav.is-scrolled .nav__links a:hover { color: var(--gold); }
.nav.is-scrolled .nav__cta { color: var(--navy) !important; border-color: var(--gold); }
.nav.is-scrolled .nav__cta:hover { color: #fff !important; background: var(--gold); }

/* Burger (mobil) */
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: #fff; transition: background .3s ease; }
.nav.is-scrolled .nav__burger span { background: var(--navy); }

/* ==========================================================================
   HERO (Header-Video)
   ========================================================================== */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: flex-end; justify-content: center; text-align: center; overflow: hidden; background: linear-gradient(135deg, #1b2a22 0%, #16202e 55%, #2b3a4d 100%); padding-bottom: 12vh; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {                      /* Verdunkelung für Lesbarkeit */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,22,32,.55) 0%, rgba(15,22,32,.35) 40%, rgba(15,22,32,.7) 100%);
}
.hero__inner { position: relative; z-index: 2; color: #fff; padding: 0 24px; max-width: 820px; }
.hero__logo { width: 340px; max-width: 78vw; margin: 0 auto 8px; filter: drop-shadow(0 8px 30px rgba(0,0,0,.45)); }

/* Für Screenreader/SEO sichtbar, optisch versteckt (Logo trägt den Namen) */
.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; }
.hero__title { font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: .02em; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero__sub {
  font-family: var(--font-sans); font-size: .82rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin: 18px 0 0;
}
.hero__tagline { font-family: var(--font-serif); font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-style: italic; margin: 22px auto 0; max-width: 560px; color: rgba(255,255,255,.92); font-weight: 500; }
.hero__actions { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.75); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll::before { content: ""; display: block; width: 1px; height: 40px; background: rgba(255,255,255,.5); margin: 0 auto 10px; animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ==========================================================================
   ÜBER UNS
   ========================================================================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__img { position: relative; }
.about__img img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about__img::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.about__text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 22px; }
.about__text p { color: var(--muted); margin: 0 0 18px; }
.about__sig { font-family: var(--font-serif); font-style: italic; font-size: 1.4rem; color: var(--gold); margin-top: 8px; }

/* Werte-Reihe */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 70px; }
.value { text-align: center; padding: 0 10px; }
.value__ic { width: 46px; height: 46px; margin: 0 auto 16px; color: var(--gold); }
.value h3 { font-size: 1.35rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ==========================================================================
   SPEISEKARTE
   ========================================================================== */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 50px; }
.menu-tab {
  font-family: var(--font-sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; padding: 10px 20px; border-radius: 40px; cursor: pointer;
  background: transparent; color: var(--navy-soft); border: 1.5px solid var(--line);
  transition: all .2s ease;
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold); }
.menu-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fade .4s ease; }
@keyframes fade { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

.menu-group + .menu-group { margin-top: 46px; }
.menu-group__title {
  font-family: var(--font-sans); font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin: 0 0 20px; display: flex; align-items: center; gap: 16px;
}
.menu-group__title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 56px; }
.menu-item { display: flex; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px dotted var(--line); }
.menu-item__body { flex: 1; }
.menu-item__name { font-family: var(--font-serif); font-size: 1.28rem; font-weight: 600; color: var(--navy); }
.menu-item__no { color: var(--gold); font-weight: 600; font-size: .95rem; font-family: var(--font-sans); margin-right: 2px; }
.menu-item__desc { color: var(--muted); font-size: .9rem; line-height: 1.5; margin-top: 2px; }
.menu-item__price { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--gold); white-space: nowrap; }
.menu-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 44px; font-style: italic; }
.menu-note a { color: var(--gold); text-decoration: underline; }

/* ==========================================================================
   GALERIE
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--cream-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ==========================================================================
   INFO / KONTAKT
   ========================================================================== */
.info { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.info__block + .info__block { margin-top: 34px; }
.info__block h3 { font-size: 1.5rem; margin-bottom: 14px; color: var(--navy); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dotted var(--line); font-size: .98rem; }
.hours li span:first-child { color: var(--navy-soft); }
.hours li span:last-child { color: var(--muted); }
.hours .closed span:last-child { color: var(--gold); font-weight: 600; }
.contact-line { display: flex; align-items: center; gap: 12px; margin: 0 0 12px; color: var(--navy-soft); }
.contact-line svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.map { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); filter: grayscale(.2) contrast(1.05); }
.info__cta { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand { font-family: var(--font-serif); font-size: 1.7rem; color: #fff; margin-bottom: 12px; }
.footer__brand span { color: var(--gold-soft); }
.footer h4 { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 16px; }
.footer a { color: rgba(255,255,255,.75); transition: color .2s ease; }
.footer a:hover { color: var(--gold-soft); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 9px; font-size: .95rem; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.social {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(201,169,94,.5);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-soft); transition: all .25s ease;
}
.social:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.social svg { width: 19px; height: 19px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__bottom a { color: rgba(255,255,255,.5); }

/* ==========================================================================
   RECHTSSEITEN (Impressum / Datenschutz)
   ========================================================================== */
.legal { padding: 150px 0 90px; min-height: 70vh; }
.legal .wrap { max-width: 820px; }
.legal a.back { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-bottom: 30px; }
.legal a.back:hover { color: var(--navy); }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 8px; }
.legal .lead { color: var(--muted); margin: 0 0 40px; }
.legal h2 { font-size: 1.4rem; color: var(--navy); margin: 38px 0 12px; }
.legal h3 { font-size: 1.1rem; color: var(--navy-soft); margin: 24px 0 8px; }
.legal p, .legal li { color: var(--navy-soft); font-size: 1rem; margin: 0 0 14px; }
.legal ul { padding-left: 22px; margin: 0 0 14px; }
.legal a:not(.back) { color: var(--gold); text-decoration: underline; }
.legal .card { background: var(--cream-2); border-radius: var(--radius); padding: 26px 30px; margin: 0 0 20px; }
.legal .card p { margin: 0 0 4px; }
.legal .note { font-size: .88rem; color: var(--muted); border-left: 3px solid var(--gold); padding: 4px 0 4px 16px; background: transparent; }

/* ==========================================================================
   REVEAL-ANIMATION
   ========================================================================== */
/* Nur wenn JS aktiv ist, starten Elemente unsichtbar (Progressive Enhancement).
   Ohne JS bleibt die komplette Seite sichtbar. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 940px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__img { max-width: 460px; margin: 0 auto; }
  .info { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .nav { padding: 16px 22px; }
  .nav.is-scrolled { padding: 12px 22px; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--navy); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 28px; padding: 40px; transform: translateX(100%);
    transition: transform .35s ease; box-shadow: -20px 0 60px -30px #000;
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { color: #fff; font-size: 1rem; }
  .nav__burger { display: flex; z-index: 60; }
  .values { grid-template-columns: 1fr; gap: 34px; margin-top: 50px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery .wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
}
