/*
Theme Name: L&L Balkanflammen
Author: BDMedien
Description: Custom Theme für L&L Balkanflammen – kroatische Grillküche im Bürgerhaus Modelshausen, Allmannshofen.
Version: 1.0.0
*/

/* ===== LOCAL WEBFONTS ===== */
@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Cinzel-Decorative-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Cinzel-Decorative-normal-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/Noto-Serif-normal-100-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/Noto-Serif-italic-100-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/Inter-normal-100-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/Inter-italic-100-900.woff2') format('woff2');
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --col-bg:       #130e0b;
  --col-surface:  #1e1510;
  --col-card:     #251a13;
  --col-ember:    #c84218;
  --col-fire:     #e8671a;
  --col-amber:    #d49628;
  --col-cream:    #f0e4cc;
  --col-muted:    #9c8770;
  --col-divider:  #2e1f14;

  --font-brand:   'Cinzel Decorative', serif;
  --font-head:    'Noto Serif', serif;
  --font-body:    'Inter', sans-serif;

  --radius:       4px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card:  0 4px 18px rgba(0, 0, 0, 0.35);

  --nav-h:        52px;

  --z-grain:   1000;
  --z-nav:      900;
  --z-overlay:  800;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--col-bg);
  color: var(--col-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--col-bg); }
::-webkit-scrollbar-thumb { background: var(--col-ember); border-radius: 3px; }

/* ===== NAV — full-width bar, content stays compact ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  justify-content: center;
  background: rgba(19, 14, 11, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(19, 14, 11, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 0 0 1px var(--col-divider), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
  padding: 0 1.5rem;
  white-space: nowrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--col-cream);
}
.nav-logo-amp {
  color: var(--col-fire);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 228, 204, 0.72);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--col-cream);
  outline: none;
}
.nav-links a.active {
  color: var(--col-amber);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--col-amber);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--col-cream);
  border-radius: 2px;
  transition: background-color var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(19, 14, 11, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--col-cream);
  transition: color var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--col-fire);
  outline: none;
}
.mobile-menu a.active {
  color: var(--col-amber);
}
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--col-muted);
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  color: var(--col-cream);
  outline: none;
}

/* ===== HERO — left-aligned, bottom-anchored ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
}

/* ===== SITE BACKGROUND VIDEO — fixed behind everything, scroll-scrubbed (see front-page.php) ===== */
.site-bg-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.site-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(15, 9, 6, 0.74), rgba(15, 9, 6, 0.82) 45%, rgba(15, 9, 6, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(2rem, 8vw, 7rem) clamp(3.5rem, 8vh, 6rem);
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--col-amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--col-cream);
  margin-bottom: 0.5em;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title-amp {
  color: var(--col-fire);
  font-style: italic;
}

.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: rgba(240, 228, 204, 0.65);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition), transform 120ms ease, box-shadow var(--transition), border-color var(--transition);
  border: none;
}
.btn-primary {
  background: var(--col-ember);
  color: var(--col-cream);
}
.btn-primary:hover {
  background: var(--col-fire);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 66, 24, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--col-cream);
  border: 1px solid rgba(240, 228, 204, 0.35);
}
.btn-outline:hover {
  border-color: var(--col-cream);
  background: rgba(240, 228, 204, 0.06);
}
.btn:focus-visible {
  outline: 2px solid var(--col-amber);
  outline-offset: 3px;
}

/* ===== SHARED SECTION STYLES ===== */
section { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem); }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--col-amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--col-cream);
  margin-bottom: 1.5rem;
  overflow-wrap: anywhere;
  min-width: 0;
}

.section-title em {
  font-style: italic;
  color: var(--col-fire);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--col-muted);
  max-width: 56ch;
  line-height: 1.75;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: var(--col-divider);
  max-width: 80px;
}
.ornament-icon { color: var(--col-amber); font-size: 1rem; }

/* ===== ABOUT ===== */
.about {
  position: relative;
  overflow: hidden;
}
.about::before {
  display: none;
}
.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-image-stack {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--col-surface);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--col-ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 0.55rem;
  text-align: center;
  line-height: 1.3;
  padding: 0.5rem;
  border: 3px solid var(--col-surface);
  z-index: 2;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.highlight-item {
  padding: 1.25rem;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(90, 55, 20, 0.12);
}
.highlight-item h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #2a1408;
}
.highlight-item p {
  font-size: 0.82rem;
  color: #705030;
  line-height: 1.4;
}

