/* ============================================
   TURMWIRT — Design System v2
   Elegant-Modern mit geschwungenen Bögen
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --color-primary: #2E7D32;
  --color-primary-dark: #1B5E20;
  --color-primary-light: #4CAF50;
  --color-primary-pale: #E8F5E9;
  --color-primary-muted: #A5D6A7;
  --color-accent: #F9A825;
  --color-white: #FFFFFF;
  --color-offwhite: #FAFAFA;
  --color-black: #1A1A1A;
  --color-gray-900: #212121;
  --color-gray-700: #424242;
  --color-gray-500: #757575;
  --color-gray-300: #E0E0E0;
  --color-gray-100: #F5F5F5;
  --color-cream: #FFFDE7;
  --color-overlay: rgba(30, 30, 30, 0.55);
  --color-overlay-green: rgba(27, 94, 32, 0.85);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs: 0.975rem;
  --fs-sm: 1.14rem;
  --fs-base: 1.3rem;
  --fs-lg: 1.46rem;
  --fs-xl: 1.625rem;
  --fs-2xl: 1.95rem;
  --fs-3xl: 2.6rem;
  --fs-4xl: 3.575rem;
  --fs-5xl: 4.55rem;
  --fs-6xl: 5.85rem;

  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --max-width: 1200px;
  --max-width-narrow: 800px;
  --border-radius: 6px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::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: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: 1.7;
  color: var(--color-gray-700);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-xl); }
.container-narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 var(--space-xl); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-gray-900);
  line-height: 1.2;
  font-weight: var(--fw-bold);
}

h1 { font-size: var(--fs-5xl); margin-bottom: var(--space-lg); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-3xl); margin-bottom: var(--space-md); }
h3 { font-size: var(--fs-2xl); margin-bottom: var(--space-md); }
h4 { font-size: var(--fs-xl); margin-bottom: var(--space-sm); }

.subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: var(--fw-normal);
  color: var(--color-primary);
  font-size: var(--fs-xl);
}

.lead {
  font-size: var(--fs-lg);
  line-height: 1.8;
  color: var(--color-gray-500);
  font-weight: var(--fw-light);
}

p { margin-bottom: var(--space-md); }

/* --- Geschwungener Bogen (SVG-Divider) --- */
.curve-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.curve-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.curve-top {
  margin-bottom: -1px;
}

.curve-bottom {
  margin-top: -1px;
}

/* --- Header --- */
.site-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-top {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xs) 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  letter-spacing: 0.3px;
}

.header-top .container {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-xl);
  align-items: center;
}

.header-top a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.header-top a:hover { color: var(--color-white); }

.header-main {
  padding: 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
}

.logo-icon {
  height: 70px;
  width: auto;
  object-fit: contain;
  padding: var(--space-xs) 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: 3px;
  color: var(--color-gray-900);
}

.logo-text em {
  color: var(--color-primary);
  font-style: normal;
}

/* Navigation */
.main-nav > ul {
  display: flex;
  gap: 0;
  align-items: center;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a,
.main-nav .nav-parent-label {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-gray-700);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 60%;
}

/* Dropdown-Pfeil */
.nav-parent-label::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: transform var(--transition);
}

/* Dropdown-Menü (Desktop) */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  border-top: 2px solid var(--color-primary);
  padding: var(--space-xs) 0;
  z-index: 120;
}

.nav-dropdown li { display: block; }

.nav-dropdown a {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  display: block;
}

.nav-dropdown a::after { display: none; }

.nav-dropdown a:hover {
  background: var(--color-primary-pale);
  color: var(--color-primary);
}

/* Dropdown bei Hover öffnen (Desktop) */
@media (min-width: 769px) {
  .has-dropdown:hover > .nav-dropdown,
  .has-dropdown:focus-within > .nav-dropdown {
    display: block;
  }
  .has-dropdown:hover > .nav-parent-label {
    color: var(--color-primary);
  }
  .has-dropdown:hover > .nav-parent-label::after {
    transform: rotate(-135deg);
    margin-bottom: -1px;
  }
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-gray-900);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray-300);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-3xl) var(--space-2xl);
  background: rgba(27, 94, 32, 0.75);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero h1 {
  color: var(--color-white);
  font-size: var(--fs-6xl);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero .subtitle {
  color: rgba(255,255,255,0.95);
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-xl);
}

.hero p { color: rgba(255,255,255,0.85); font-size: var(--fs-lg); }

