/* =============================================
   DA GABRIELE – RISTORANTE PIZZERIA MELLE
   Stylesheet – Luxury Italian Restaurant
   ============================================= */

/* === CSS VARIABLEN === */
:root {
  --gold: #b8965a;
  --gold-light: #d4af73;
  --gold-dark: #8a6e3a;
  --gruen: #1a2e1a;
  --gruen-mid: #2c4a2c;
  --gruen-hell: #3d6b3d;
  --dunkel: #0d1a0d;
  --creme: #f5f0e8;
  --creme-dunkel: #e8dfc9;
  --weiss: #ffffff;
  --text-dunkel: #1a1a1a;
  --text-grau: #6b6b6b;
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Montserrat', sans-serif;
  --schatten: 0 4px 30px rgba(0,0,0,0.15);
  --schatten-gold: 0 4px 20px rgba(184,150,90,0.2);
  --radius: 2px;
  --uebergang: 0.35s ease;
}

/* === RESET & BASIS === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-dunkel);
  background: var(--creme);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY HELPERS === */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gruen);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}
.center { text-align: center; }
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* === LAYOUT === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}

/* ========================
   NAVIGATION
======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--uebergang), padding var(--uebergang), box-shadow var(--uebergang);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13, 26, 13, 0.97);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Cinzel', serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;

  /* aur foarte subtil, realist */
  background: linear-gradient(
    180deg,
    #fff4cc 0%,
    #d6b36a 35%,
    #b08a4a 65%,
    #6f5326 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  position: relative;

  /* efect de gravura (lux real = subtilitate) */
  text-shadow:
    0 1px 0 rgba(255,255,255,0.25),
    0 -1px 0 rgba(0,0,0,0.35);

  transition: transform 0.2s ease;
}

/* micro-reflex, aproape invizibil */
.logo-mark::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: skewX(-20deg);
  animation: luxSweep 8s infinite;
  opacity: 0.5;
}

@keyframes luxSweep {
  0% { left: -60%; }
  50% { left: 120%; }
  100% { left: -60%; }
}

/* hover foarte discret (lux nu sare în ochi) */
.logo-mark:hover {
  transform: translateY(-1px);
}

.logo-mark.small {
  font-size: 1.1rem;
  height: auto;
}
.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-da {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--weiss);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--uebergang);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--uebergang);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dunkel);
  background: var(--gold);
  padding: 0.6rem 1.2rem;
  transition: background var(--uebergang), transform var(--uebergang);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--weiss);
  transition: all var(--uebergang);
}
.hamburger.offen span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.offen span:nth-child(2) { opacity: 0; }
.hamburger.offen span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dunkel);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(44, 74, 44, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(184, 150, 90, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, rgba(13,26,13,0.85) 0%, rgba(26,46,26,0.7) 50%, rgba(13,26,13,0.9) 100%);
  z-index: 1;
}
/* Hero hat kein Bild – eleganter dunkler Hintergrund mit Textur */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(184,150,90,0.02) 40px,
      rgba(184,150,90,0.02) 41px
    );
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 750px;
  animation: fadeInUp 1.2s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s 0.2s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--weiss);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  animation: fadeInUp 1.2s 0.4s ease both;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s 0.6s ease both;
}
.div-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-divider .div-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.div-diamond { color: var(--gold); font-size: 0.6rem; }
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(245,240,232,0.85);
  font-style: italic;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.2s 0.7s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s 0.9s ease both;
}
.btn-gold {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dunkel);
  background: var(--gold);
  padding: 1rem 2rem;
  display: inline-block;
  transition: background var(--uebergang), transform var(--uebergang);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--weiss);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 1rem 2rem;
  display: inline-block;
  transition: border-color var(--uebergang), color var(--uebergang), transform var(--uebergang);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-bar {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ========================
   ÜBER UNS
======================== */
.ueber-uns { background: var(--creme); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ueber-bild-wrap {
  position: relative;
}
.ueber-bild {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 15px 15px 0 var(--gold);
}
.ueber-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gruen);
  color: var(--creme);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--gold);
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ueber-badge strong { font-size: 1.3rem; font-family: var(--font-display); color: var(--gold); line-height: 1; }
.ueber-text .section-title { color: var(--gruen); }
.ueber-text p { color: #3a3a3a; margin-bottom: 1rem; font-size: 1.05rem; }
.merkmale {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.merkmal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--gruen-mid);
  font-weight: 500;
}
.merk-icon { font-size: 1.2rem; }

