/* =============================================
   Leyser's Catering – Haupt-Stylesheet
   ============================================= */

:root {
  --rot: #ff1c24;
  --rot-dunkel: #d9141b;
  --dunkel: #323232;
  --grau: #f5f5f5;
  --grau-mittel: #e0e0e0;
  --text: #333333;
  --weiss: #ffffff;
  --schrift: 'Segoe UI', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--dunkel);
}

body {
  font-family: var(--schrift);
  color: var(--text);
  background: var(--weiss);
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--rot);
  text-decoration: none;
}

a:hover {
  color: var(--rot-dunkel);
}

/* =============================================
   NAVIGATION
   ============================================= */

nav {
  background: var(--weiss);
  border-bottom: 1px solid var(--grau-mittel);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.nav-logo img {
  height: 65px !important;
  width: auto !important;
  max-width: 240px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 14px;
  color: var(--dunkel);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.aktiv {
  color: var(--rot);
}

.nav-cta {
  background: var(--rot);
  color: var(--weiss) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--rot-dunkel) !important;
  color: var(--weiss) !important;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dunkel);
  border-radius: 2px;
}

/* =============================================
   CONTAINER
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HERO – STARTSEITE
   ============================================= */

.hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../images/hero.jpg') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--weiss);
  text-align: center;
}

.hero-inhalt {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero-inhalt h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-inhalt p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.92;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
}

.btn-rot {
  background: var(--rot);
  color: var(--weiss);
}

.btn-rot:hover {
  background: var(--rot-dunkel);
  color: var(--weiss);
}

.btn-weiss {
  background: var(--weiss);
  color: var(--rot);
}

.btn-weiss:hover {
  background: var(--grau);
  color: var(--rot);
}

/* =============================================
   SEKTIONEN
   ============================================= */

section {
  padding: 64px 0;
}

section.grau {
  background: var(--grau);
}

.sektion-titel {
  text-align: center;
  margin-bottom: 48px;
}

.sektion-titel h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rot);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.sektion-titel p {
  color: #666;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   INTRO (Startseite)
   ============================================= */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-bild img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  height: 380px;
}

.intro-text h2 {
  font-size: 1.8rem;
  color: var(--rot);
  margin-bottom: 16px;
  font-weight: 800;
}

.intro-text p {
  margin-bottom: 16px;
  color: #444;
}

.intro-text .unterschrift {
  margin-top: 24px;
  font-style: italic;
  font-weight: 600;
  color: var(--dunkel);
}

/* =============================================
   MEDIEN LOGOS SLIDER
   ============================================= */

.medien-slider {
  background: var(--grau);
  padding: 32px 0;
  overflow: hidden;
}

.medien-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: slide 20s linear infinite;
  width: max-content;
}

.medien-track img {
  height: 36px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.medien-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* =============================================
   EVENTS GRID
   ============================================= */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-karte {
  background: var(--weiss);
  border: 1px solid var(--grau-mittel);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.event-karte:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.event-karte .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 28, 36, 0.08);
  border-radius: 50%;
}

.event-karte .icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--rot);
}

.event-karte h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 8px;
}

.event-karte p {
  font-size: 0.9rem;
  color: #666;
}

/* =============================================
   KUNDENSTIMMEN
   ============================================= */

.bewertungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bewertung-karte {
  background: var(--weiss);
  border-left: 4px solid var(--rot);
  padding: 24px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.bewertung-karte p {
  font-style: italic;
  color: #444;
  margin-bottom: 12px;
}

.bewertung-karte .autor {
  font-weight: 700;
  color: var(--rot);
  font-style: normal;
  font-size: 0.9rem;
}

/* =============================================
   STANDORT / KONTAKT BOX
   ============================================= */

.kontakt-box {
  background: var(--rot);
  color: var(--weiss);
  border-radius: 10px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.kontakt-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.kontakt-box p {
  opacity: 0.92;
  margin-bottom: 8px;
}

.kontakt-box a:not(.btn) {
  color: var(--weiss);
  font-weight: 700;
}

.kontakt-box .btn-weiss {
  color: var(--rot);
}

.kontakt-box .btn-weiss:hover {
  color: var(--rot);
}

.kontakt-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 600;
}

.kontakt-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

/* =============================================
   KONFIGURATOR – UNSERE BUFFETS
   ============================================= */

.konfigurator-layout {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 24px;
  align-items: start;
}

/* Linke Spalte: Kategorien */
.kategorien-nav {
  background: var(--weiss);
  border: 1px solid var(--grau-mittel);
  border-radius: 8px;
  padding: 16px;
  position: sticky;
  top: 90px;
}

.kategorien-nav h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 12px;
  font-weight: 700;
}

