
/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #c9a96e;
  --gold-lt: #e8d5b0;
  --dark:    #111110;
  --dark2:   #1c1c1a;
  --dark3:   #252523;
  --cream:   #f8f4ed;
  --text:    #e8e4dc;
  --muted:   #9a9488;
  --radius:  8px;
  --trans:   0.3s ease;
}

html { scroll-behavior: smooth; }
/* lato-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

body:not(.has-hero) header{
  background: rgba(17,17,16,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  padding: 0.75rem 0;
}

img { max-width: 100%; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-lt); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Ankündigung Banner ────────────────────────────────────── */
#ankuendigung-banner {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 200;
}
.banner-text { flex: 1; }

/* ── Header & Nav ──────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
  padding: 1.25rem 0;
}
header.scrolled {
  background: rgba(17,17,16,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  padding: 0.75rem 0;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.nav-logo span { color: var(--text); font-size: 0.75rem; display: block; letter-spacing: 0.2em; text-transform: uppercase; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  /* Browser-Defaults komplett entfernen */
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  transition: all var(--trans);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Custom Element neutral halten */
site-header {
  display: block;
  background: transparent;
  padding: 0;
  margin: 0;
}
/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/Innenraum_Haupt_1_Compressed.jpg"); /*1 oder 3*/
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: all var(--trans);
}
.btn:hover { background: var(--gold); color: var(--dark); }
.btn-filled { background: var(--gold); color: var(--dark); }
.btn-filled:hover { background: var(--gold-lt); color: var(--dark); border-color: var(--gold-lt); }

/* ── Section Shared ─────────────────────────────────────────── */
section { padding: 5rem 0; }
.section-label {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}
.section-divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}
.section-divider.centered { margin: 1.25rem auto 2.5rem; }
.text-center { text-align: center; }

/* ── Features ────────────────────────────────────────────────── */
.features { background: var(--dark2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--dark3);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: transform var(--trans), border-color var(--trans);
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(201,169,110,0.45); }
.feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.2rem; color: var(--gold); margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.9rem; color: var(--muted); }

/* ── Gallery Strip ──────────────────────────────────────────── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 300px;
  overflow: hidden;
}
.gallery-strip img {
  width: 100%; height: 300px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75) saturate(0.9);
  transition: all var(--trans);
}
.gallery-strip img:hover { filter: brightness(1) saturate(1.1); transform: scale(1.03); }
.gallery-strip img.pos-center-top { object-position: center 10%; }
.gallery-strip img.pos-center-mid { object-position: center 50%; }
.gallery-strip img.pos-center-30  { object-position: center 30%; }
.gallery-strip img.pos-bottom     { object-position: center bottom; }

/* ── Gallery Mobile: horizontal scroll ── */
@media (max-width: 640px) {
  .gallery-strip {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: 220px;
  }

  .gallery-strip::-webkit-scrollbar {
    display: none;
  }

  .gallery-strip img {
    flex-shrink: 0;
    width: 80vw;        /* jedes Bild nimmt 80% der Bildschirmbreite */
    height: 220px;
    scroll-snap-align: start;
  }
}
/* ── Öffnungszeiten & CTA ───────────────────────────────────── */
.opening-cta { background: var(--dark2); }
.opening-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; color: var(--gold); }
.hours-table tr:last-child td { border-bottom: none; }
.cta-box {
  background: var(--dark3);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
}
.cta-box h3 { font-size: 1.7rem; margin-bottom: 1rem; }
.cta-box p { color: var(--muted); margin-bottom: 2rem; }

/* ── Speisekarte Header ──────────────────────────────────────── */
.menu-header {
  height: 480px;
  background-image: url("../images/Theke_2_Compressed.jpg"); /*oder Kaffee_mit_Theke.jpg*/
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  position: relative;
}
.menu-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,16,0.4), rgba(17,17,16,0.92));
}
.menu-header .container { position: relative; z-index: 1; }
.menu-header h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }

/* ── Speisekarte Sticky Nav ──────────────────────────────────── */
.menu-nav {
  background: var(--dark2);
  position: sticky;
  top: 80px;
  z-index: 90;
  /* overflow-x: auto; */
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.menu-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1140px;        /* wie .container */
  margin: 0 auto;
  padding: 0 1.5rem;        /* gleiches Padding wie .container */
}
.menu-nav-inner::-webkit-scrollbar {
  display: none;
}
.menu-nav-inner a {
  color: var(--muted);
  padding: 1.1rem 1.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--trans);
}
.menu-nav-inner a:hover,
.menu-nav-inner a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
@media (max-width: 640px) {
  .menu-nav {
    top: 52px;
  }
  .menu-nav-inner a {
    padding: 0.9rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }
}