/* ===== SPECIALTIES ===== */
.specialties {
  position: relative;
  overflow: hidden;
  background: var(--col-surface);
}
.specialties::before { display: none; }
.specialties-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.specialties-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.specialties-head .section-lead {
  margin: 0 auto;
  text-align: center;
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.specialty-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--col-card);
  border: 1px solid var(--col-divider);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), border-color var(--transition), box-shadow 0.5s ease;
}
.specialty-card:hover,
.specialty-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(212, 150, 40, 0.45);
  box-shadow: 0 30px 60px -32px rgba(0, 0, 0, 0.9);
}
.specialty-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.specialty-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(19, 14, 11, 0.62));
}
.specialty-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.specialty-card:hover .specialty-card-img img,
.specialty-card:focus-within .specialty-card-img img {
  transform: scale(1.06);
}
.specialty-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.4rem;
}
.specialty-card-kicker {
  margin-bottom: 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--col-amber);
}
.specialty-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.18;
  color: var(--col-cream);
}
.specialty-card p {
  flex: 1;
  margin-top: 0.6rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--col-muted);
}
.specialty-card-price {
  margin-top: 1rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--col-amber);
  font-variant-numeric: tabular-nums;
}

/* ===== AKTUELLES (Instagram) ===== */
.aktuelles { position: relative; background: var(--col-bg); }
.aktuelles-inner { max-width: 1200px; margin: 0 auto; }
.aktuelles-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.aktuelles-head .section-lead { margin: 0 auto; text-align: center; }
.aktuelles-feed { margin-top: 3.5rem; overflow-x: auto; }
/* IG erzwingt min-width:326px inline – nicht per CSS überschreibbar, nur zentrieren */
.aktuelles-feed .instagram-media { margin: 0 auto !important; }
@media (min-width: 900px) { .aktuelles-feed .instagram-media { max-width: 800px !important; min-width: 800px !important; } }
.aktuelles-cta { margin-top: 3rem; text-align: center; }

.wpcf7 form.sent .wpcf7-response-output {color: black Im !important; }
/* ===== MENU ===== */
.menu {
  background: #efe4d2;
  position: relative;
  /* ponytail: scoped overrides so all children read on light beige */
  --col-bg:      #efe4d2;
  --col-cream:   #2a1408;
  --col-muted:   #705030;
  --col-amber:   #8a6010;
  --col-fire:    #c04010;
  --col-divider: rgba(90, 55, 20, 0.18);
  --col-card:    rgba(60, 30, 10, 0.06);
}

.menu-header {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.menu-nav-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 5;
  max-width: 1200px;
  margin: 2.5rem auto 4rem;
  padding: 0.75rem 0;
  text-align: center;
  background: #efe4d2;
}

.menu-nav-label {
  margin-bottom: 0.6rem;
}
.menu-nav {
  position: relative;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--col-card);
  border: 1px solid var(--col-divider);
  border-radius: var(--radius);
  padding: 0.4rem;
  box-shadow: var(--shadow-card);
}
.menu-tab-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background: var(--col-ember);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(200, 66, 24, 0.4);
  transition: transform var(--transition), width var(--transition), height var(--transition);
  z-index: 0;
  pointer-events: none;
}
.menu-tab {
  position: relative;
  z-index: 1;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--col-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
.menu-tab:hover { color: #fff8f0; background: rgba(60, 30, 10, 0.08); }
.menu-tab.active {
  color: #fff8f0;
}
.menu-tab:focus-visible {
  outline: 2px solid var(--col-amber);
  outline-offset: 2px;
}

.menu-body {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-category { display: none; }
.menu-category.active { display: block; }

@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.menu-category.active .menu-item { animation: menuItemIn 0.4s ease both; }
.menu-category.active .menu-item:nth-child(2) { animation-delay: 40ms; }
.menu-category.active .menu-item:nth-child(3) { animation-delay: 80ms; }
.menu-category.active .menu-item:nth-child(4) { animation-delay: 120ms; }
.menu-category.active .menu-item:nth-child(5) { animation-delay: 160ms; }
.menu-category.active .menu-item:nth-child(6) { animation-delay: 200ms; }
.menu-category.active .menu-item:nth-child(7) { animation-delay: 240ms; }
.menu-category.active .menu-item:nth-child(8) { animation-delay: 280ms; }
.menu-category.active .menu-item:nth-child(9) { animation-delay: 320ms; }

.menu-cat-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--col-divider);
}
.menu-cat-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--col-cream);
}
.menu-cat-desc {
  font-size: 0.85rem;
  color: var(--col-muted);
  font-style: italic;
}

