:root {
  --red: #F5921E;
  --red-dark: #d97d10;
  --dark: #1a1a1a;
  --warm-bg: #f2f2f2;
  --text: #333;
  --muted: #777;
  --radius: 6px;
  --max-width: 960px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================
   LAYOUT HELFER
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
  background: #fff;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

/* ============================================
   HEADER
   ============================================ */
header {
  background: #fff;
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  background: var(--red);
  padding: 0.4rem 0;
}

.header-top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.header-top span {
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--red);
  white-space: nowrap;
}

.tel-btn {
  color: var(--red);
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  white-space: nowrap;
  border: none;
  padding: 0;
  background: none;
  transition: opacity 0.2s;
}

.tel-btn:hover {
  opacity: 0.8;
  text-decoration: none;
  background: none;
  color: var(--red);
}

nav { display: flex; gap: 1.5rem; margin-left: auto; }

nav a {
  color: var(--dark);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

nav a:hover { color: var(--red); text-decoration: none; }

/* ============================================
   HERO SLIDER
   (kein doppeltes .hero mehr – nur einmal hier)
   ============================================ */
.hero {
  padding: 0;
  position: relative;
  height: 520px;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ul/li reset */
.slides {
  display: flex;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

.slides li {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

/* img füllt den li komplett aus */
.slides li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* dunkler Overlay für Lesbarkeit */
.slides li::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  background: #fff;
  color: var(--red);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}

.btn:hover { background: var(--dark); color: #fff; text-decoration: none; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  margin-bottom: 2rem;
}

.btn-outline:hover { background: var(--red); color: #fff; }

/* ============================================
   SPEISEKARTE
   ============================================ */
.menu-category { margin-top: 2.5rem; }

.menu-category h3 {
  font-size: 1.3rem;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}

table { width: 100%; border-collapse: collapse; }

th, td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

td:not(:first-child), th:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}

tbody tr:hover { background: #fafafa; }

/* ============================================
   ÖFFNUNGSZEITEN
   ============================================ */
.bg-warm { background: var(--warm-bg); }

.hours-table { max-width: 400px; }

.hours-table th {
  text-align: left;
  color: var(--text);
  font-weight: bold;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  width: 55%;
}

.hours-table td { text-align: left; }

/* ============================================
   KONTAKT
   ============================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.kontakt-info p { margin-bottom: 1rem; }
.kontakt-info strong { display: block; margin-bottom: 0.25rem; }

.map-placeholder iframe {
  border-radius: var(--radius);
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--red);
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 1.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

footer a { color: rgba(255,255,255,0.8); }
footer a:hover { color: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
  nav { display: none; }

  .kontakt-grid { grid-template-columns: 1fr; }

  .hero { height: 380px; }

  .header-inner { gap: 1rem; }
}

/* ============================================
   MODAL (Impressum / Datenschutz)
   ============================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 640px;
  width: 100%;
  position: relative;
  margin: auto;
}

.modal-box h2 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.modal-box h3 {
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
  font-family: Arial, sans-serif;
}

.modal-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

.modal-close:hover {
  color: var(--dark);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.3s;
}

#cookie-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: 640px;
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

#cookie-box p { margin-bottom: 1rem; }

#cookie-buttons {
  display: flex;
  gap: 1rem;
}

#cookie-accept {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

#cookie-accept:hover { background: var(--red-dark); }

#cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 2px solid #ddd;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

#cookie-decline:hover { border-color: var(--muted); color: var(--dark); }

/* Platzhalter wenn Maps nicht geladen */
#map-placeholder-text {
  background: var(--warm-bg);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  gap: 0.5rem;
}

/* ============================================
   MODAL (Impressum / Datenschutz)
   ============================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 640px;
  width: 100%;
  position: relative;
  margin: auto;
}

.modal-box h2 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.modal-box h3 {
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
  font-family: Arial, sans-serif;
}

.modal-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

.modal-close:hover { color: var(--dark); }

/* ============================================
   SPEISEKARTE KACHELN
   ============================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.menu-tile {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.menu-tile.active {
  outline: 3px solid var(--red);
}

.menu-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.menu-tile-label {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* ============================================
   AUFKLAPPBARE TABELLEN
   ============================================ */
.menu-table-wrap {
  display: none;
  margin-top: 1.5rem;
  border-top: 3px solid var(--red);
  padding-top: 1.5rem;
}

.menu-table-wrap.open {
  display: block;
}

.menu-table-wrap h3 {
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 1rem;
}

@media (max-width: 700px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}














