/* ============================================================
   TRAPEZ RESTAURANT — MAIN STYLESHEET
   Color Palette:
     --bg:           #DEC9BA  (Warm Tan – light section background)
     --card-bg:      #6B2424  (Deep Burgundy – cards / radium boxes)
     --effect-dark:  #5C1A1A  (Dark Burgundy – hover/active/shadow)
     --effect-light: #F0DDB4  (Warm Cream – subtle effects/glow)
     --text:         #1E0A0A  (Very Dark Warm – main text on ivory)
   Fonts: Playfair Display (headings), Inter (body)
   ============================================================ */

/* --- RESET & BASE ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #6B2424;
  --secondary:    #7B3535;
  --bg:           #DEC9BA;
  --bg-alt:       #D0B9A8;
  --text:         #1E0A0A;
  --accent:       #8B3535;
  --white:        #FFFFFF;
  --dark:         #5B3A29;
  --gold:         #C9A96E;
  --color-gold-readable: #5E4F34; /* darkened --gold, 4.98:1 on --bg #DEC9BA — use for gold text on light sections */
  --green:        #1B3A2D;
  --creme:        #F5F0E8;
  --hover:        #5C1A1A;
  --overlay:      rgba(91, 58, 41, 0.65);
  --card-bg:      #6B2424;
  --effect-dark:  #5C1A1A;
  --effect-light: #F0DDB4;
  --radius:    10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:    0 8px 40px rgba(107,36,36,0.28);
  --shadow-lg: 0 24px 64px rgba(107,36,36,0.45);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.section-padding { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--primary);
  max-width: 600px;
  margin: 0 auto;
}

/* Decorative divider */
.divider {
  width: 60px;
  height: 2px;
  background: var(--secondary);
  margin: 20px auto 0;
}

/* --- NAVIGATION -------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(91, 58, 41, 0.97);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 52px;
  height: auto;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--effect-light);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--effect-light);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Angebot dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-arrow {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--green);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1100;
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Forces the dropdown shut right after a submenu link is clicked, overriding
   :hover/:focus-within which would otherwise keep it open until the mouse leaves. */
.nav-dropdown.force-closed .nav-dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--creme);
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-dropdown-link:hover {
  background: rgba(255,255,255,0.1);
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.lang-toggle:hover {
  border-color: var(--effect-light);
  color: var(--effect-light);
}
.lang-arrow {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}
.lang-toggle[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(91, 58, 41, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  padding: 6px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-option:hover {
  background: rgba(228,213,180,0.12);
  color: var(--effect-light);
}
.lang-option.active {
  color: var(--effect-light);
  background: rgba(228,213,180,0.08);
  font-weight: 700;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 90vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(91, 58, 41, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 80px 48px;
    transition: right var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }
  .nav-menu.open { right: 0; }
  .nav-menu { overflow-y: auto; }
  .nav-link { font-size: 1rem; color: rgba(255,255,255,0.85); }
  .lang-dropdown { margin-top: 16px; }
  .lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: auto;
    left: 0;
    bottom: auto;
    width: auto;
    min-width: 160px;
    max-width: 200px;
    max-height: 50vh;
    overflow-y: auto;
    padding: 0.5rem;
  }
  .lang-option {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  /* Angebot dropdown — accordion style on mobile */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    min-width: 0;
    padding: 0;
    margin-top: 0;
    background: transparent;
    box-shadow: none;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 320px;
    margin-top: 14px;
  }
  .nav-dropdown-link {
    padding: 12px 0 12px 1.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    border-radius: 0;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .nav-dropdown-link:first-child { border-top: none; }
  .nav-dropdown-link:hover { background: rgba(255,255,255,0.06); }
}

/* --- HERO SECTION ------------------------------------------ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: transform;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns1 6s ease-in-out forwards;
}

.hero-slide:nth-child(even).active {
  animation-name: kenBurns2;
}

@keyframes kenBurns1 {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, 0.5%); }
}

@keyframes kenBurns2 {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.12) translate(1%, -0.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(91,58,41,0.5) 0%,
    rgba(91,58,41,0.35) 40%,
    rgba(91,58,41,0.65) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.active { animation: none; }
}

@media (max-width: 768px) {
  .hero-slide.active { animation: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--effect-light);
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--effect-light);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.8s ease both;
}

/* --- INFO BAR (below hero) ---------------------------------- */
.info-bar {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.info-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-bar-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.info-bar-value {
  font-size: 0.85rem;
  color: var(--creme);
  font-family: var(--font-body);
  text-decoration: none;
  white-space: nowrap;
}

.info-bar-value:hover {
  color: var(--gold);
  transition: var(--transition);
}

.info-bar-divider {
  width: 1px;
  height: 2rem;
  background-color: rgba(201, 168, 76, 0.3);
}

@media (max-width: 768px) {
  .info-bar {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
  }
  .info-bar-divider {
    width: 40px;
    height: 1px;
  }
  .info-bar-value {
    font-size: 0.9rem;
  }
}

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--green);
  color: var(--creme);
  box-shadow: 0 4px 20px rgba(27,58,45,0.35);
}
.btn-primary:hover {
  background: #152f24;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,58,45,0.5);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--effect-light);
  color: var(--effect-light);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,36,36,0.3);
}

/* --- ANGEBOT SECTION --------------------------------------- */
#angebot {
  background: var(--bg-alt);
}

