/* ============================================================
   PIZZERIA BELLA ITALIA – Theme CSS
   Warm Italian Trattoria Aesthetic
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --c-red:       #b8341b;
  --c-red-dark:  #8c1e0a;
  --c-gold:      #c9952a;
  --c-gold-lt:   #e8b84b;
  --c-cream:     #f8f0e0;
  --c-cream-dk:  #ede0c8;
  --c-brown:     #3b2414;
  --c-dark:      #1a1007;
  --c-charcoal:  #2a1f14;
  --c-text:      #2c1a0e;
  --c-text-muted:#7a5c48;
  --c-white:     #fffcf5;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.12);
  --shadow-md:   0 6px 24px rgba(0,0,0,.16);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.22);

  --radius:      6px;
  --radius-lg:   14px;
  --transition:  .25s ease;

  --font-heading: 'Palatino Linotype','Book Antiqua',Palatino,Georgia,serif;
  --font-body:    'Gill Sans','Gill Sans MT',Optima,Candara,Calibri,sans-serif;
  --font-mono:    'Courier New',Courier,monospace;

  --container:   1180px;
  --header-h:    76px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--c-cream);
  color: var(--c-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--c-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-red-dark); }
address { font-style: normal; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  color: var(--c-brown);
  line-height: 1.22;
}
h1 { font-size: clamp(2.2rem,5vw,3.8rem); }
h2 { font-size: clamp(1.7rem,3.5vw,2.6rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.55rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p  { margin-bottom: 1.1em; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .5rem;
}

.ornament {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: .4em;
  margin: .6rem 0 1.4rem;
  font-family: var(--font-body);
}
.ornament--light { color: rgba(255,255,255,.55); }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 2.4rem);
  margin-inline: auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(26,16,7,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,149,42,.25);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.4); }

.header-spacer { height: var(--header-h); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--c-white);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.8rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(201,149,42,.6));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--c-white);
  letter-spacing: .02em;
}
.logo-tagline {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* Nav */
.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 2rem; list-style: none; }
.nav-link {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,252,245,.82);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--c-gold-lt);
  border-color: var(--c-gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.is-open .hamburger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .hamburger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .78rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
}
.btn-primary:hover {
  background: var(--c-red-dark);
  border-color: var(--c-red-dark);
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(184,52,27,.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,252,245,.55);
}
.btn-outline:hover {
  background: rgba(255,252,245,.12);
  border-color: var(--c-white);
  color: var(--c-white);
}

/* ============================================================
   HERO (Home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 12s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,16,7,.78) 0%,
    rgba(59,36,20,.65) 60%,
    rgba(184,52,27,.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 0;
  animation: heroFadeIn .9s ease both;
}
@keyframes heroFadeIn {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-eyebrow {
  font-size: .85rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  margin-bottom: 1rem;
  opacity: .9;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem,10vw,6.5rem);
  color: var(--c-white);
  line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic;
  color: var(--c-gold-lt);
}

.hero-sub {
  font-size: clamp(1rem,2vw,1.22rem);
  color: rgba(255,252,245,.82);
  max-width: 560px;
  margin: 0 auto 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,252,245,.5);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform:rotate(45deg) translateY(0); }
  50%      { transform:rotate(45deg) translateY(4px); }
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights {
  background: var(--c-charcoal);
  padding: 5rem 0;
}

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

.highlight-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
  border: 1px solid rgba(201,149,42,.18);
  border-radius: var(--radius-lg);
  background: rgba(255,252,245,.03);
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
}
.highlight-card:hover {
  background: rgba(255,252,245,.07);
  border-color: rgba(201,149,42,.45);
  transform: translateY(-4px);
}
.highlight-icon {
  font-size: 2.4rem;
  margin-bottom: .9rem;
  filter: drop-shadow(0 2px 6px rgba(201,149,42,.4));
}
.highlight-card h3 {
  color: var(--c-gold-lt);
  margin-bottom: .6rem;
  font-size: 1.18rem;
}
.highlight-card p {
  color: rgba(255,252,245,.68);
  font-size: .92rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--c-cream);
  padding: 6rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.4rem;
  right: -1.4rem;
  width: 96px;
  height: 96px;
  background: var(--c-red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--c-white);
  text-align: center;
}
.badge-year   { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.badge-number { font-family: var(--font-heading); font-size: 1.7rem; font-weight: bold; line-height: 1; }

.about-text { }
.about-text h2 { margin-bottom: .3rem; }
.about-text p  { color: var(--c-text-muted); }

/* ============================================================
   OPENING HOURS (Home)
   ============================================================ */