/* Hero-Bogen: Kurve am unteren Rand (links flach, rechts hochgezogen — wie Bogen.svg) */
.hero::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,80 L0,55 C580,55 1100,55 1440,0 L1440,80 Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  z-index: 3;
}

/* Hero-Buttons: Outline-Buttons bekommen dunkel-grünen Hintergrund */
.hero-buttons .btn-outline,
.hero-content .btn-outline {
  background: rgba(27, 94, 32, 0.7);
}

.hero-buttons .btn-outline:hover,
.hero-content .btn-outline:hover {
  background: var(--color-primary);
}

.hero-buttons .btn-white:hover {
  background: rgba(27, 94, 32, 0.7);
}

/* Hero-Buttons: unterhalb des Content-Kastens, volle Breite, zentriert */
.hero-buttons {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: 0 var(--space-xl);
}

/* Kleinerer Hero für Unterseiten */
.hero-sm {
  min-height: 45vh;
}

.hero-sm h1 {
  font-size: var(--fs-4xl);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Sections --- */
.section {
  padding: var(--space-5xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.section-green {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-green h2,
.section-green h3,
.section-green h4 {
  color: var(--color-white);
}

.section-green p,
.section-green .lead {
  color: rgba(255,255,255,0.85);
}

.section-green .subtitle {
  color: rgba(255,255,255,0.9);
}

/* Day-Card innerhalb von section-green: dunkle Textfarben beibehalten */
.section-green .day-card {
  color: var(--color-gray-900);
}
.section-green .day-card strong,
.section-green .day-card .menu-item {
  color: var(--color-gray-900);
}
.section-green .day-card small,
.section-green .day-card .menu-vorspeise {
  color: var(--color-gray-600);
}

.section-pale {
  background: var(--color-primary-pale);
}

.section-cream {
  background: var(--color-cream);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-3xl);
}

.section-header .subtitle {
  margin-bottom: var(--space-sm);
}

/* Dekorative Linie unter Section-Header */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: var(--space-lg) auto 0;
  border-radius: 2px;
}

.section-green .section-header::after {
  background: var(--color-primary-muted);
}

/* --- CTA Badge --- */
.cta-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  color: var(--color-gray-900);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--border-radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-gray-300);
  width: 100%;
  max-width: 420px;
}

.cta-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  color: var(--color-gray-900);
}

.cta-badge .label {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-primary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.cta-badge .phone {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: 1px;
  line-height: 1.15;
}

.cta-badge .hours {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-top: var(--space-xs);
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary-pale) 0%, var(--color-primary-muted) 100%);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-body {
  padding: var(--space-xl);
}

.card-body h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}

.card-body p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
}

.card-body a {
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  letter-spacing: 0.5px;
}

.card-body a::after {
  content: ' →';
  transition: margin-left var(--transition);
}

.card-body a:hover::after {
  margin-left: 4px;
}

/* Grid */
.card-grid {
  display: grid;
  gap: var(--space-xl);
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* --- Two Column --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.two-col-wide {
  grid-template-columns: 3fr 2fr;
}

/* --- Wochenmenü --- */
.day-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.day-card:hover {
  box-shadow: var(--shadow-md);
}

.day-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  border-radius: 4px 0 0 4px;
}

.day-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.day-card .date {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  font-weight: var(--fw-normal);
}

/* Vorspeise/Suppe innerhalb jedes Menüs */
.menu-vorspeise {
  font-style: italic;
  color: var(--color-gray-600);
  font-size: var(--fs-sm);
}

/* Menü I + II nebeneinander */
.day-card-menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.menu-item { margin-bottom: var(--space-sm); }

.menu-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 4px;
}

.menu-label-alt { background: var(--color-primary-light); }

.menu-prices {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  margin-bottom: var(--space-2xl);
  padding: var(--space-md);
  background: var(--color-primary-pale);
  border-radius: var(--border-radius-lg);
}

.menu-prices span {
  font-weight: var(--fw-semibold);
}

/* Heute-Badge */
.heute-badge {
  display: inline-block;
  background: #E65100;
  color: white;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.day-card-heute {
  border: 2px solid #E65100;
  background: #FFF8F0;
}

.day-card-heute::before {
  background: #E65100;
}

/* --- Speisekarte --- */
.menu-category {
  margin-bottom: var(--space-3xl);
}

.menu-category h3 {
  font-family: var(--font-heading);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-lg);
  position: relative;
}

.menu-category h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-table tr {
  border-bottom: 1px solid var(--color-gray-100);
  transition: background var(--transition);
}