.menu-intro {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  text-align: left;
}
.menu-intro-text { flex: 1; }

.menu-cover-wrap {
  flex: 1;
  max-width: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.menu-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.menu-cover-wrap:hover .menu-cover-img { transform: scale(1.03); }

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  min-height: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(46, 31, 20, 0.7);
  font-size: 0.9rem;
}

.menu-item--has-img {
  padding: 0.5rem 0;
}
.menu-item--has-img .menu-item-img {
  display: none;
}
.menu-item > div:first-child {
  min-width: 0;
}

.menu-item-nr {
  display: block;
  font-size: 0.65rem;
  color: var(--col-amber);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}
.menu-item-name {
  display: inline;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--col-cream);
}
.menu-item-allergens {
  font-size: 0.7rem;
  color: var(--col-muted);
  opacity: 0.75;
  margin-top: 0.3rem;
  font-style: italic;
}
.drink-item-allergens {
  font-size: 0.7rem;
  color: var(--col-muted);
  opacity: 0.75;
  margin-left: 0.4rem;
}
.drink-item-allergens::before { content: '· '; }

.menu-allergen-legend {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: var(--col-card);
  border: 1px solid var(--col-divider);
  border-radius: var(--radius);
}
.menu-allergen-legend summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--col-cream);
}
.menu-allergen-legend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.4rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--col-muted);
}
.menu-allergen-legend-grid strong { color: var(--col-amber); margin-right: 0.35rem; }

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--col-muted);
  line-height: 1.5;
}
.menu-item-price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--col-amber);
  margin-top: 1.15rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--col-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--col-amber);
  font-size: 0.82rem;
  color: var(--col-muted);
  font-style: italic;
}

.menu-allergen-hint {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--col-muted);
  font-style: italic;
}

.menu-special {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--col-card), rgba(200, 66, 24, 0.08));
  border: 1px solid rgba(200, 66, 24, 0.2);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.menu-special h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--col-cream);
  margin-bottom: 0.35rem;
}
.menu-special p { font-size: 0.85rem; color: var(--col-muted); }
.menu-special-price { text-align: center; }
.menu-special-price .price-big {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--col-amber);
  display: block;
  font-variant-numeric: tabular-nums;
}
.menu-special-price span:last-child {
  font-size: 0.72rem;
  color: var(--col-muted);
  letter-spacing: 0.1em;
}

/* Drinks grid */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.drink-category h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--col-cream);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--col-divider);
}
.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.drink-item-name { color: var(--col-cream); }
.drink-item-size { font-size: 0.75rem; color: var(--col-muted); margin-left: 0.25rem; }
.drink-item-price {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--col-amber);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--col-surface);
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--col-bg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%);
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.8rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--col-card);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19, 14, 11, 0.06);
  transition: background-color var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-item:hover img,
.gallery-item:focus-within img { transform: scale(1.05); }
.gallery-item:hover::after,
.gallery-item:focus-within::after { background: rgba(19, 14, 11, 0); }
.gallery-item:focus-visible {
  outline: 2px solid var(--col-amber);
  outline-offset: 2px;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(8, 5, 4, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(19, 14, 11, 0.6);
  border: 1px solid var(--col-divider);
  color: var(--col-cream);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: background-color var(--transition), border-color var(--transition);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--col-ember); border-color: var(--col-ember); }
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible { outline: 2px solid var(--col-amber); outline-offset: 2px; }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.5rem; right: 0.5rem; }
}