.kategorie-link {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--dunkel);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  margin-bottom: 4px;
}

.kategorie-link:hover,
.kategorie-link.aktiv {
  background: var(--rot);
  color: var(--weiss);
}

/* Gruppen-Überschrift im Konfigurator-Menü (Fingerfood / Tapas) */
.kat-gruppe-titel {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--rot);
  padding: 6px 12px 4px;
  margin-top: 10px;
  border-top: 1px solid var(--grau-mittel);
}

.kategorie-link.sub {
  padding-left: 22px;
  font-size: 0.9rem;
}

/* Appetitliche Kategorie-Beschreibung im Mittelteil */
.wunsch-kat-beschreibung {
  color: #555;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Kennzeichnung vegetarisch (grün) / vegan (petrol) */
.diet-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.diet-veg {
  background: #e6f4ea;
  color: #188038;
}
.diet-vegan {
  background: #e0f2f1;
  color: #00796b;
}

/* Mittlere Spalte: Buffets */
.buffets-liste {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 600px;
}

.kategorie-gruppe {
  margin-bottom: 32px;
}

.kategorie-gruppe h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--rot);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rot);
  margin-bottom: 0;
}

.buffet-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--grau-mittel);
  gap: 24px;
}

.buffet-bild {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  max-width: 100%;
}

.buffet-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 4px;
}

.buffet-info p {
  font-size: 0.9rem;
  color: #666;
}

.buffet-beschreibung {
  font-style: italic;
  color: #444;
  margin-bottom: 6px;
}

.buffet-details-formatted {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #555;
}

.details-label {
  font-weight: 700;
  color: var(--rot);
}

.details-items {
  color: #555;
}

.buffet-hinzufuegen {
  background: none;
  border: 2px solid var(--rot);
  color: var(--rot);
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.buffet-hinzufuegen:hover,
.buffet-hinzufuegen.ausgewaehlt {
  background: var(--rot);
  color: var(--weiss);
}

/* Rechte Spalte: Auswahl-Box */
.auswahl-box {
  background: var(--weiss);
  border: 2px solid var(--rot);
  border-radius: 8px;
  padding: 20px;
  position: sticky;
  top: 90px;
}

.auswahl-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--rot);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grau-mittel);
}

.auswahl-leer {
  color: #999;
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  padding: 20px 0;
}

.auswahl-liste {
  list-style: none;
  margin-bottom: 16px;
}

.auswahl-liste li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--grau-mittel);
  font-size: 0.9rem;
}

.auswahl-liste li span {
  color: var(--dunkel);
  font-weight: 600;
}

.auswahl-entfernen {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0 4px;
  transition: color 0.2s;
}

.auswahl-entfernen:hover {
  color: var(--rot);
}

.auswahl-box .btn {
  width: 100%;
  margin-top: 8px;
}

/* =============================================
   KONTAKT-FORMULAR
   ============================================= */

.formular-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--weiss);
  border-radius: 10px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.formular-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.formular-grid .voll {
  grid-column: 1 / -1;
}

.form-gruppe {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-gruppe label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dunkel);
}

.form-gruppe input,
.form-gruppe select,
.form-gruppe textarea {
  border: 1.5px solid var(--grau-mittel);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: var(--schrift);
  color: var(--dunkel);
  background: var(--weiss);
  transition: border-color 0.2s;
  width: 100%;
}

.form-gruppe input:focus,
.form-gruppe select:focus,
.form-gruppe textarea:focus {
  outline: none;
  border-color: var(--rot);
}

.form-gruppe textarea {
  resize: vertical;
  min-height: 120px;
}

.pflicht {
  color: var(--rot);
}

.form-submit {
  margin-top: 24px;
  text-align: center;
}

.form-submit .btn {
  min-width: 220px;
}

