/* ==================================================================
   Sajado — digital menu
   Sajado brand: deep red-to-black gradient with gold accents,
   matching the printed Sajado menu one-to-one.
   slab/serif headings (Bitter) over clean sans (Inter).
   Mobile-first. No horizontal scroll. Big tap targets.
   ================================================================== */

:root {
  /* Palette — Sajado brand: deep red gradient / gold / white, per the
     printed menu (red at the top, fading toward near-black lower down) */
  --wood-bg:      #8a1414;  /* brand red backdrop              */
  --wood-bg-2:    #4a0d0d;  /* deeper red for thumb mats/bands  */
  --card:         rgba(20, 6, 6, 0.38);   /* translucent dark-red card surface */
  --card-solid:   #3a0d0d;  /* solid dark-red surface (nav chips, toggle) */
  --ink:          #fdf3e4;  /* warm off-white text              */
  --ink-soft:     #e9c9b8;  /* muted body / descriptions        */
  --ink-faint:    #d9ab8f;  /* allergen codes, fine print       */
  --blue:         #8a1414;  /* brand deep red (header, headings) */
  --blue-2:       #6b0f0f;
  --blue-tint:    rgba(0, 0, 0, 0.22);  /* dark wash (addon chips)   */
  --red:          #d9a53a;  /* brand gold (accent, CTA)         */
  --red-2:        #b3860f;
  --red-tint:     rgba(217, 165, 58, 0.16);  /* pale gold wash (share tag) */
  --line:         rgba(217, 165, 58, 0.35);  /* hairline dividers    */
  --leader:       rgba(217, 165, 58, 0.5);   /* dotted price leaders */

  --shadow:        0 10px 26px rgba(0, 0, 0, 0.35);
  --shadow-soft:   0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-header: 0 4px 18px rgba(0, 0, 0, 0.4);

  --serif: "Bitter", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --header-h: 128px; /* approx sticky header height for scroll offsets */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: #2a0808;
  /* Deep red fading to near-black going down the page, matching the
     printed Sajado menu's gradient exactly — no paper texture. */
  background-image: linear-gradient(180deg, #9c1c1c 0%, #7a1010 30%, #4a0d0d 65%, #200606 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* ------------------------------------------------------------------ */
/* Language nudge banner                                              */
/* ------------------------------------------------------------------ */
.lang-nudge {
  display: block;
  width: 100%;
  border: 0;
  padding: 10px 16px;
  padding-top: max(10px, env(safe-area-inset-top));
  background: var(--red);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.lang-nudge:active { filter: brightness(0.96); }
.lang-nudge[hidden] { display: none; }

/* ------------------------------------------------------------------ */
/* Header                                                             */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #7a1010;
  color: var(--ink);
  box-shadow: var(--shadow-header);
  border-bottom: 2px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  padding-top: max(12px, env(safe-area-inset-top));
  background: rgba(20, 6, 6, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

.logo {
  flex: none;
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.brand-text { min-width: 0; }

/* Set like the brand wordmark: bold caps, a touch of tracking */
.brand-name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
}

.brand-tagline {
  margin: 3px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  max-width: 42ch;
  text-transform: uppercase;
}

/* Language toggle */
.lang-toggle {
  flex: none;
  display: inline-flex;
  background: var(--card-solid);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.lang-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 7px 9px;
  min-height: 34px;
  min-width: 34px;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.lang-btn:active { transform: scale(0.95); }
.lang-btn.active {
  background: var(--red);
  color: #2a0808;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(217, 165, 58, 0.45);
}

/* With 4 languages, drop the two-letter code on narrow screens and keep
   just the flag — still unambiguous, and it keeps the header from
   crowding the brand name/tagline. */
@media (max-width: 420px) {
  .lang-code { display: none; }
  .lang-btn { padding: 7px 8px; }
}

/* Category nav */
.cat-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 16px 12px;
  background: rgba(20, 6, 6, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* Soft fade at both edges hints at horizontal scrollability */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 26px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 26px), transparent);
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-link {
  flex: none;
  border: 1.5px solid var(--line);
  background: var(--card-solid);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 14px;
  min-height: 38px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.cat-link:active { transform: scale(0.95); }
.cat-link.active {
  background: var(--red);
  color: #2a0808;
  border-color: var(--red);
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(217, 165, 58, 0.4);
}

/* ------------------------------------------------------------------ */
/* Menu sections                                                      */
/* ------------------------------------------------------------------ */
.menu {
  max-width: 680px;
  margin: 0 auto;
  padding: 10px 14px 44px;
}

.category {
  scroll-margin-top: var(--header-h);
  margin: 0 2px 26px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-soft);
}
.category--red { border-color: var(--red); }

/* Category banner bars — bold white caps on solid brand color,
   mirroring the printed menu on the restaurant wall. */
.cat-header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 12px 16px;
  background: var(--blue);
}
.category--red .cat-header { background: var(--red); }

.cat-header .cat-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  font-size: 1.05rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.cat-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.category > .compact-block {
  margin: 16px 14px;
}

/* Single column menu cards for mobile */
.dish-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
  padding: 14px;
}

/* Dish card — large photo on top, details below */
.dish {
  display: flex;
  flex-direction: column;
  background: rgba(20, 6, 6, 0.42);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden; /* clip the photo to the card's rounded top corners */
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (hover: hover) {
  .dish:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
  .dish:hover .dish-thumb img { transform: scale(1.035); }
}
.dish--share {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), var(--shadow-soft);
  background: linear-gradient(180deg, rgba(217, 165, 58, 0.14), rgba(20, 6, 6, 0.42));
}

/* Photos are framed with a 3:4 vertical aspect ratio to fit vertical dish photography. */
.dish-thumb {
  --thumb-mat: 12px;
  position: relative;
  flex: none;
  width: 100%;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  font-size: 3.6rem;
  padding: var(--thumb-mat);
  background: var(--wood-bg-2);
  overflow: hidden;
  cursor: zoom-in;
}

/* Glassmorphic zoom pill badge in corner to clearly communicate photo magnification */
.dish-zoom-badge {
  position: absolute;
  bottom: calc(var(--thumb-mat) + 4px);
  right: calc(var(--thumb-mat) + 4px);
  background: rgba(15, 12, 8, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s, border-color 0.2s;
}
.dish:hover .dish-zoom-badge {
  background: rgba(230, 81, 0, 0.92);
  transform: scale(1.05) translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
}

/* "Live photo": tap, or stay in view a couple seconds, to play the loop. */
.dish-thumb--live { cursor: zoom-in; }

.dish-video {
  /* NOTE: unlike <img>, a <video>'s width/height:auto ignores `inset` and
     renders at its native pixel size (a replaced-element quirk) — so the
     box has to be sized explicitly here instead of relying on auto-fill. */
  position: absolute;
  top: var(--thumb-mat);
  left: var(--thumb-mat);
  width: calc(100% - 2 * var(--thumb-mat));
  height: calc(100% - 2 * var(--thumb-mat));
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.dish-thumb--live.is-live-active .dish-video { opacity: 1; }

.dish-live-badge {
  position: absolute;
  top: calc(var(--thumb-mat) + 8px);
  left: calc(var(--thumb-mat) + 8px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: rgba(20, 16, 10, 0.55);
  backdrop-filter: blur(2px);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.dish-thumb--live.is-live-active .dish-live-badge { opacity: 0.85; }

.dish-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(201, 150, 46, 0.6);
  animation: dish-live-pulse 1.6s ease-out infinite;
}
.dish-thumb--live.is-live-active .dish-live-dot { animation-play-state: paused; }

@keyframes dish-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 150, 46, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(201, 150, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 150, 46, 0); }
}

/* Prep-time badge — top-right corner of the photo (mirrors the Live badge,
   which sits top-left, so tap targets never overlap). */
.dish-time-badge {
  position: absolute;
  top: calc(var(--thumb-mat) + 8px);
  right: calc(var(--thumb-mat) + 8px);
  z-index: 1;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 16, 10, 0.55);
  backdrop-filter: blur(2px);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Prep-time chip for text-only dishes (no photo to badge) */
.time-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.dish-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 0 2px var(--blue), var(--shadow-soft);
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.dish-video { border-radius: 8px; box-shadow: 0 0 0 2px var(--blue); }
.category--red .dish-thumb img { box-shadow: 0 0 0 2px var(--red), var(--shadow-soft); }
.category--red .dish-video { box-shadow: 0 0 0 2px var(--red); }

.dish-body { padding: 10px 12px 12px; min-width: 0; }

/* Name + price — cards are narrow (two-up grid), so names can wrap to a
   second line; price stays pinned to the top-right instead of riding a
   dotted leader on the same baseline. */
.dish-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.dish-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.28;
}

.dish-price {
  flex: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  color: var(--red-2);
  white-space: nowrap;
}
.dish-price::after { content: " €"; font-size: 0.78em; font-weight: 600; }

.dish-desc {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.42;
}

.dish-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  margin-top: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.tag--vegan      { background: rgba(139, 195, 74, 0.22); color: #c5e1a5; }
.tag--vegetarian { background: rgba(139, 195, 74, 0.22); color: #c5e1a5; }
.tag--share      { background: var(--red-tint); color: var(--red); }

.serves {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.allergen-codes {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--ink-faint);
  letter-spacing: 0.09em;
}

.addon {
  margin-top: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--blue-tint);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 5px 10px;
  display: inline-block;
}

/* Compact category (Beilagen) — dense list, dashed dividers */
.compact-block {
  background: var(--card);
  overflow: hidden;
}
.compact-banner { display: flex; flex-direction: column; }
.compact-banner .dish-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  font-size: 3rem;
  border-radius: 0;
}
.compact-banner span.cb-text {
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-style: italic;
  padding: 2px 2px 6px;
  border-bottom: 1px dashed var(--line);
}

.compact-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 2px;
  border-bottom: 1px dashed var(--line);
}
.compact-item:last-child { border-bottom: 0; padding-bottom: 4px; }
.compact-item .ci-main { flex: 1; min-width: 0; }
.compact-item .ci-name { font-family: var(--serif); font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.compact-item .ci-desc { font-size: 0.8rem; color: var(--ink-soft); margin-top: 1px; }
.compact-item .ci-codes { font-size: 0.68rem; color: var(--ink-faint); letter-spacing: 0.09em; margin-top: 2px; }
.compact-item .ci-price {
  flex: none;
  font-family: var(--serif);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--red);
  white-space: nowrap;
}
.compact-item .ci-price::after { content: " €"; font-size: 0.78em; font-weight: 600; }

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
/* Footer continues the page's red-to-black gradient straight down —
   no photo banner, just a small torii-gate glyph as a quiet brand mark. */
.site-footer {
  background: linear-gradient(180deg, #4a0d0d 0%, #200606 100%);
  color: #ffffff;
  text-align: center;
  margin-top: 6px;
}
.footer-mark {
  display: block;
  font-size: 2.4rem;
  text-align: center;
  padding: 28px 0 4px;
  opacity: 0.85;
}
.footer-content {
  padding: 8px 20px calc(30px + env(safe-area-inset-bottom));
}
.insta {
  display: inline-block;
  margin: 4px 0 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.insta:active { opacity: 0.8; }

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 20px;
  padding: 12px 22px;
  min-height: 44px;
  background: #fffdf8;
  color: var(--red-2);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.12s;
}
.review-btn:active { transform: scale(0.97); filter: brightness(0.97); }
.footer-made { margin: 2px 0; font-size: 0.9rem; }
.footer-address { margin: 2px 0 18px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.82); }

/* Allergen legend (collapsible) */
.allergens {
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 4px 14px;
}
.allergens summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  padding: 12px 2px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}
.allergens summary::-webkit-details-marker { display: none; }
.allergens .chevron { transition: transform 0.2s; color: #ffd9d2; }
.allergens[open] .chevron { transform: rotate(180deg); }
.allergen-hint { margin: 0 0 8px; font-size: 0.76rem; color: rgba(255, 255, 255, 0.78); }
.allergen-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}
.allergen-list li { font-size: 0.82rem; color: rgba(255, 255, 255, 0.95); }
.allergen-list b {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  margin-right: 6px;
  border-radius: 5px;
  background: #ffffff;
  color: var(--red-2);
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-note {
  margin: 18px 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.68);
}