/* --- MENU JUMP-NAVIGATION (4 Karten) ----------------------- */
.menu-nav-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.menu-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--green);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(27,58,45,0.18);
  border: 1px solid rgba(201,169,110,0.15);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.menu-nav-card:hover {
  transform: translateY(-4px);
  background: #254f3c;
  box-shadow: 0 16px 48px rgba(27,58,45,0.35);
}
.menu-nav-card-label {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 768px) {
  .menu-nav-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .menu-nav-cards { grid-template-columns: 1fr; }
}

/* --- MENU SEKTIONEN (gestapelt) ------------------------------ */
.menu-section {
  position: relative;
  background: var(--bg);
  border-radius: 16px;
  padding: 56px 48px;
  margin-bottom: 40px;
  border: 1px solid rgba(201,169,110,0.12);
  overflow: hidden;
  scroll-margin-top: 90px; /* Navbar-Offset */
}
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.menu-section-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--color-gold-readable);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  position: relative;
}
.menu-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 12px auto 0;
}
.menu-section-empty {
  text-align: center;
  color: rgba(30,10,10,0.35);
  font-style: italic;
  font-size: 0.88rem;
  padding: 24px 0;
}
@media (max-width: 600px) {
  .menu-section { padding: 36px 20px; }
}

/* --- TAGESMENÜ (aus data/tagesmenu.json) -------------------- */
.tagesmenu-datum-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.tagesmenu-datum {
  display: inline-block;
  background: var(--green);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 10px 30px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(27,58,45,0.3);
}

.tagesmenu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.tagesmenu-karte {
  display: flex;
  flex-direction: column;
  background: var(--creme);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(107,36,36,0.08);
}

.tagesmenu-karte-titel {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--primary);
  text-align: center;
  margin: 0;
}

.tagesmenu-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 16px auto;
}

.tagesmenu-gange {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.tagesmenu-gang {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.tagesmenu-gang-num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-gold-readable);
  flex-shrink: 0;
  min-width: 1.1em;
}

.tagesmenu-gang-body { flex: 1; min-width: 0; }

.tagesmenu-gang-name {
  font-family: var(--font-head);
  font-size: 0.98rem;
  color: var(--text);
}

.tagesmenu-gang-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(30,10,10,0.52);
  margin-top: 3px;
  line-height: 1.5;
}

.tagesmenu-preis {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  margin-top: auto;
  padding-top: 12px;
}

@media (max-width: 767px) {
  .tagesmenu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .tagesmenu-karte { padding: 1.5rem; }
  .tagesmenu-preis { font-size: 1.3rem; }
  .tagesmenu-datum { font-size: 0.9rem; padding: 9px 22px; }
}

/* --- TYPOGRAPHY MENU (aus data/menu.json) ------------------- */

.menu-kat {
  margin-bottom: 52px;
}

.menu-kat-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.menu-kat-header::before,
.menu-kat-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.menu-kat-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-readable);
  white-space: nowrap;
  margin: 0;
}

.menu-kat-gerichte {
  padding: 0 4px;
}

.menu-gericht {
  margin-bottom: 2rem;
}

.menu-gericht-top {
  display: flex;
  align-items: baseline;
}

.menu-gericht-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text);
  flex: 0 0 auto;
}

.menu-gericht-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(30,10,10,0.22);
  margin: 0 10px 5px;
  min-width: 20px;
}

.menu-gericht-preis {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  flex: 0 0 auto;
  white-space: nowrap;
}

.menu-badge {
  font-size: 0.82em;
  margin-left: 5px;
}