.menu-table tr:hover {
  background: var(--color-primary-pale);
}

.menu-table td {
  padding: var(--space-md) var(--space-sm);
  vertical-align: top;
}

.menu-table .dish-name {
  font-weight: var(--fw-semibold);
  color: var(--color-gray-900);
}

.menu-table .dish-desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  display: block;
  margin-top: 2px;
}

.menu-table .tageskarte-highlight {
  background: var(--color-cream);
  border-left: 3px solid var(--color-accent);
}

.menu-table .tageskarte-highlight .dish-name strong {
  color: var(--color-accent);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-table .price {
  text-align: right;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  color: var(--color-primary);
  font-size: var(--fs-lg);
}

/* --- Info Box --- */
.info-box {
  background: var(--color-primary-pale);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--color-primary-muted);
}

.info-box h4 { color: var(--color-primary-dark); }
.info-box p:last-child { margin-bottom: 0; }

/* --- Blog / Beitrags-Karten --- */
.post-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  border-left: 4px solid var(--color-primary);
  transition: box-shadow var(--transition);
}

.post-card:hover { box-shadow: var(--shadow-md); }

.post-card h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-sm);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

.post-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 3px 10px;
  border-radius: 50px;
}

.post-tag-event { background: #E65100; }
.post-tag-archiv { background: var(--color-gray-500); }

/* --- Feature List --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-primary-pale);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
}

.feature-text h4 {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-xs);
}

.feature-text p {
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

/* Section-Green Features */
.section-green .feature-icon {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}

/* --- Highlight Strip (z.B. Frühstück) --- */
.highlight-strip {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.highlight-strip .price-tag {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin: var(--space-md) 0;
}

.section-green .price-tag {
  color: var(--color-white);
}

/* --- Google Maps --- */
.map-embed {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* --- Opening Hours Table --- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: var(--fs-sm);
}

.hours-table th {
  font-weight: var(--fw-semibold);
  color: var(--color-gray-900);
}

/* --- Footer Curve (direkt vor Footer) --- */
.footer-curve {
  line-height: 0;
  margin-bottom: -1px;
}

.footer-curve svg {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  color: var(--color-white);
  overflow: visible;
  background: var(--color-primary);
  border-top: none;
  margin-top: 0;
}

.footer-diagonal { display: none; }

/* Turm: rechts, am oberen Rand bündig */
.footer-turm {
  position: absolute;
  right: 5%;
  top: 0;
  height: 100%;
  width: auto;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

/* 3-Spalten-Grid wie in der Vorlage */
.footer-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-3xl);
  max-width: 900px;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  margin-bottom: var(--space-sm);
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--color-white);
}

/* Mittlere Spalte: Partner-Logos + Check-in */
.footer-col-center {
  text-align: left;
}

.footer-partner-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.partner-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Rechte Spalte: Kontakt + Social */
.footer-col-right {
  text-align: left;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--border-radius-md);
  transition: background var(--transition);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.3);
}