/* ========================
   SPEISEKARTE
======================== */
.speisekarte-section {
  background: var(--gruen);
  position: relative;
  overflow: hidden;
}
.menu-deko-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(184,150,90,0.04) 60px,
      rgba(184,150,90,0.04) 61px
    );
  pointer-events: none;
}
.speisekarte-section .eyebrow { color: var(--gold-light); }
.speisekarte-section .section-title { color: var(--creme); }
.speisekarte-section .section-title em { color: var(--gold-light); }
.menu-hinweis {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.tab-btn {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(184,150,90,0.3);
  background: transparent;
  transition: all var(--uebergang);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--gold);
  color: var(--dunkel);
  border-color: var(--gold);
}
.menu-panels { position: relative; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.menu-img-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--weiss);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(184,150,90,0.2);
}
.menu-img-wrap img { display: block !important; opacity: 1 !important; visibility: visible !important;
  width: 100%;
  height: auto;
  display: block;
}

/* ========================
   SAISONANGEBOT
======================== */
.spargel-section { background: var(--creme-dunkel); }
.spargel-img-wrap {
  max-width: 780px;
  margin: 0 auto 1.5rem;
  box-shadow: var(--schatten);
  border: 1px solid rgba(184,150,90,0.25);
}
.spargel-img-wrap img { width: 100%; height: auto; display: block; }
.spargel-hinweis {
  text-align: center;
  font-style: italic;
  color: var(--text-grau);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ========================
   KONTAKT
======================== */
.kontakt-section { background: var(--gruen); }
.kontakt-section .section-title { color: var(--creme); }
.kontakt-section .section-title em { color: var(--gold-light); }
.kontakt-section .eyebrow { color: var(--gold-light); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.kontakt-info { display: flex; flex-direction: column; gap: 1.8rem; }
.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon { font-size: 1.3rem; margin-top: 0.1rem; flex-shrink: 0; }
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.info-block p { color: rgba(245,240,232,0.8); font-size: 0.95rem; line-height: 1.6; }
.link-gold { color: var(--gold-light); transition: color var(--uebergang); font-size: 0.9rem; display: inline-block; margin-top: 0.2rem; }
.link-gold:hover { color: var(--weiss); }
/* Reservierungsformular */
.reservierung-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,90,0.3);
  padding: 2.5rem;
  backdrop-filter: blur(5px);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--creme);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,150,90,0.35);
  color: var(--creme);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--uebergang), background var(--uebergang);
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: var(--gruen); color: var(--creme); }
.form-group textarea { resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dunkel);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  transition: background var(--uebergang), transform var(--uebergang);
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-hinweis {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(245,240,232,0.5);
  text-align: center;
}
.form-hinweis a { color: var(--gold-light); }
.form-status {
  padding: 0.8rem 1rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  margin-bottom: 1rem;
  display: none;
}
.form-status.success { background: rgba(50,150,50,0.2); border: 1px solid rgba(50,200,50,0.4); color: #80ff80; }
.form-status.error { background: rgba(200,50,50,0.2); border: 1px solid rgba(200,80,80,0.4); color: #ff9999; }
/* Karte */
.karte-wrap {
  overflow: hidden;
  border: 1px solid rgba(184,150,90,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.karte-wrap iframe { display: block; filter: grayscale(20%) contrast(1.05); }

/* ========================
   FOOTER
======================== */
.footer {
  background: var(--dunkel);
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(184,150,90,0.2);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  transition: color var(--uebergang);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-kontakt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(245,240,232,0.45);
  margin-bottom: 1.5rem;
}
.footer-kontakt a { color: rgba(245,240,232,0.55); transition: color var(--uebergang); }
.footer-kontakt a:hover { color: var(--gold-light); }
.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
}

/* ========================
   RESPONSIVE – TABLET
======================== */
@media (max-width: 900px) {
  .ueber-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ueber-bild { aspect-ratio: 16/9; }
  .ueber-badge { right: 0; bottom: -1rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ========================
   RESPONSIVE – MOBIL
======================== */
@media (max-width: 680px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 75vw;
    max-width: 300px;
    background: var(--dunkel);
    border-left: 1px solid rgba(184,150,90,0.25);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--uebergang);
    z-index: 999;
  }
  .nav-links.offen { transform: translateX(0); }
  .nav-link { font-size: 0.85rem; color: rgba(255,255,255,0.85); }
  .nav-cta { font-size: 0.75rem; }
  .hero-title { font-size: clamp(3.5rem, 15vw, 6rem); }
  .section { padding: 3.5rem 0; }
  .merkmale { grid-template-columns: 1fr; }
  .menu-tabs { gap: 0.4rem; }
  .tab-btn { font-size: 0.58rem; padding: 0.55rem 0.9rem; }
  .reservierung-box { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-kontakt { flex-direction: column; gap: 0.4rem; }
  .footer-links { gap: 1rem; }
}


/* ========================
   MENU PANELS – IMMER SICHTBAR
======================== */
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-panel img,
.menu-img-wrap img,
.spargel-img-wrap img,
.ueber-bild {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* ========================
   SCROLL-ANIMATIONEN – CSS ONLY (fara JavaScript)
======================== */



/* Fallback fur Browser die animation-timeline nicht unterstuetzen */
@supports not (animation-timeline: view()) {
  .ueber-bild-wrap,
  .ueber-text,
  .spargel-img-wrap,
  .info-block,
  .reservierung-box,
  .karte-wrap,
  .menu-img-wrap,
  .merkmal,
  .ueber-badge {
    animation: slideUp 0.8s ease both;
    /* Immer sichtbar als fallback */
    animation-play-state: running;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Verzoegerungen fuer gestaffelten Effekt */
.ueber-text { animation-delay: 0.15s; }
.ueber-badge { animation-delay: 0.3s; }
.info-block:nth-child(2) { animation-delay: 0.1s; }
.info-block:nth-child(3) { animation-delay: 0.2s; }
.info-block:nth-child(4) { animation-delay: 0.3s; }
.merkmal:nth-child(2) { animation-delay: 0.1s; }
.merkmal:nth-child(3) { animation-delay: 0.2s; }
.merkmal:nth-child(4) { animation-delay: 0.3s; }

/* Bilder IMMER sichtbar – nie verstecken */
.menu-panel img,
.menu-img-wrap img,
.spargel-img-wrap img,
.ueber-bild {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* ========================
   JS FALLBACK ANIMATIONEN
   (nur aktiv wenn animation-timeline nicht unterstuetzt wird)
======================== */
.js-reveal {
  opacity: 1; /* Standard: sichtbar */
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
/* Vor dem Einblenden – aber NUR wenn JS die Klasse gesetzt hat */
.js-reveal:not(.sichtbar) {
  opacity: 0;
  transform: translateY(28px);
}
.js-reveal.sichtbar {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

/* Bilder IMMER sichtbar – egal was passiert */
.menu-panel img,
.menu-img-wrap img,
.spargel-img-wrap img,
.ueber-bild,
img {
  opacity: 1 !important;
  visibility: visible !important;
}

/* =============================================
   SPEISEKARTE TEXT MENU
   ============================================= */
.speise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.speise-kategorie {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b8965a !important;
  border-bottom: 1px solid rgba(200,169,126,0.3);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.speise-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  margin-bottom: 18px;
  align-items: baseline;
}

.speise-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff !important;
  line-height: 1.3;
}

.speise-dots {
  grid-column: 1;
  display: block;
  border-bottom: 1px dotted rgba(200,169,126,0.2);
  margin: 4px 0 0;
  height: 1px;
  align-self: end;
}

.speise-preis {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: #b8965a !important;
  white-space: nowrap;
  grid-row: 1;
  grid-column: 2;
  text-align: right;
}

.speise-desc {
  grid-column: 1 / -1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(245,240,232,0.55) !important;
  margin-top: 3px;
  line-height: 1.5;
}

.speise-note {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: rgba(200,169,126,0.5);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(200,169,126,0.15);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .speise-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .speise-col + .speise-col {
    margin-top: 24px;
  }
}