/* ===== PLAYGROUND ===== */
.playground {
  position: relative;
  overflow: hidden;
  background: #efe4d2;
  /* ponytail: same scoped palette as .menu so this section reads as one family with "Kroatisch & frisch vom Grill" */
  --col-bg:      #efe4d2;
  --col-cream:   #2a1408;
  --col-muted:   #705030;
  --col-amber:   #8a6010;
  --col-fire:    #c04010;
  --col-divider: rgba(90, 55, 20, 0.18);
  --col-card:    rgba(60, 30, 10, 0.06);
}
.playground::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(212, 150, 40, 0.16), transparent 42%),
    radial-gradient(circle at 88% 14%, rgba(232, 103, 26, 0.18), transparent 28%);
  pointer-events: none;
}
.playground-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.playground .section-title { max-width: 11ch; }
.playground-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--col-muted);
  font-style: italic;
}
.playground-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(67, 36, 19, 0.22);
}
.playground-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(38, 21, 13, 0.12);
  border-radius: inherit;
  pointer-events: none;
}
.playground-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HOURS & CONTACT ===== */
.info { background: var(--col-bg); }
.info-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.hours-table tr { border-bottom: 1px solid var(--col-divider); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.85rem 0; font-size: 0.95rem; }
.hours-table td:first-child {
  color: var(--col-cream);
  font-family: var(--font-head);
  font-weight: 600;
  width: 45%;
}
.hours-table td:last-child { color: var(--col-muted); text-align: right; }
.hours-closed { color: var(--col-ember) !important; font-style: italic; }
.hours-note { margin-top: 1rem; font-size: 0.8rem; color: var(--col-muted); font-style: italic; }

.contact-card {
  margin-top: 1.5rem;
  padding: 2rem;
  background: var(--col-card);
  border-radius: var(--radius);
  border: 1px solid var(--col-divider);
  box-shadow: var(--shadow-card);
}
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--col-divider);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon { color: var(--col-amber); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--col-muted); margin-bottom: 0.2rem; }
.contact-value { font-size: 0.95rem; color: var(--col-cream); line-height: 1.5; }

/* ===== RESERVATION ===== */
.reservation {
  background: #f7f0e4;
  position: relative;
  overflow: hidden;
  --col-cream:   #2a1408;
  --col-muted:   #705030;
  --col-amber:   #8a6010;
  --col-fire:    #c04010;
  --col-surface: #fff8f2;
  --col-card:    rgba(60, 30, 10, 0.05);
  --col-divider: rgba(90, 55, 20, 0.18);
}

.reservation-inner { max-width: 760px; margin: 0 auto; }
.reservation-header { text-align: center; margin-bottom: 3rem; }

.res-form {
  background: var(--col-card);
  border: 1px solid var(--col-divider);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
}

.res-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.res-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.res-field.full { grid-column: 1 / -1; }

.res-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--col-amber);
}

.res-input,
.res-select,
.res-textarea {
  background: var(--col-surface);
  border: 1px solid var(--col-divider);
  border-radius: var(--radius);
  color: var(--col-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}
.res-input::placeholder,
.res-textarea::placeholder { color: var(--col-muted); }
.res-input:focus,
.res-select:focus,
.res-textarea:focus {
  border-color: var(--col-ember);
  box-shadow: 0 0 0 3px rgba(200, 66, 24, 0.15);
}
.res-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7260' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.res-select option { background: var(--col-card); color: var(--col-cream); }
.res-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.res-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.res-note { font-size: 0.78rem; color: var(--col-muted); font-style: italic; max-width: 38ch; }

.res-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(200, 66, 24, 0.1);
  border: 1px solid rgba(200, 66, 24, 0.3);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--col-cream);
  text-align: center;
}
.res-success.visible { display: block; }

/* ===== MAP ===== */
.map-section {
  padding: 0;
  line-height: 0;
}
.map-section iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}
@media (max-width: 768px) {
  .map-section iframe { height: 320px; }
}