.footer-social svg {
  display: block;
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 2;
  background: var(--color-primary-dark);
  padding: var(--space-md) 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
  color: var(--color-white);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* --- Print --- */
@media print {
  /* Alles ausblenden was nicht zum Menü gehört */
  .site-header, .site-footer, .cta-badge, .nav-toggle,
  .hero::after, .hero::before, .hero-curve, .footer-curve, .curve-divider,
  .no-print { display: none !important; }

  @page { margin: 1cm 1cm 0.8cm; }
  body { font-size: 9pt; color: #000; margin: 0; padding: 0; line-height: 1.3; }
  .container { max-width: 100%; padding: 0; }

  /* Hero: nur eine kompakte Titelzeile */
  .hero {
    min-height: auto !important;
    background: none !important;
    color: #000;
    padding: 0 0 4pt;
    display: flex;
    align-items: baseline;
    gap: 8pt;
  }
  .hero-content { padding: 0; text-align: left; }
  .hero h1 {
    color: #000;
    text-shadow: none;
    font-size: 16pt;
    margin: 0;
    display: inline;
  }
  .hero .subtitle {
    color: #555;
    font-size: 9pt;
    margin: 0;
    display: inline;
  }
  .hero .btn-group { display: none; }

  /* Sections kompakt */
  .section { padding: 0; }

  /* Preisleiste: eine Zeile */
  .menu-prices {
    padding: 4pt 8pt;
    margin-bottom: 6pt;
    background: #eee !important;
    border-radius: 0;
    flex-direction: row !important;
    gap: 16pt;
    justify-content: flex-start;
    font-size: 9pt;
  }

  /* Labels kleiner */
  .menu-label {
    font-size: 6pt;
    padding: 1px 5px;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .heute-badge {
    font-size: 6pt;
    padding: 1px 5px;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* Tageskarten: sehr kompakt */
  .day-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #bbb;
    padding: 4pt 8pt;
    margin-bottom: 4pt;
    border-radius: 0;
  }
  .day-card::before { display: none; }
  .day-card h3 {
    font-size: 9pt;
    margin-bottom: 2pt;
    padding-bottom: 2pt;
    border-bottom: 1px solid #ddd;
  }
  .day-card .date { font-size: 7pt; }

  /* Menü I + II NEBENEINANDER auch im Druck */
  .day-card-menus {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8pt;
  }

  .menu-vorspeise { font-size: 8pt; }
  .menu-item { margin-bottom: 0; }
  .menu-item strong { font-size: 9pt; }
  .menu-item small { font-size: 7.5pt; }

  /* Heute-Hervorhebung */
  .day-card-heute {
    border: 2px solid #333;
    background: #f5f5f5 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  h1, h2, h3, h4 { color: #000; }
  a { color: #000; text-decoration: none; }

  /* Tageskarte: Spezialitätentag-Box */
  .info-box {
    border: 1px solid #999 !important;
    background: #f5f5f5 !important;
    padding: 6pt 8pt;
    margin-top: 8pt !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .info-box .subtitle { color: #333 !important; font-size: 8pt; }
  .info-box p { color: #000 !important; font-size: 9pt; }
  .info-box strong { color: #000 !important; }

  /* Tageskarte: Gerichte-Tabelle */
  .menu-table {
    font-size: 9pt;
    margin-top: 6pt;
  }
  .menu-table td { padding: 3pt 6pt; }
  .menu-table .dish-name { font-size: 9pt; }
  .menu-table .dish-desc { font-size: 8pt; }
  .menu-table .price { font-size: 9pt; white-space: nowrap; }
  .menu-table .tageskarte-highlight {
    background: #f0f0f0 !important;
    border-left: 2px solid #333;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* Drucken-Button ausblenden */
  .btn-print, .no-print { display: none !important; }

  /* Fade-in Animationen im Druck sofort sichtbar */
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-turm { height: 100%; right: 2%; }
  .footer-grid-new { grid-template-columns: 1fr 1fr; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --fs-5xl: 3.25rem;
    --fs-6xl: 3.9rem;
    --fs-4xl: 2.6rem;
    --fs-3xl: 2.275rem;
  }

  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 105;
    padding: 80px var(--space-xl) var(--space-xl);
  }

  .main-nav.active { display: flex; align-items: center; justify-content: center; }

  .main-nav > ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .main-nav a,
  .main-nav .nav-parent-label {
    padding: var(--space-sm) var(--space-xl);
    font-size: var(--fs-xl);
    font-weight: var(--fw-medium);
  }

  .main-nav a::after { display: none; }

  /* Mobile Dropdowns: aufklappbar */
  .nav-dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    background: transparent;
    min-width: auto;
    padding: 0;
  }

  .has-dropdown.open > .nav-dropdown {
    display: block;
  }

  .has-dropdown.open > .nav-parent-label::after {
    transform: rotate(-135deg);
    margin-bottom: -1px;
  }

  .nav-dropdown a {
    font-size: var(--fs-lg);
    padding: var(--space-xs) var(--space-xl);
    color: var(--color-gray-500);
  }

  .nav-dropdown a:hover {
    background: transparent;
    color: var(--color-primary);
  }

  .hero { min-height: 70vh; }
  .hero-sm { min-height: 40vh; }

  .two-col,
  .two-col-wide { grid-template-columns: 1fr; gap: var(--space-xl); }

  .card-grid-2,
  .card-grid-3 { grid-template-columns: 1fr; }

  .footer-grid-new { grid-template-columns: 1fr; text-align: center; }
  .footer-turm { display: none; }
  .footer-diagonal { background: linear-gradient(165deg, var(--color-gray-100) 0%, var(--color-gray-100) 12%, transparent 12.1%); }

  .footer-bottom .container {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .header-top { display: none; }

  .section { padding: var(--space-3xl) 0; }

  .btn-group { flex-direction: column; align-items: center; }

  .menu-prices { flex-direction: column; gap: var(--space-sm); }
  .day-card-menus { grid-template-columns: 1fr; gap: var(--space-md); }
}