/* ------------------------------------------------------------------ */
/* About Us Section                                                   */
/* ------------------------------------------------------------------ */
.about-section {
  max-width: 680px;
  margin: 24px auto 36px;
  padding: 0 14px;
  scroll-margin-top: var(--header-h);
}
.about-card {
  background: rgba(20, 6, 6, 0.4);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 32px 24px 28px;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Subtle top accent bar in brand gold & red */
.about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
}
.about-header-bar {
  text-align: center;
  margin-bottom: 24px;
}
.about-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.25);
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}
.about-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1.15;
}
.about-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .about-gallery { grid-template-columns: 1fr; }
}
.about-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: var(--wood-bg-2);
  border: 3px solid var(--red);
}
.about-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: zoom-in;
}
.about-photo-wrap:hover .about-img {
  transform: scale(1.06);
}
.about-photo-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(20, 16, 10, 0.88) 0%, rgba(20, 16, 10, 0.4) 60%, transparent 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 22px 12px 10px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.about-content {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
}
.about-text {
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--ink);
  margin: 0;
  text-align: left;
}
.about-text strong { color: var(--red); }

/* ------------------------------------------------------------------ */
/* Footer Reviews (Two distinct Google Maps buttons)                  */
/* ------------------------------------------------------------------ */
.footer-reviews {
  margin: 20px 0;
  padding: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  text-align: center;
}
.reviews-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.reviews-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 500px) {
  .reviews-buttons { flex-direction: row; justify-content: center; }
}
.review-btn--wirt {
  background: var(--red);
  color: #ffffff !important;
  border-color: var(--red);
}
.review-btn--wirt:hover { background: var(--red-2); }
.review-btn--garten {
  background: var(--blue);
  color: #ffffff !important;
  border-color: var(--blue);
}
.review-btn--garten:hover { background: var(--blue-2); }