.menu-gericht-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(30,10,10,0.52);
  margin: 3px 0 0;
  line-height: 1.5;
}

/* --- ICONS (SVG inline — Blatt/Stern) ---------------------- */
.menu-icons {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.menu-icon {
  color: var(--green);
  flex-shrink: 0;
}
.menu-icon--gold { color: var(--color-gold-readable); }

/* --- HINWEIS (Beilage-Info unter Kategorie) ---------------- */
.menu-hinweis {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(201,169,110,0.07);
  border-left: 2px solid rgba(201,169,110,0.45);
  border-radius: 0 6px 6px 0;
  font-size: 0.75rem;
  color: rgba(30,10,10,0.50);
  font-style: italic;
  line-height: 1.55;
}

/* --- VARIANTEN (Wein/Bier offen, Mineral offen) ------------
   Eigene Zeile unter dem Namen (siehe menu.js renderKategorie) —
   Name bleibt dadurch immer allein in .menu-gericht-top. */
.menu-varianten {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 10px;
  margin-top: 0.25rem;
  color: rgba(30,10,10,0.72);
  font-size: 0.9rem;
}
.menu-variante {
  display: inline-block;
  white-space: nowrap;
}
.menu-variante strong { font-weight: 600; }
.menu-variante-sep {
  color: rgba(30,10,10,0.28);
  font-size: 0.72rem;
}

/* --- MENGE & ALKOHOL --------------------------------------- */
.menu-menge {
  font-size: 0.76rem;
  color: rgba(30,10,10,0.42);
  font-weight: 400;
}
.menu-alkohol {
  font-size: 0.7rem;
  color: rgba(30,10,10,0.35);
  font-weight: 400;
  margin-left: 3px;
}

.menu-pdf-link {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(201,169,110,0.25);
  margin-bottom: 48px;
}

.menu-pdf-link a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--color-gold-readable);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.menu-pdf-link a:hover { opacity: 0.65; }

@media (max-width: 600px) {
  .menu-gericht-name { font-size: 0.9rem; }

  /* Kategorie-Titel darf umbrechen statt abgeschnitten zu werden */
  .menu-kat-title {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
    min-width: 0;
  }

  /* Langer Gerichtname darf schrumpfen/umbrechen statt den Preis
     aus dem von .menu-section geclippten Bereich zu schieben */
  .menu-gericht-name {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: break-word;
  }
  .menu-gericht-preis {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: fit-content;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  /* Punktierte Füller-Linie kostet auf sehr schmalen Screens zu viel Platz */
  .menu-gericht-dots { display: none; }
  .menu-gericht-preis { margin-left: 1rem; }
}

/* Speisekarte / Getränkkarte */

/* --- SPEISEKARTE SPLIT LAYOUT ------------------------------ */
.speisekarte-split {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 32px;
  align-items: start;
}

.speisekarte-image-panel {
  position: sticky;
  top: 90px;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.12);
}

.speisekarte-image-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 380px;
  overflow: hidden;
  background: rgba(91,58,41,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.speisekarte-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: opacity 0.3s ease;
}

.speisekarte-image-caption {
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--effect-light);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.speisekarte-categories-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Category card in speisekarte split layout (no image col, compact) */
.speisekarte-cat {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  /* Override the 2-col grid from .menu-category-redesign — no image thumb here */
  grid-template-columns: 1fr;
  display: block;
}
.speisekarte-cat.active {
  border-color: var(--effect-light);
  box-shadow: 0 4px 24px rgba(107,36,36,0.3);
}

.speisekarte-cat-title {
  cursor: pointer;
  font-size: 1.15rem;
  padding-bottom: 10px;
  transition: color 0.2s;
}
.speisekarte-cat-title:hover {
  color: var(--effect-light);
}

.speisekarte-item {
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}
.speisekarte-item:hover {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding-left: 8px;
}
.speisekarte-item:hover .menu-item-name {
  color: var(--white);
}

.getraenkkarte-item {
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}
.getraenkkarte-item:hover {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding-left: 8px;
}
.getraenkkarte-item:hover .menu-item-name {
  color: var(--white);
}

@media (max-width: 900px) {
  .speisekarte-split {
    grid-template-columns: 1fr;
  }
  .speisekarte-image-panel {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }
}

.menu-category-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.menu-item:last-child { border-bottom: none; }

.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--effect-light);
  line-height: 1.5;
}
.menu-item-price {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  margin-top: 2px;
}