/* ===== LEGAL PAGES (Impressum / Datenschutz) ===== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
}
.legal-head { margin-bottom: 2rem; }
.legal-content { color: var(--col-muted); line-height: 1.8; }
.legal-content h1,
.legal-content h2,
.legal-content h3 {
  font-family: var(--font-head);
  color: var(--col-cream);
  margin: 2rem 0 0.75rem;
}
.legal-content h1:first-child,
.legal-content h2:first-child,
.legal-content h3:first-child { margin-top: 0; }
.legal-content p,
.legal-content ul,
.legal-content ol { margin-bottom: 1rem; }
.legal-content ul,
.legal-content ol { padding-left: 1.25rem; }
.legal-content a { color: var(--col-fire); text-decoration: underline; }
.legal-content a:hover,
.legal-content a:focus-visible { color: var(--col-amber); }
.legal-content strong { color: var(--col-cream); }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.legal-content th,
.legal-content td {
  padding: 0.4rem 0.6rem;
  border-bottom: 1px solid var(--col-divider);
  text-align: left;
}

/* ===== FOOTER ===== */
footer {
  background: #f7f0e4;
  border-top: 1px solid rgba(90, 55, 20, 0.18);
  padding: 3rem clamp(1.5rem, 6vw, 5rem);
  --col-cream:   #2a1408;
  --col-muted:   #705030;
  --col-amber:   #8a6010;
  --col-divider: rgba(90, 55, 20, 0.18);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.2fr auto;
  gap: 3rem;
  align-items: start;
}
.footer-brand-name {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--col-cream);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--col-muted);
  font-style: italic;
  line-height: 1.65;
  max-width: 30ch;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--col-muted);
  transition: color var(--transition);
}
.footer-social:hover,
.footer-social:focus-visible { color: var(--col-cream); outline: none; }
.footer-info p { font-size: 0.85rem; color: var(--col-muted); line-height: 1.85; }
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a {
  font-size: 0.82rem;
  color: var(--col-muted);
  transition: color var(--transition);
  display: block;
}
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--col-cream); outline: none; }
.footer-disclaimer {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  font-size: 0.72rem;
  color: var(--col-muted);
  opacity: 0.7;
  font-style: italic;
  text-align: center;
}
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--col-divider);
  font-size: 0.72rem;
  color: var(--col-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--col-cream); outline: none; }

.phone-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--col-ember);
  color: var(--col-cream);
  transition: background-color var(--transition), transform 120ms ease;
}
.phone-float:hover,
.phone-float:focus-visible {
  background: var(--col-fire);
  transform: translateY(-2px);
  outline: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-stack { height: 360px; order: -1; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-intro { flex-direction: column; text-align: center; }
  .menu-intro .ornament { justify-content: center; }
  .menu-intro .section-title, .menu-intro .section-lead { text-align: center; margin-left: auto; margin-right: auto; }
  .playground-inner { grid-template-columns: 1fr; }
  .playground .section-title { max-width: 14ch; }
  .info-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .menu-special { grid-template-columns: 1fr; }
  .menu-item { padding-right: 0.85rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .nav-inner {
    width: 100%;
    justify-content: space-between;
    padding: 0 1.25rem;
  }

  .hero {
    /* voller Viewport, Inhalt unten – kein Leerraum über dem Hero */
    height: 100svh;
    min-height: 520px;
    justify-content: flex-end;
  }
  .hero-content {
    padding: 0 1.25rem clamp(3rem, 8vh, 5rem);
    max-width: 100%;
  }
  .hero-eyebrow {
    margin-bottom: 0.9rem;
    letter-spacing: 0.22em;
  }
  .hero-title {
    margin-bottom: 0.45em;
  }
  .hero-sub {
    margin-bottom: 1.4rem;
  }
  .about-text {
    margin: 0;
    padding: 2.5rem 0 0;
  }
  .about-highlights {
    grid-template-columns: 1fr;
    margin: 2.5rem -1.5rem -4rem;
    padding: 2rem 1.5rem 4rem;
    background: var(--col-bg);
    border-top: 1px solid var(--col-divider);
  }
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .menu-nav-wrap {
    top: calc(1rem + var(--nav-h));
  }
  .menu-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .menu-tab {
    width: max-content;
    max-width: 100%;
  }
  .menu-tab:nth-of-type(odd) {
    justify-self: start;
    text-align: left;
  }
  .menu-tab:nth-of-type(even) {
    justify-self: end;
    text-align: right;
  }
  /* Getränke steht allein in der letzten Reihe -> zentrieren */
  .menu-tab:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }
  .menu-header {
    margin: 0 -1.5rem 3rem;
    padding: 3rem 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .playground {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .playground-media { border-radius: 12px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Kategorie-Titel + Beschreibung untereinander statt gequetscht */
  .menu-cat-header { grid-template-columns: 1fr; align-items: start; gap: 0.35rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { text-align: center; }
}

@media (max-width: 600px) {
  .res-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* niedrigerer Min-Wert, damit "Balkanflammen" nicht abgeschnitten wird */
  .hero-title { font-size: clamp(2rem, 9vw, 6rem); }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: auto;
    grid-row: auto;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .phone-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