/* ------------------------------------------------------------------ */
/* Fullscreen Lightbox Modal (Photo & Video Zoom)                     */
/* ------------------------------------------------------------------ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 10, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 96vw;
  max-height: 94vh;
  width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.68) translateY(24px);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.lightbox-modal.is-open .lightbox-content {
  transform: scale(1) translateY(0);
}
.lightbox-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  z-index: 10;
}
.lightbox-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff5722, #d84315);
  color: #fff;
  font-family: var(--sans, sans-serif);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 24px rgba(255, 87, 34, 0.45), 0 2px 8px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.lightbox-back-btn:hover {
  background: linear-gradient(135deg, #ff6e40, #e64a19);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.6), 0 4px 12px rgba(0, 0, 0, 0.7);
}
.lightbox-back-btn:active {
  transform: scale(0.96);
}
.back-arrow {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s;
}
.lightbox-back-btn:hover .back-arrow {
  transform: translateX(-4px);
}
.lightbox-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 1.35rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.4); transform: scale(1.08); }
.lightbox-close:active { transform: scale(0.95); }

.lightbox-media {
  width: 100%;
  height: 82vh;
  max-height: 82vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: #080605;
  cursor: zoom-in;
}
.lightbox-media:has(.is-zoomed) {
  cursor: grab;
}
.lightbox-media:has(.is-zoomed:active) {
  cursor: grabbing;
}
.lightbox-media img, .lightbox-media video {
  max-width: 94vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
.lightbox-zoom-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 12, 8, 0.88);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
  transition: opacity 0.3s, transform 0.3s, background 0.25s, border-color 0.25s;
}
.lightbox-zoom-hint.is-zoomed {
  background: rgba(230, 81, 0, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
}
.lightbox-info {
  margin-top: 14px;
  text-align: center;
  color: #fff;
  max-width: 80vw;
}
.lightbox-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.lightbox-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffd9d2;
  margin-top: 4px;
}

/* ------------------------------------------------------------------ */
/* Small screens & niceties                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 360px) {
  .brand-name { font-size: 1.14rem; }
  .allergen-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .dish-live-dot { animation: none !important; }
}

/* Welcome Splash Gate / Restaurant Menu Cover                              */
/* ------------------------------------------------------------------ */
.welcome-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #0d0a07;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s;
}
.welcome-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.welcome-gate-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 10, 7, 0.72) 0%, rgba(13, 10, 7, 0.92) 60%, rgba(13, 10, 7, 0.98) 100%),
              url('assets/hero-1.jpg') center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.05);
  transition: transform 1.5s ease-out;
}
.welcome-gate:hover .welcome-gate-bg {
  transform: scale(1.08);
}
.welcome-gate-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  width: 100%;
  background: rgba(24, 19, 13, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s;
}
.welcome-gate.is-hidden .welcome-gate-content {
  transform: scale(1.06) translateY(-20px);
  opacity: 0;
}
.welcome-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 81, 0, 0.18);
  color: #ff8a50;
  border: 1px solid rgba(230, 81, 0, 0.35);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.welcome-title {
  font-family: var(--serif, serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 12px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.welcome-subtitle {
  font-size: 0.98rem;
  color: #d1c7bd;
  line-height: 1.45;
  margin: 0 0 26px 0;
  max-width: 380px;
}
.welcome-lang-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  width: 100%;
}
.welcome-lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.welcome-lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.welcome-lang-btn.is-active {
  background: linear-gradient(135deg, #ff5722, #d84315);
  border-color: #ff8a50;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.45);
}
.welcome-cta-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.welcome-cta-btn {
  width: 100%;
  max-width: 340px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff5722, #c43000);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(255, 87, 34, 0.5), 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.welcome-cta-btn:hover {
  background: linear-gradient(135deg, #ff6e40, #d84315);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(255, 87, 34, 0.65), 0 6px 14px rgba(0, 0, 0, 0.6);
}
.welcome-cta-btn:active {
  transform: scale(0.97);
}
.cta-icon {
  font-size: 1.3rem;
}
.welcome-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #a89f91;
  transition: color 0.3s;
  min-height: 20px;
}
.welcome-status.is-ready {
  color: #81c784;
}
.status-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ff8a50;
  border-radius: 50%;
  animation: welcomeSpin 0.8s linear infinite;
  display: inline-block;
}
.welcome-status.is-ready .status-spinner {
  display: none;
}
@keyframes welcomeSpin {
  to { transform: rotate(360deg); }
}