/* Aktuell tab */
.aktuell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.aktuell-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
}
.aktuell-card:hover {
  transform: translateY(-10px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.aktuell-card-body { padding: 24px; }
.aktuell-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--effect-light);
  background: rgba(228,213,180,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(228,213,180,0.25);
}
.aktuell-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.aktuell-desc { font-size: 0.88rem; color: var(--effect-light); margin-bottom: 16px; }
.aktuell-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

/* Tagesmenü tab */
.tagesmenue-intro { text-align: center; margin-bottom: 40px; }
.tagesmenue-intro p { color: var(--secondary); font-style: italic; }
.tagesmenue-note {
  background: rgba(107,36,36,0.1);
  border-left: 3px solid var(--secondary);
  padding: 14px 20px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--primary);
  border-radius: 0 8px 8px 0;
}

.tagesmenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.tagesmenue-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}
.tagesmenue-card:hover {
  transform: scale(1.06);
  box-shadow: 0 24px 64px rgba(107,36,36,0.5);
}
.tagesmenue-header {
  background: linear-gradient(135deg, var(--secondary) 0%, #3D1010 100%);
  color: var(--white);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.tagesmenue-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.tagesmenue-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.tagesmenue-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 4px;
  color: var(--effect-light);
}
.tagesmenue-items { padding: 20px; }
.tagesmenue-items li {
  font-size: 0.9rem;
  color: var(--effect-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tagesmenue-items li:last-child { border-bottom: none; }

/* --- RESERVIEREN SECTION ----------------------------------- */
#reservieren {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#reservieren::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107,36,36,0.15) 0%, transparent 70%);
  pointer-events: none;
}
#reservieren::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228,213,180,0.08) 0%, transparent 70%);
  pointer-events: none;
}

#reservieren .section-title { color: var(--white); }
#reservieren .section-subtitle { color: rgba(255,255,255,0.65); }

.reservation-form {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-label .required { color: var(--effect-light); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--effect-light);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(228,213,180,0.15);
}
.form-input:hover:not(:focus),
.form-select:hover:not(:focus),
.form-textarea:hover:not(:focus) {
  border-color: rgba(255,255,255,0.25);
}

.form-select { color: rgba(255,255,255,0.8); }
.form-select option { background: var(--dark); color: var(--white); }

input[type="date"] { -webkit-appearance: none; appearance: none; }

.form-textarea { resize: vertical; min-height: 110px; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-group { position: relative; }
.input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  font-size: 0.9rem;
}

.form-error {
  display: none;
  font-size: 0.75rem;
  color: #e05c5c;
  margin-top: 4px;
}

.input-error {
  border-color: #e05c5c !important;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

.form-honeypot {
  display: none;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1rem; /* prevent iOS zoom on focus */
    padding: 16px 14px;
  }
  .form-submit {
    flex-direction: column;
    align-items: stretch;
  }
  .form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
  }
  .form-note { justify-content: center; }
}

/* --- AMBIENTE SECTION -------------------------------------- */
#ambiente {
  background: var(--dark);
}

#ambiente .section-title { color: var(--white); }
#ambiente .section-subtitle { color: rgba(255,255,255,0.6); }

.ambiente-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

/* Feature the first image large */
.amb-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
}
.amb-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.amb-item:nth-child(5) { grid-column: span 2; }

.amb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 220px;
}
.amb-item:hover img { transform: scale(1.06); }

.amb-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,16,15,0);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amb-item:hover::after { background: rgba(18,16,15,0.3); }

.amb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.amb-item:hover .amb-overlay { opacity: 1; }
.amb-overlay-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.12);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: lbZoom 0.35s ease both;
}
@keyframes lbZoom {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { border-color: var(--effect-light); color: var(--effect-light); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 9999;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover { border-color: var(--effect-light); color: var(--effect-light); }

.lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .ambiente-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .amb-item:nth-child(1) { grid-column: span 2; }
  .amb-item:nth-child(5) { grid-column: span 1; }
}

/* --- ÜBER UNS SECTION -------------------------------------- */
#ueber-uns { background: var(--bg); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-header { text-align: left; margin-bottom: 32px; }
.about-text .divider { margin: 20px 0 0; }

.about-paragraphs p {
  color: var(--primary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.about-paragraphs p:last-child { margin-bottom: 0; }

.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(107,36,36,0.15);
}
.sig-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}
.sig-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text);
}
.sig-role {
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 2px;
}

.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
  bottom: -32px;
  left: -32px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg);
}

@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-images { display: none; }
}

