:root {
  --bg: #0b0f14;
  --bg-soft: #141a22;
  --accent: #f1b24a;
  --accent-soft: rgba(241, 178, 74, 0.1);
  --text: #f5f5f5;
  --muted: #a0a8b5;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.4);
  --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.25);
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
  --max-width: 1120px;
}

/* Light Mode Variablen-Overrides */
body.light {
  --bg: #f3f4f6;
  --bg-soft: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.16);
  --shadow-subtle: 0 10px 25px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #1b2433 0, #05070b 55%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Body Hintergrund für Light Mode */
body.light {
  background: radial-gradient(circle at top, #e5e7eb 0, #ffffff 55%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.4rem;
}

/* Navigation */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 11, 0.98),
    rgba(5, 7, 11, 0.86),
    rgba(5, 7, 11, 0)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Light Mode Header */
body.light header {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98),
    rgba(249, 250, 251, 0.92),
    rgba(249, 250, 251, 0)
  );
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff5d0, #f1b24a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1208;
  font-size: 1rem;
  box-shadow: var(--shadow-subtle);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f1b24a, #ffdf9b);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Theme Toggle Button */

.theme-toggle {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 14, 20, 0.85);
  padding: 0.35rem 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-subtle);
}

/* Light Mode Theme Button */
body.light .theme-toggle {
  background: #f9fafb;
  border-color: rgba(15, 23, 42, 0.15);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 178, 74, 0.5);
  background: radial-gradient(circle at top left, #f1b24a22, #f1b24a05);
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: background var(--transition-med), transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.nav-cta span {
  font-size: 1.1rem;
}

.nav-cta:hover {
  background: radial-gradient(circle at top left, #f1b24a33, #f1b24a08);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: var(--shadow-subtle);
}

/* Mobile nav */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.35rem;
  margin-left: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
  transition: transform 0.25s ease-out, background 0.2s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: inherit;
  border-radius: inherit;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.active span {
  transform: rotate(45deg);
}

.nav-toggle.active span::before {
  transform: rotate(-90deg) translateX(-6px);
}

.nav-toggle.active span::after {
  opacity: 0;
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    inset: 100% 1.2rem auto 1.2rem;
    border-radius: 18px;
    background: rgba(5, 7, 11, 0.98);
    padding: 0.75rem 1rem 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    transform-origin: top;
    transform: scaleY(0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med), transform var(--transition-med);
  }

  /* Light mobile nav background */
  body.light .nav-links {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .nav-toggle {
    display: block;
  }
}

/* Hero */

.hero {
  padding: 3.5rem 0 2.75rem;
}

@media (min-width: 900px) {
  .hero {
    padding-top: 4.5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(241, 178, 74, 0.1);
  border: 1px solid rgba(241, 178, 74, 0.4);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff5d0, #f1b24a);
  box-shadow: 0 0 0 4px rgba(241, 178, 74, 0.18);
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero-title span {
  background: linear-gradient(120deg, #ffe3a7, #f1b24a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-bottom: 2.2rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-meta-pill {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(20, 26, 34, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Light mode pill Hintergrund */
body.light .hero-meta-pill {
  background: rgba(243, 244, 246, 0.95);
  border-color: rgba(15, 23, 42, 0.06);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rating-stars {
  font-size: 0.95rem;
}

/* Hero actions */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast),
    border-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #f7d572, #f1b24a);
  color: #221203;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
  background: linear-gradient(135deg, #ffe38c, #f1b24a);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-subtle);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

body.light .btn-ghost {
  border-color: rgba(15, 23, 42, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}

/* Light: etwas stärkeres Hover */
body.light .btn-ghost:hover {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.2);
}

.btn-icon {
  font-size: 1.1rem;
}

/* Hero media card */

.hero-media {
  background: radial-gradient(circle at top, #262f3c, #0a0e13);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

/* Light Mode Hero Card */
body.light .hero-media {
  background: radial-gradient(circle at top, #e5e7eb, #ffffff);
  border-color: rgba(15, 23, 42, 0.08);
}

.hero-media-main {
  position: relative;
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.35) 60%
  );
  z-index: 1;
}

.hero-media-img {
  aspect-ratio: 4 / 3;
  background-image: url("https://images.pexels.com/photos/958545/pexels-photo-958545.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 4s ease-out;
}

.hero-media:hover .hero-media-img {
  transform: scale(1.06);
}

.hero-media-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(6, 10, 15, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

/* Light Mode Badge */
body.light .hero-media-badge {
  background: rgba(17, 24, 39, 0.85);
  border-color: rgba(15, 23, 42, 0.25);
  color: #e5e7eb;
}

.hero-media-badge strong {
  color: #ffdf9b;
  font-weight: 600;
}

.hero-media-float {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  padding: 0.6rem 0.9rem;
  border-radius: 16px;
  background: rgba(5, 7, 11, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-subtle);
  font-size: 0.8rem;
  min-width: 150px;
}

/* Light Mode Float */
body.light .hero-media-float {
  background: rgba(17, 24, 39, 0.96);
  border-color: rgba(15, 23, 42, 0.3);
}

.float-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.float-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.float-value strong {
  font-size: 0.95rem;
}

/* Sections */

section {
  padding: 2.4rem 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 33rem;
  text-align: right;
}

@media (max-width: 640px) {
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-subtitle {
    text-align: left;
  }
}

/* Cards & text helpers */

.card {
  background: rgba(10, 14, 20, 0.96);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-subtle);
}

/* Light Mode Cards */
body.light .card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.06);
}

.about-text {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.about-text + .about-text {
  margin-top: 0.7rem;
}

/* Menu section */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 880px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-category-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.menu-category-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.8rem;
  row-gap: 0.15rem;
  padding: 0.55rem 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Light Mode Menu Item border */
body.light .menu-item {
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-name {
  font-size: 0.94rem;
}

.menu-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: #b45309;
  white-space: nowrap;
}

.menu-desc {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--muted);
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-left: 0.35rem;
}

/* Info section */

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
}

@media (max-width: 880px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

body.light .hours-table tr {
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

.hours-table td {
  padding: 0.4rem 0;
}

.hours-day {
  color: var(--muted);
}

.hours-time {
  text-align: right;
}

.hours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.hours-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(20, 26, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

/* Light Mode Tag */
body.light .tag {
  background: #f9fafb;
  border-color: rgba(15, 23, 42, 0.12);
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
}

.info-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.info-list li {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.info-list li span:first-child {
  opacity: 0.6;
}

/* Reservation */

.reservation-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
}

@media (max-width: 880px) {
  .reservation-grid {
    grid-template-columns: 1fr;
  }
}

.reservation-text {
  font-size: 0.94rem;
  color: var(--muted);
}

.reservation-highlight {
  margin-top: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(5, 190, 120, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.3);
  font-size: 0.82rem;
  color: #bbf7d0;
}

/* Light Mode Highlight */
body.light .reservation-highlight {
  background: #ecfdf3;
  border-color: #4ade80;
  color: #15803d;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.9rem;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .reservation-form {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.8rem;
  color: var(--muted);
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 18, 26, 0.96);
  padding: 0.55rem 0.75rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  font-size: 0.86rem;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

/* Light Mode Inputs */
body.light input,
body.light select,
body.light textarea {
  background: #f9fafb;
  border-color: rgba(15, 23, 42, 0.12);
  color: #111827;
}

textarea {
  border-radius: 14px;
  min-height: 70px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #64708a;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(241, 178, 74, 0.8);
  box-shadow: 0 0 0 1px rgba(241, 178, 74, 0.5);
  background: rgba(13, 18, 26, 1);
}

body.light input:focus,
body.light select:focus,
body.light textarea:focus {
  background: #ffffff;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.form-feedback {
  margin-top: 0.35rem;
}

.btn-submit {
  margin-top: 0.25rem;
  justify-content: center;
  width: 100%;
}

/* Contact / map */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 1.4rem;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.map-placeholder {
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  padding: 0.9rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Light Mode map */
body.light .map-placeholder {
  border-color: rgba(148, 163, 184, 0.6);
  background: #f9fafb;
}

.map-placeholder strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  font-size: 0.86rem;
}

@media (max-width: 640px) {
  .contact-links {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  background: rgba(10, 14, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

/* Light Mode contact cards */
body.light .contact-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}

.contact-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-value {
  font-size: 0.9rem;
}

.contact-action {
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* Footer */

footer {
  padding: 1.6rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 1.8rem;
}

/* Light Mode Footer */
body.light footer {
  border-top-color: rgba(15, 23, 42, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==== Hero-Bild: Light-Mode-Fixes ==== */

/* Overlay über dem Bild im Light Mode etwas heller/neutraler machen */
body.light .hero-media-main::before {
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0) 0,
    rgba(15, 23, 42, 0.06) 60%
  );
}

/* Badge unten links ("Signature Menü") im Light Mode */
body.light .hero-media-badge {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.12);
  color: #374151;           /* dunkles Grau für Text */
}

body.light .hero-media-badge strong {
  color: #b45309;           /* warmes Gold/Braun für den Preis */
}

/* Floating-Box oben rechts ("Heute Abend") im Light Mode */
body.light .hero-media-float {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  color: #111827;
}

body.light .hero-media-float .float-label {
  color: #6b7280;           /* etwas softere Label-Farbe */
}

/* ===== Ambience Section – Fix Layout ===== */

/* Bilder links, Text rechts – beide oben ausgerichtet */
.ambience-grid {
  display: flex;
  align-items: flex-start;        /* <-- sorgt dafür, dass Text OBEN bleibt */
  gap: 2rem;
  margin-top: 1.5rem;
}

/* Beide Cards bekommen gleiche Breite */
.ambience-photos,
.ambience-text {
  flex: 1;
}

/* Bilder-Card */
.ambience-photos {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 18px;
}

/* Großes Bild links */
.ambience-photo-large {
  grid-row: 1 / 3;
}

.ambience-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Text-Card – weniger Abstand oben */
.ambience-text {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;                     /* <-- bringt Text näher zusammen */
}

.ambience-text h3 {
  margin-top: 0;
}

/* Mobile Ansicht – untereinander */
@media (max-width: 860px) {
  .ambience-grid {
    flex-direction: column;
  }

  .ambience-photos,
  .ambience-text {
    flex: none;
    width: 100%;
  }

  .ambience-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .ambience-photo-large {
    grid-row: auto;
  }
}




/* ===== Beliebteste Gerichte ===== */

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 880px) {
  .favorites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .favorites-grid {
    grid-template-columns: 1fr;
  }
}

.favorite-card {
  background: rgba(10, 14, 20, 0.96);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

/* Light-Mode Karte */
body.light .favorite-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.06);
}

.favorite-img-wrap {
  position: relative;
  overflow: hidden;
}

.favorite-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 4s ease-out;
}

.favorite-card:hover .favorite-img {
  transform: scale(1.08);
}

.favorite-body {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.9rem;
}

.favorite-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.favorite-body p {
  margin: 0;
  color: var(--muted);
}