.opening-hours {
  background: var(--c-brown);
  padding: 5rem 0;
  text-align: center;
}
.opening-hours .section-eyebrow { color: var(--c-gold-lt); }
.opening-hours h2 { color: var(--c-white); }
.opening-hours .ornament { color: var(--c-gold); }

.hours-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.hours-card {
  background: rgba(255,252,245,.06);
  border: 1px solid rgba(201,149,42,.25);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  min-width: 200px;
}
.hours-card h4 { color: var(--c-gold-lt); margin-bottom: .5rem; }
.hours-days    { color: rgba(255,252,245,.6); font-size: .88rem; margin: 0; }
.hours-time    { color: var(--c-white); font-size: 1.3rem; font-family: var(--font-heading); margin: 0; }
.hours-divider { color: var(--c-gold); font-size: 1.4rem; }
.hours-note    { color: rgba(255,252,245,.45); font-size: .82rem; margin-top: 2rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,16,7,.55) 0%,
    rgba(26,16,7,.82) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  text-align: center;
  width: 100%;
}
.page-hero-content h1 { color: var(--c-white); }
.page-hero-content p  { color: rgba(255,252,245,.75); font-size: 1.05rem; margin: 0; }

/* ============================================================
   MENU / SPEISEKARTE
   ============================================================ */
.menu-section {
  padding: 5.5rem 0;
  background: var(--c-cream);
}
.menu-section--alt {
  background: var(--c-cream-dk);
}

.menu-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.menu-section-header h2 { margin-bottom: .25rem; }
.menu-note {
  color: var(--c-text-muted);
  font-size: .9rem;
  margin: 0;
}

.menu-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--c-white);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.menu-table thead {
  background: var(--c-brown);
  color: var(--c-gold-lt);
}
.menu-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.menu-table tbody tr {
  border-bottom: 1px solid var(--c-cream-dk);
  transition: background var(--transition);
}
.menu-table tbody tr:hover { background: rgba(201,149,42,.06); }
.menu-table tbody tr:last-child { border-bottom: none; }
.menu-table td {
  padding: .9rem 1.2rem;
  vertical-align: top;
  color: var(--c-text);
}

.col-nr    { width: 60px; color: var(--c-text-muted); font-size: .82rem; }
.col-name  { width: 220px; }
.col-preis { width: 90px; text-align: right; font-family: var(--font-heading);
             font-weight: bold; color: var(--c-red); white-space: nowrap; }

/* Badges */
.badge-spicy, .badge-veg, .badge-highlight {
  display: inline-block;
  font-size: .72rem;
  padding: .15rem .45rem;
  border-radius: 30px;
  vertical-align: middle;
  margin-left: .3rem;
}
.badge-highlight {
  background: rgba(201,149,42,.15);
  color: var(--c-gold);
  border: 1px solid rgba(201,149,42,.35);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .04em;
}

.menu-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  font-size: .85rem;
  color: var(--c-text-muted);
}