/* --- KONTAKT SECTION --------------------------------------- */
#kontakt { background: var(--bg-alt); }

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.kontakt-info-block { margin-bottom: 32px; }
.kontakt-info-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kontakt-info-title::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--secondary);
  display: inline-block;
}
.kontakt-info-text {
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.8;
}
.kontakt-info-text a {
  color: var(--text);
  transition: color 0.2s;
}
.kontakt-info-text a:hover { color: var(--secondary); }
.kontakt-info-text span {
  display: block;
  margin-bottom: 0.5rem;
}
.kontakt-info-text span:last-child {
  margin-bottom: 0;
}

.kontakt-map {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
  box-shadow: var(--shadow);
}
.kontakt-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 350px;
  display: block;
}

@media (max-width: 768px) {
  .kontakt-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  background: rgba(107,36,36,0.3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(107,36,36,0.15);
}
.stat-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--card-bg);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.stat-item:hover {
  background: var(--secondary);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(107,36,36,0.35);
}
.stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--effect-light);
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* Reviews */
.reviews-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--text);
  text-align: center;
  margin: 60px 0 40px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--green);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(27,58,45,0.18);
  position: relative;
  border: 1px solid rgba(201,169,110,0.15);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,58,45,0.35);
}
.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
.review-text {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.88);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--creme);
}
.review-date {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
}