/* ── Speisekarte Items ───────────────────────────────────────── */
.menu-category { padding: 4rem 0; }
.menu-category + .menu-category { border-top: 1px solid rgba(255,255,255,0.06); }
.menu-category h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.menu-category .cat-sub { color: var(--muted); font-style: italic; margin-bottom: 2.5rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.menu-item {
  display: flex;
  gap: 1.25rem;
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans);
}
.menu-item:hover { border-color: rgba(201,169,110,0.35); }
.menu-item-img {
  width: 110px;
  flex-shrink: 0;
  object-fit: cover;
  height: 100%;
  min-height: 120px;
}
.menu-item-body {
  padding: 1.1rem 1.1rem 1.1rem 0;
  flex: 1;
}
.menu-item-body h4 { font-size: 1.05rem; color: var(--cream); margin-bottom: 0.3rem; }
.menu-item-body p  { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.6rem; }
.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price { color: var(--gold); font-weight: 700; font-size: 1.05rem; }
.badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  letter-spacing: 0.05em;
}

 /* ══ Speisekarte V2 – Klassisches Menükarten-Layout ══════════ */

 .menu-header-v2 {
  padding: 9rem 0 4rem;
  background: var(--dark2);
  text-align: center;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  position: relative;
  overflow: hidden;
}
.menu-header-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.menu-header-v2 .ornament {
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}
.menu-header-v2 h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.menu-header-v2 .subtitle {
  color: var(--muted);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.menu-header-v2 .gold-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}
.menu-header-v2 .gold-line::before,
.menu-header-v2 .gold-line::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.5rem;
}
.menu-header-v2 .gold-line::before { right: calc(100% + 8px); }
.menu-header-v2 .gold-line::after  { left:  calc(100% + 8px); }

/* ── Menü-Sektion ─────────────────────────────────────────── */
.menu-section { padding: 5rem 0; }
.menu-section + .menu-section {
  border-top: 1px solid rgba(201,169,110,0.12);
}

.menu-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.menu-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.menu-section-header .cat-sub-v2 {
  color: var(--gold);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.menu-section-header .divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(201,169,110,0.5);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
}
.menu-section-header .divider-ornament::before,
.menu-section-header .divider-ornament::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(201,169,110,0.35);
}

/* ── Zwei-Spalten Liste ───────────────────────────────────── */
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}
.menu-list-item {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--trans);
}
/* Letztes Element allgemein */
.menu-list > .menu-list-item:last-child { border-bottom: none; }

/* Bei gerader Anzahl: vorletztes Element = letztes der linken Spalte */
.menu-list > .menu-list-item:nth-last-child(2) { border-bottom: none; }
.menu-list-top {
  display: grid; /*flex*/
  grid-template-columns: auto 1fr auto;
  /* justify-content: space-between; */
  align-items: end;/*baseline;*/
  gap: 0; /*1rem;*/
  margin-bottom: 0.35rem;
}
.menu-list-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  min-width: 0;
  word-break: break-word;
  /* flex: 1; */
}
.menu-list-dots {
  /* flex: 1; */
  border-bottom: 1px dotted rgba(201,169,110,0.25);
  margin: 0 0.5rem;
  min-width: 20px;
  /* align-self: flex-end; */
  margin-bottom: 4px;
}
.menu-list-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
}
.menu-list-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
.menu-list-badges {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.badge-v2 {
  font-size: 0.68rem;
  padding: 2px 9px;
  border-radius: 99px;
  border: 1px solid rgba(201,169,110,0.3);
  color: rgba(201,169,110,0.75);
  letter-spacing: 0.05em;
}
/* ── Getränke Untergruppen ───────────────────────────────────── */
.menu-subgroup {
  margin-bottom: 2.5rem;
}
.menu-subgroup:last-child {
  margin-bottom: 0;
}

.menu-subgroup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  margin-bottom: 0.25rem;
}
.subgroup-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.subgroup-sizes {
  display: flex;
  gap: 0;
}
.subgroup-sizes span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  width: 56px;          /* feste Breite = bündig mit Preisspalte */
  text-align: right;
}

/* Zeilen mit mehreren Preisen: kein dots-Element, direkt Preisspalten */
.menu-list-multiprices {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.menu-list-multiprices .menu-list-price {
  width: 56px;          /* gleiche Breite wie subgroup-sizes span */
  text-align: right;
}

/* Bei Multiprices: kein dots-Span nötig, Name nimmt restlichen Platz */
.menu-list-top:has(.menu-list-multiprices) {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  /* justify-content: space-between;
  align-items: baseline; */
}
/* Getränke-Sektionen: einspaltlg */
.menu-subgroup .menu-list {
  grid-template-columns: 1fr;
}

/* Preisspalten schmaler & nah am Namen */
.subgroup-sizes span,
.menu-list-multiprices .menu-list-price {
  width: 52px;
}

/* ── Kontakt ─────────────────────────────────────────────────── */
.contact-page-header {
  height: 480px;
  background-image: url("../images/Terrasse_Compressed.jpg");
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  position: relative;
  /* inset:0;
  transform: scale(0.85); rauszoomen
  transform-origin: center center; */
}
.contact-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,16,0.4), rgba(17,17,16,0.92));
}
.contact-page-header .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.5rem; }
.contact-info-block p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }
.contact-info-block a { color: var(--muted); }
.contact-info-block a:hover { color: var(--gold); }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
  margin-top: 2rem;
}
.map-container iframe { display: block; width: 100%; height: 300px; border: none; }
.map-placeholder {
  background: var(--dark3);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  flex-direction: column;
  gap: 0.75rem;
}
.map-placeholder span { font-size: 2rem; }