.allergen-section {
  background: var(--c-charcoal);
  padding: 2rem 0;
  text-align: center;
}
.allergen-section p {
  color: rgba(255,252,245,.65);
  font-size: .88rem;
  margin: 0;
}
.allergen-section strong { color: rgba(255,252,245,.9); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-section {
  padding: 5rem 0;
  background: var(--c-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2, .contact-map-col h2 { margin-bottom: .25rem; }
.contact-info .ornament, .contact-map-col .ornament { margin-bottom: 1.5rem; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--c-white);
  border: 1px solid var(--c-cream-dk);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.contact-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-card-body h3 {
  font-size: .95rem;
  margin-bottom: .3rem;
  color: var(--c-brown);
}
.contact-card-body p, .contact-card-body address {
  font-size: .88rem;
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.65;
}
.contact-card-body a { color: var(--c-red); }

.hours-table { border-collapse: collapse; font-size: .88rem; color: var(--c-text-muted); }
.hours-table td { padding: .12rem .5rem .12rem 0; }
.hours-table td:first-child { padding-right: 1rem; color: var(--c-text); font-weight: 600; }
.hours-closed td { color: #aaa; text-decoration: line-through; font-weight: normal !important; }

.reservation-box {
  background: var(--c-brown);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  color: var(--c-white);
}
.reservation-box h3 { color: var(--c-gold-lt); margin-bottom: .6rem; }
.reservation-box p  { color: rgba(255,252,245,.75); font-size: .92rem; margin-bottom: 1.2rem; }

/* Leaflet map */
#leaflet-map {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 3px solid var(--c-cream-dk);
}

.map-hint {
  font-size: .84rem;
  color: var(--c-text-muted);
  margin-bottom: .8rem;
}
.map-attribution-note {
  font-size: .75rem;
  color: var(--c-text-muted);
  margin-top: .6rem;
  margin-bottom: 0;
}

/* Custom Leaflet marker */
.custom-marker { background: none; border: none; }
.marker-pin {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.5));
  text-align: center;
}

/* ============================================================
   IMPRESSUM / DEFAULT PAGE
   ============================================================ */
.page-content {
  padding: 4rem 0 5rem;
}
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}
.page-header h1 { margin-bottom: .25rem; }

.prose h2 {
  font-size: 1.3rem;
  margin-top: 2.2rem;
  margin-bottom: .6rem;
  color: var(--c-brown);
  border-bottom: 2px solid var(--c-cream-dk);
  padding-bottom: .35rem;
}
.prose p, .prose address { color: var(--c-text-muted); font-size: .97rem; }
.prose a { color: var(--c-red); }
.prose a:hover { text-decoration: underline; }
.impressum-body { max-width: 780px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,252,245,.7);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,252,245,.08);
}

.footer-brand { text-align: center; }
.footer-logo-icon {
  font-size: 2.4rem;
  filter: drop-shadow(0 2px 8px rgba(201,149,42,.4));
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--c-white);
  margin: .4rem 0 .2rem;
}
.footer-tagline {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.footer-col h4 {
  color: var(--c-gold-lt);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .9rem;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .4rem;
  font-size: .88rem;
  color: rgba(255,252,245,.65);
}
.footer-col address { font-size: .88rem; line-height: 1.8; }
.footer-col a { color: rgba(255,252,245,.65); }
.footer-col a:hover { color: var(--c-gold-lt); }

.footer-bottom {
  padding: 1.1rem 0;
  font-size: .8rem;
  color: rgba(255,252,245,.4);
  text-align: center;
}
.footer-bottom a { color: rgba(255,252,245,.55); }
.footer-bottom a:hover { color: var(--c-gold-lt); }
.footer-divider { margin: 0 .5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image img{ height: 300px; }
  .about-badge    { bottom: -1rem; right: -.5rem; width: 80px; height: 80px; }
  .badge-number   { font-size: 1.4rem; }
  .contact-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner   { grid-template-columns: 1fr; }
  .footer-cols    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle  { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(26,16,7,.97);
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    clip-path: circle(0% at calc(100% - 44px) 0);
    transition: clip-path .4s ease;
    pointer-events: none;
  }
  .site-nav.is-open {
    clip-path: circle(150% at calc(100% - 44px) 0);
    pointer-events: auto;
  }
  .nav-list    { flex-direction: column; gap: 0; }
  .nav-link    { display: block; padding: .85rem 0;
                 border-bottom: 1px solid rgba(255,252,245,.06);
                 font-size: 1rem; }

  .contact-cards  { grid-template-columns: 1fr; }
  .footer-cols    { grid-template-columns: 1fr; }

  .col-nr     { display: none; }
  .col-zutaten{ font-size: .82rem; }

  .hours-grid { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
  .menu-table th, .menu-table td { padding: .7rem .8rem; }
}

/* ============================================================
   ERWEITERUNGEN: Öffnungszeiten Kontakt, Multi-Preis, Legende
   ============================================================ */

/* Öffnungszeiten-Liste auf Kontaktseite: Wochentag oben, Zeit darunter */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 0;
}
.hours-entry {
  display: flex;
  flex-direction: column;
  gap: .08rem;
}
.hours-entry--closed .hours-days,
.hours-entry--closed .hours-time {
  color: #bbb;
  text-decoration: line-through;
}
.hours-days {
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-brown);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
}
.hours-time {
  font-size: .9rem;
  color: var(--c-text-muted);
  margin: 0;
  padding-left: .6rem;
  border-left: 2px solid var(--c-gold);
}