/* --- FOOTER ------------------------------------------------ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 44px;
  opacity: 0.85;
}
.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--effect-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.8rem; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--effect-light); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* --- ANIMATIONS -------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- 404 / THANK YOU PAGES --------------------------------- */
.special-page {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.special-page::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(107,36,36,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.special-page-logo {
  width: 80px;
  margin: 0 auto 32px;
  animation: fadeInDown 0.8s ease both;
}

.special-page-number {
  font-family: var(--font-head);
  font-size: clamp(6rem, 20vw, 12rem);
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0;
  animation: fadeIn 0.8s 0.2s ease both;
  opacity: 0.6;
}

.special-page-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.special-page-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: fadeIn 0.8s 0.1s ease both;
}

.special-page-text {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.special-page-btn {
  animation: fadeInUp 0.8s 0.7s ease both;
}

/* Checkmark animation */
.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: checkPulse 0.8s 0.3s ease both;
}
.checkmark-circle svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.checkmark-circle svg path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 0.8s 0.7s ease forwards;
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
@keyframes checkPulse {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --- UTILITY ----------------------------------------------- */
.text-gold { color: var(--effect-light); }
.text-secondary { color: var(--secondary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

/* Inline ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--secondary);
  font-size: 1.2rem;
  opacity: 0.6;
}
.ornament::before,
.ornament::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--secondary);
  opacity: 0.5;
}

/* Sticky nav visible fix */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section-padding { padding: 72px 0; }
}

/* --- LOGO DISPLAY ------------------------------------------ */
.nav-logo img {
  border-radius: 4px;
  background: rgba(255,255,255,0.9);
}
.footer-logo img {
  border-radius: 3px;
  background: rgba(255,255,255,0.85);
}
.special-page-logo {
  border-radius: 6px;
  background: rgba(255,255,255,0.9);
  padding: 6px;
}

/* --- ENHANCED HOVER ANIMATIONS ----------------------------- */

/* Footer links hover */
.footer-links li {
  transition: transform 0.25s ease;
}
.footer-links li:hover {
  transform: translateX(4px);
}

/* Stat items - already have hover defined above */

/* Kontakt info block hover */
.kontakt-info-block {
  transition: transform var(--transition);
}
.kontakt-info-block:hover {
  transform: translateX(4px);
}

/* Review card */
.review-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

/* Nav logo hover */
.nav-logo {
  transition: transform var(--transition), opacity var(--transition);
}
.nav-logo:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

/* Lang toggle */
.lang-toggle {
  transition: var(--transition), transform 0.25s;
}
.lang-toggle:hover {
  transform: scale(1.05);
}

/* Gallery amb-item: subtle lift on hover */
.amb-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.amb-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  z-index: 2;
}

/* Aktuell card — zoom pop-out on hover (no shine) */
.aktuell-card::before {
  display: none;
}

/* Menu item hover — gold left border */
.menu-item {
  border-left: 2px solid transparent;
  padding-left: 8px;
  transition: var(--transition), border-color 0.25s;
}
.menu-item:hover {
  border-left-color: var(--effect-dark);
  transform: translateX(4px);
}

/* Checkmark circle on thank-you: pulse on appear */
.checkmark-circle:hover {
  border-color: var(--effect-light);
}

/* --- MOBILE FIRST IMPROVEMENTS ----------------------------- */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 1.6rem; }

  .about-layout { gap: 32px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .footer-inner { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 360px) {
  .btn { padding: 13px 20px; font-size: 0.78rem; }
  .form-input, .form-select, .form-textarea { padding: 14px 12px; }
}

/* --- REDESIGNED MENU CATEGORY LAYOUT ----------------------- */
.menu-categories { display: flex; flex-direction: column; gap: 24px; }

.menu-category-redesign {
  display: grid;
  grid-template-columns: clamp(140px, 22%, 220px) 1fr;
  gap: 0;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  border: 1px solid rgba(255,255,255,0.12);
}
.menu-category-redesign:hover {
  box-shadow: 0 16px 48px rgba(107,36,36,0.35), 0 0 0 1px rgba(107,36,36,0.2);
  transform: scale(1.015);
}

.menu-cat-image {
  overflow: hidden;
  position: relative;
  min-height: 160px;
}
.menu-cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.menu-category-redesign:hover .menu-cat-image img {
  transform: scale(1.08);
}
.menu-cat-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #6B2424 100%);
  pointer-events: none;
}

.menu-cat-content {
  padding: 18px 22px;
}
.menu-cat-content .menu-category-title {
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.menu-cat-content .menu-items-grid {
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  /* Keep side-by-side layout on mobile: image left, content right */
  .menu-category-redesign {
    grid-template-columns: clamp(90px, 28vw, 130px) 1fr;
    border-radius: 10px;
  }
  .menu-cat-image {
    min-height: 110px;
  }
  .menu-cat-image::after {
    background: linear-gradient(to right, transparent 60%, #6B2424 100%);
  }
  .menu-cat-content {
    padding: 12px 14px;
  }
  .menu-cat-content .menu-category-title {
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  .menu-item {
    padding: 10px 0;
    gap: 10px;
  }
  .menu-item-name {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }
  .menu-item-desc {
    font-size: 0.72rem;
  }
  .menu-item-price {
    font-size: 0.8rem;
  }
}

/* --- SPEISEKARTE CARD IMAGE --------------------------------- */
/* Speisekarte uses contain (not cover) so food photos show fully */
/* align-self: center + aspect-ratio: 1 → uniform square size for all cards */
.speisekarte-cat-image {
  background: rgba(91,58,41,0.25);
  align-self: center;
  aspect-ratio: 1;
  min-height: 0;
}
.speisekarte-cat-image img {
  object-fit: contain;
  padding: 8px;
  transition: opacity 0.3s ease;
}
/* No zoom on hover for contain images (avoids clipping look) */
.menu-category-redesign:hover .speisekarte-cat-image img {
  transform: none;
}

/* Highlighted menu item when its image is active in the card */
.speisekarte-item.active {
  background: rgba(201, 169, 110, 0.22);
  border-radius: 6px;
  padding-left: 10px;
  border-left: 3px solid var(--gold);
  box-shadow: inset 0 0 0 1px rgba(201,169,110,0.18);
}
.speisekarte-item.active .menu-item-name {
  color: var(--color-gold-readable);
  font-weight: 600;
}
.speisekarte-item.active .menu-item-price {
  color: var(--color-gold-readable);
}

/* --- GETRÄNKKARTE CARD IMAGE -------------------------------- */
/* Getränkkarte uses contain so drink photos show fully */
/* align-self: center + aspect-ratio: 1 → uniform square size for all cards */
.getraenkkarte-cat-image {
  background: rgba(91,58,41,0.25);
  align-self: center;
  aspect-ratio: 1;
  min-height: 0;
}
.getraenkkarte-cat-image img {
  object-fit: contain;
  padding: 8px;
  transition: opacity 0.3s ease;
}
/* No zoom on hover for contain images (avoids clipping look) */
.menu-category-redesign:hover .getraenkkarte-cat-image img {
  transform: none;
}

/* Highlighted menu item when its image is active in the card */
.getraenkkarte-item.active {
  background: rgba(201, 169, 110, 0.22);
  border-radius: 6px;
  padding-left: 10px;
  border-left: 3px solid var(--gold);
  box-shadow: inset 0 0 0 1px rgba(201,169,110,0.18);
}
.getraenkkarte-item.active .menu-item-name {
  color: var(--color-gold-readable);
  font-weight: 600;
}
.getraenkkarte-item.active .menu-item-price {
  color: var(--color-gold-readable);
}