/* ── Legal ───────────────────────────────────────────────────── */
.legal-header {
  padding: 9rem 0 3rem;
  background: var(--dark2);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.legal-header h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.legal-content { padding: 4rem 0 6rem; max-width: 760px; }
.legal-content h2 { font-size: 1.35rem; color: var(--gold); margin: 2.5rem 0 0.75rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--cream); }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.75rem; line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: #0a0a09;
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; max-width: 280px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
/* Öffnungszeiten-Liste mit Spacer zwischen Tag und Zeit */
.footer-hours-list {
  list-style: none;
  font-size: 0.8rem;
  margin-bottom: 0;
}
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  padding: 0.25rem 0;
}
/* .footer-hours-list li span:last-child {
  color: var(--text);
  text-align: right;
} */

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--muted); font-size: 0.9rem; transition: color var(--trans); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
}
/* Küchenzeiten-Block */
.footer-kitchen {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.85;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.75rem;
}
.footer-kitchen-label {
  display: block;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
}
.footer-kitchen-row {
  display: flex;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.2rem;
}
.footer-kitchen-row span:first-child {
  min-width: 52px;   /* Tag-Spalte – sorgt für bündiges Einrücken */
  flex-shrink: 0;
  color: var(--muted);
}

/* Kontakt-Block */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.75rem;
}
.footer-phone,
.footer-mail {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-phone:hover,
.footer-mail:hover { color: var(--gold); }
.footer-contact-list {
  list-style: none;
  font-size: 0.88rem;
  line-height: 1.9;
}
.footer-contact-list li {
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.footer-contact-list a {
  color: var(--muted);
  transition: color var(--trans);
}
.footer-contact-list a:hover {
  color: var(--gold);
}

/* Footer-Bottom Legal Links */
.footer-legal a {
  color: var(--muted);
  font-size: 0.82rem;
  transition: color var(--trans);
}
.footer-legal a:hover { color: var(--gold); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════════════════════
   FADE-IN  –  Progressive Enhancement
   Elemente sind IMMER sichtbar. Nur wenn JS geladen ist
   (.js-ready auf <html>), werden sie initial ausgeblendet
   und dann per IntersectionObserver eingeblendet.
   → Kein weißer/leerer Inhalt bei JS-Problemen!
═══════════════════════════════════════════════════════════════ */
.fade-in {
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js-ready .fade-in {
  opacity: 0;
  transform: translateY(24px);
}
.js-ready .fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .opening-cta-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 70vw;
    height: 100vh;
    background: var(--dark2);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--trans);
    border-left: 1px solid rgba(201,169,110,0.15);
    z-index: 99;
  }
  .nav-links.nav-open { right: 0; }
  .burger { display: flex; z-index: 101; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .menu-item-img { width: 90px; }
  .menu-grid { grid-template-columns: 1fr; }

  /* Speisekarte: 1 Spalte */
  .menu-list {
    grid-template-columns: 1fr;
  }

  /* Bei 1 Spalte: letztes Element hat immer keinen Border */
  .menu-list > .menu-list-item:nth-last-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* Sektion-Header etwas kompakter */
  .menu-section {
    padding: 3rem 0;
  }
  .menu-section-header {
    margin-bottom: 2rem;
  }
  .menu-section-header h2 {
    font-size: 1.6rem;
  }

  /* Subgruppen-Header Größen bündig */
  .subgroup-sizes span,
  .menu-list-multiprices .menu-list-price {
    width: 48px;
    font-size: 0.85rem;
  }

  /* Page Header kompakter */
  .menu-header {
    height: 260px;
    padding-bottom: 2rem;
  }
  .menu-header h1 {
    font-size: 2rem;
  }
  .menu-nav {
    top: var(--header-h); /*dynamisch berehnet*/
  }

  .menu-nav-inner {
    padding: 0 1rem;
  }

  .menu-nav-inner a {
    padding: 0.85rem 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
}
/* ── Google Maps Consent ─────────────────────────────────── */
.map-consent {
  background: var(--dark3);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.map-consent-icon {
  font-size: 2.5rem;
  opacity: 0.6;
}

.map-consent-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
}

.map-consent-text {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
}

.map-consent-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-consent-btn {
  margin-top: 0.5rem;
}

/* iframe nach Consent nahtlos einblenden */
.map-container iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius);
}