.form-meldung {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-meldung.erfolg {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-meldung.fehler {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* =============================================
   ÜBER UNS
   ============================================= */

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.ueber-bild {
  min-width: 0;
}

.ueber-bild img {
  border-radius: 8px;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
}

.ueber-text h2 {
  font-size: 1.8rem;
  color: var(--rot);
  font-weight: 800;
  margin-bottom: 20px;
}

.ueber-text p {
  color: #444;
  margin-bottom: 14px;
}

.ueber-werte {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.wert-karte {
  text-align: center;
  padding: 32px 20px;
  background: var(--weiss);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.wert-karte .icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.wert-karte h3 {
  font-weight: 800;
  color: var(--rot);
  margin-bottom: 8px;
}

.wert-karte p {
  font-size: 0.9rem;
  color: #666;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--dunkel);
  color: #ccc;
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-grid h3 {
  color: var(--weiss);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-grid p,
.footer-grid a {
  color: #aaa;
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: var(--weiss);
}

.footer-logo {
  width: auto !important;
  max-width: 220px;
  height: auto !important;
  max-height: 80px;
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #3a3a3a;
  border-radius: 50%;
  color: #ccc;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--rot);
  color: var(--weiss);
}

.footer-van {
  position: absolute;
  right: -20px;
  bottom: 36px;
  z-index: 0;
  pointer-events: none;
}

.footer-van img {
  width: 320px;
  max-width: 25vw;
  height: auto;
  aspect-ratio: 1344 / 768;
  opacity: 0.6;
  display: block;
}

/* =============================================
   FAQ
   ============================================= */

.faq-liste {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grau-mittel);
}

.faq-item summary {
  padding: 18px 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dunkel);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--rot);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 18px;
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item a {
  color: var(--rot);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #999;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: #999;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--weiss);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--grau-mittel);
    gap: 16px;
  }

  .nav-links.offen {
    display: flex;
  }

  .nav-burger {
    display: flex;
  }

  .nav-logo img {
    height: 78px;
  }

  .nav-inner {
    height: 94px;
  }

  .hero-inhalt h1 {
    font-size: 2rem;
  }

  .intro-grid,
  .ueber-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-bild img,
  .ueber-bild img {
    height: 280px;
  }

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

  .bewertungen-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-box {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .konfigurator-layout {
    grid-template-columns: 1fr;
  }

  .kategorien-nav,
  .auswahl-box {
    position: static;
  }

  .buffet-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .buffet-hinzufuegen {
    align-self: flex-start;
  }

  .formular-wrapper {
    padding: 28px 20px;
  }

  .formular-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  footer {
    padding: 32px 0 0;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-logo {
    max-width: 160px;
    margin-bottom: 4px;
  }

  .footer-van {
    display: none;
  }

  .ueber-werte {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Floating Button — Desktop only */
.wa-float {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  color: #fff;
}

/* WhatsApp Button Mobile — inline im Hero */
.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-wa:hover {
  background: #1ebe5a;
  color: #fff;
}

.btn-wa-mobile {
  display: none;
}

@media (max-width: 600px) {
  .wa-float {
    display: none;
  }

  .btn-wa-mobile {
    display: block;
  }

  /* Stephan-Foto: auf Mobile rausgezoomt */
  .ueber-bild img {
    height: 360px;
    object-position: center 10%;
  }
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .event-karte {
    padding: 18px 12px;
  }

  .event-karte .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .event-karte .icon svg {
    width: 24px;
    height: 24px;
  }

  .event-karte h3 {
    font-size: 0.95rem;
  }

  .event-karte p {
    font-size: 0.82rem;
  }

  .hero-inhalt h1 {
    font-size: 1.7rem;
  }

  .hero-inhalt p {
    font-size: 1rem;
  }

  .hero-inhalt .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 12px;
    text-align: center;
  }

  .sektion-titel h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 40px 0;
  }

  .kontakt-box {
    padding: 28px 20px;
  }

  .kontakt-box h2 {
    font-size: 1.4rem;
  }

  footer {
    padding: 24px 0 0;
  }

  .footer-logo {
    max-width: 140px;
    margin-bottom: 2px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* =============================================
   Lokaler SEO-Textblock (Catering Köln)
   ============================================= */
.lokal-text {
  max-width: 780px;
  margin: 0 auto;
  color: #444;
}

.lokal-text p {
  margin-bottom: 16px;
}

.lokal-text a {
  color: var(--rot);
  text-decoration: underline;
}