/* contact-card volle Breite wenn Öffnungszeiten viele Zeilen haben */
.contact-card--hours {
  grid-column: 1 / -1;
}

/* Mehrere Preis-Spalten in der Speisekarte */
.col-preis {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: bold;
  color: var(--c-red);
  white-space: nowrap;
  width: auto;
  min-width: 90px;
}
.col-preis--na {
  color: var(--c-text-muted);
  font-weight: normal;
  font-family: var(--font-body);
}

/* Badge als inline-block unter dem Gerichtnamen */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  padding: .15rem .5rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .03em;
  margin-top: .2rem;
}
.badge-tag.badge-spicy {
  background: rgba(220, 50, 20, .1);
  color: #c0392b;
  border: 1px solid rgba(220, 50, 20, .3);
}
.badge-tag.badge-veg {
  background: rgba(39, 174, 96, .1);
  color: #1e8449;
  border: 1px solid rgba(39, 174, 96, .3);
}
.badge-tag.badge-highlight {
  background: rgba(201, 149, 42, .12);
  color: var(--c-gold);
  border: 1px solid rgba(201, 149, 42, .35);
}

/* Legende unterhalb der letzten Tabelle */
.menu-legend-section {
  background: var(--c-charcoal);
  padding: 1.8rem 0;
}
.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
  align-items: center;
  font-size: .87rem;
  color: rgba(255, 252, 245, .65);
}
.legend-allergen {
  flex-basis: 100%;
  font-size: .82rem;
  color: rgba(255, 252, 245, .45);
  border-top: 1px solid rgba(255, 252, 245, .08);
  padding-top: .8rem;
}

/* ── Footer Öffnungszeiten gestapelt ── */
.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-hours-entry {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}
.footer-hours-days {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,252,245,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-hours-time {
  font-size: .85rem;
  color: rgba(255,252,245,.5);
  padding-left: .5rem;
}

/* ── Footer Öffnungszeiten: eine Zeile ── */
.footer-hours { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.footer-hours-entry { display: flex; gap: .4rem; flex-wrap: wrap; font-size: .84rem; }
.footer-hours-entry--closed .footer-hours-days,
.footer-hours-entry--closed .footer-hours-time { color: rgba(255,252,245,.3); text-decoration: line-through; }
.footer-hours-days { color: rgba(255,252,245,.7); font-weight: 700; white-space: nowrap; }
.footer-hours-time { color: rgba(255,252,245,.5); }

/* ── Speisekarte Subkategorie-Header ── */
.menu-table-wrapper--sub { margin-bottom: 1.2rem; }
.subcat-header {
  background: var(--c-brown);
  color: var(--c-gold-lt);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: bold;
  padding: .6rem 1.2rem;
  letter-spacing: .06em;
  border-bottom: 2px solid var(--c-gold);
  text-transform: uppercase;
}
.menu-section--alt .subcat-header { background: var(--c-charcoal); color: var(--c-gold-lt); }
.col-header-row th {
  background: var(--c-brown);
  color: var(--c-gold-lt);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.2rem;
}

/* ── Kontakt Specials ── */
.contact-specials {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.special-badge {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--c-white);
  border: 1px solid var(--c-cream-dk);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  box-shadow: var(--shadow-sm);
}
.special-icon { font-size: 1.4rem; flex-shrink: 0; }
.special-badge strong { color: var(--c-brown); font-size: .95rem; }
.special-badge span   { color: var(--c-text-muted); font-size: .85rem; }

/* ── Restaurant Guru Award ── */
.about-award {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--c-brown) 0%, var(--c-charcoal) 100%);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius-lg);
  padding: .8rem 1.4rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 16px rgba(201,149,42,.25);
}
.about-award-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--c-gold-lt);
  font-weight: bold;
}
.about-award-sub {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,252,245,.55);
  margin-top: .15rem;
}

/* ── Impressum Datenschutz-Link ── */
.impressum-datenschutz-link { margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid var(--c-cream-dk); }
