/* Eigene Feinjustierungen der Startseite (nach dem Belt-CSS geladen). */

/* Hero-Aufteilung: Event-Zeile oben, Headline+Subline mittig, Kacheln unten. */
.lp-hero:has(.lp-hero__split) {
  align-items: stretch;
}

.lp-hero__content.lp-hero__split {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 90vh;
  /* Oben mehr Luft: klärt den fixierten Kopf (~130px) + ~60px Abstand wie unten. */
  padding-top: 190px;
  padding-bottom: 60px;
}

/* Subline für SEO/AI im HTML behalten, aber optisch entfernen. */
.lp-hero__content.lp-hero__split .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-hero__split .lp-hero__mid {
  margin: 0 auto;
  max-width: 980px;
}

/* Schwarzer, weicher Schatten hinter Headline + Kicker + Subline → bessere Lesbarkeit auf dem Video. */
.lp-hero__split h1,
.lp-hero__split .lp-kicker,
.lp-hero__split .lp-hero__subline {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Subline unter der Headline (Ortsanker). */
.lp-hero__split .lp-hero__subline {
  margin-top: 16px;
  font-family: var(--lp-body);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.94);
}

.lp-hero__split .lp-hero__actions {
  margin-top: 0;
}

/* Testimonial im goldenen Balken auf schmalen Screens ausblenden. */
@media (max-width: 991px) {
  .banner-testimonial {
    display: none !important;
  }
}

/* ---------- Fotogalerie ---------- */
.lp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.lp-gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--lp-ink);
}
.lp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lp-gallery__item:hover img {
  transform: scale(1.05);
}
.lp-gallery__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 14px 10px;
  color: #fff;
  font-size: 12px;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lp-gallery__item:hover .lp-gallery__cap {
  opacity: 1;
}
@media (max-width: 900px) {
  .lp-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Lightbox */
.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.88);
}
.lp-lightbox__fig {
  margin: 0;
  max-width: 90vw;
  max-height: 86vh;
  text-align: center;
}
.lp-lightbox__fig img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
}
.lp-lightbox__fig figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.lp-lightbox__close,
.lp-lightbox__nav {
  position: absolute;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 20px;
  cursor: pointer;
}
.lp-lightbox__close { top: 24px; right: 24px; }
.lp-lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lp-lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lp-lightbox__close:hover,
.lp-lightbox__nav:hover { background: rgba(255, 255, 255, 0.25); }

/* ---------- Partner & Wissenswertes ---------- */
.lp-partners { background: var(--lp-warm); max-width: none; }
.lp-partners > .lp-section__head,
.lp-partners > .lp-partners__grid {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.lp-partners__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}
.lp-partners__col h3 {
  margin: 0 0 16px;
  font-family: var(--lp-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-gold);
}
.lp-partners__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-partners__col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-ink);
  font-size: 16px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.lp-partners__col a:hover {
  color: var(--lp-gold);
  border-color: var(--lp-gold);
}
.lp-partners__col a i {
  font-size: 11px;
  opacity: 0.6;
}
@media (max-width: 1024px) and (min-width: 761px) {
  .lp-partners__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
}
@media (max-width: 760px) {
  .lp-partners__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Live-Webcam ---------- */
.lp-webcam__frame {
  border: 1px solid var(--lp-rule);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  line-height: 0;
}
.lp-webcam__frame iframe {
  display: block;
}
@media (max-width: 760px) {
  .lp-webcam__frame iframe { height: 420px !important; }
}

/* ---------- Wetter / 7-Tage-Prognose ---------- */
.lp-weather__panel {
  border: 1px solid var(--lp-rule);
  background: var(--lp-panel-bg);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  padding: 26px 28px;
}
.lp-weather__msg { margin: 0; color: var(--lp-muted); }
.lp-weather__now {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--lp-rule);
}
.lp-weather__now-icon { font-size: 44px; line-height: 1; }
.lp-weather__now strong {
  display: block;
  font-family: var(--lp-head);
  font-size: 38px;
  line-height: 1;
  color: var(--lp-ink);
}
.lp-weather__now small { color: var(--lp-muted); font-size: 14px; }
.lp-weather__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}
.lp-weather__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 6px;
  border: 1px solid var(--lp-rule);
  background: var(--lp-warm);
  text-align: center;
}
.lp-weather__dow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-ink);
}
.lp-weather__ico { font-size: 28px; line-height: 1; }
.lp-weather__temp strong { color: var(--lp-ink); font-size: 16px; }
.lp-weather__temp small { color: var(--lp-stone); font-size: 13px; margin-left: 4px; }
.lp-weather__pop { font-size: 11px; color: var(--lp-muted); }
.lp-weather__src { margin: 16px 0 0; font-size: 11px; color: var(--lp-stone); }
@media (max-width: 760px) {
  .lp-weather__days { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Sichtbare Google-Gesamtnote (Voraussetzung für AggregateRating-Schema). */
.lp-reviews-section__agg {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-gold, #8c6a2f);
}

/* ---------- Bewertungs-Karussell (klickbar, Karten immer sichtbar) ---------- */
.lp-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px clamp(12px, 3vw, 28px);
}
.lp-carousel__track {
  display: flex;
  gap: 20px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lp-carousel__track::-webkit-scrollbar { display: none; }
.lp-carousel__card {
  flex: 0 0 min(360px, 82vw);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.lp-carousel__card blockquote {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Pfeil-Tasten: rund, immer sichtbar, groß genug zum Antippen. */
.lp-carousel__nav {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--lp-rule, #e6e0d2);
  background: #fff;
  color: var(--accent-strong, #6e5526);
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
  transition: background .2s, color .2s, border-color .2s;
}
.lp-carousel__nav:hover {
  background: var(--accent, #957335);
  border-color: var(--accent, #957335);
  color: #fff;
}
.lp-carousel__nav svg { width: 24px; height: 24px; }
@media (max-width: 760px) {
  .lp-carousel { gap: 4px; padding: 4px 6px; }
  .lp-carousel__nav { width: 40px; height: 40px; }
  .lp-carousel__nav svg { width: 20px; height: 20px; }
}

/* ---------- Gastronomie: Foto-Überblendung (Mamas Tacos ↔ Matteo) ---------- */
.lp-gastro__visual.gastro-xfade { position: relative; }
/* 4-Bild-Rotation (Überblendung): alle gestapelt, je 6 s sichtbar. */
.gastro-xfade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: gastro-cycle 24s ease-in-out infinite;
}
.gastro-xfade img:nth-child(1) { animation-delay: 0s; }
.gastro-xfade img:nth-child(2) { animation-delay: 6s; object-position: left center; }
.gastro-xfade img:nth-child(3) { animation-delay: 12s; }
.gastro-xfade img:nth-child(4) { animation-delay: 18s; }
@keyframes gastro-cycle {
  0% { opacity: 0; }
  2% { opacity: 1; }
  23% { opacity: 1; }
  27% { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gastro-xfade img { animation: none; opacity: 0; }
  .gastro-xfade img:nth-child(1) { opacity: 1; }
}

/* Gestapelte Ansicht (≤1100px): Gastro-Bild VOR den Text ziehen (statt ganz
   unten). Der Desktop (Text links / Bild rechts nebeneinander) bleibt gleich. */
@media (max-width: 1100px) {
  .lp-gastro__visual { order: -1; }
}

/* ---------- Goldener Kopfbalken: fixiert statt absolut ---------- */
/* Belt setzt .header-banner auf position:absolute → beim Scrollen verschwindet
   er und das Video scheint im Spalt über dem fixierten Kopf durch. Fixiert bleibt
   er immer sichtbar; höhere Ebene macht die Sterne/Links sicher klickbar. */
.header-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

/* ---------- Gastro + Lage: warme Hinterlegung (heben sich als eigene Sektion ab) ---------- */
.lp-gastro,
.lp-location {
  background: var(--lp-tint);
}
/* Lage-Tribünenboxen weiß, damit sie auf der Tönung Kontrast haben. */
.lp-location__stats article {
  background: var(--lp-panel-bg);
}

/* Einleitung/SEO-Brücke zwischen Lage-Sektion und Karte. */
.lp-map-intro {
  background: var(--lp-tint, #f7f3e8);
  padding: clamp(38px, 5vw, 58px) 24px clamp(30px, 4vw, 44px);
  border-top: 1px solid var(--lp-rule, #e6e0d2);
}
.lp-map-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.lp-map-intro h2 {
  margin: 0 0 12px;
  font-family: var(--lp-head, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--lp-ink, #1c1813);
}
.lp-map-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--lp-body, #524d44);
}

/* Interaktiver Lageplan – vollbreit ZUSÄTZLICH unter dem Foto/Text-Block. */
.lp-location__map {
  position: relative;
  width: 100%;
  background: #14181f;
  border-top: 1px solid var(--lp-rule, #e6e0d2);
}
.lp-location__map .leaflet-container { font-family: inherit; }

/* „Route berechnen" — Gold-Button im Schitterhof-Stil (scharfe Kante). */
.lp-location__route {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 13px 26px;
  background: var(--accent, #957335);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s;
}
.lp-location__route:hover { background: var(--accent-strong, #6e5526); }

/* ---------- Stepbar-Fix: unter dem fixen Balken(40)+Kopf(90)=130px kleben ---------- */
.landing-premium { --lp-header-offset: 130px; }

/* ---------- Buchungsfortschritt-Vorschau (Startseite) ----------
   Nutzt denselben React-Baustein <BookingSteps> wie die echte Buchungsstraße
   (/buchen …) → identischer, gut lesbarer Look. Heller Streifen, klebt unter
   dem fixen Kopf. */
.lp-stepbar-preview {
  position: sticky;
  top: var(--lp-header-offset);
  z-index: 900;
  background: #1c1813; /* schwarz (Wunsch Ekki) */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-stepbar-preview__inner {
  /* kompakter + zentral in der Sektion. */
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 24px;
}
/* Beschriftungen auf Schwarz hell halten (Kreise sind selbst hell → bleiben lesbar). */
.lp-stepbar-preview li > span:last-child { color: #efe9db; }
@media (max-width: 760px) {
  .lp-stepbar-preview__inner { padding: 14px 16px; }
}

/* ---------- FAQ-Sektion: reines Weiß (Wunsch Ekki) ---------- */
.lp-faq-section {
  background: #ffffff;
}

/* ---------- Event-Karte: Warnhinweis (z. B. Termin noch nicht bestätigt) ---------- */
.lp-event__note {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  background: var(--lp-warning-bg);
  color: var(--lp-warning-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.lp-event.is-selected .lp-event__note {
  background: var(--lp-white-wash);
  color: var(--color-primary-contrast);
}

/* ---------- Event-Karte: „aktuell nicht buchbar" (Termin noch offen) ---------- */
/* Karte bleibt sichtbar (SEO/Ranking), signalisiert aber klar: kein Buchen. */
.lp-event--soon {
  cursor: default;
}
/* Statt grünem „Freie Plätze"-Badge ein neutraler Warnhinweis. */
.lp-event--soon .lp-event__badge {
  background: var(--lp-warning-bg);
  color: var(--lp-warning-text);
}
/* Status-Feld an Stelle des Buchen-Buttons (sieht bewusst inaktiv aus). */
.lp-event__soon {
  margin-top: auto;
  display: block;
  padding: 12px 16px;
  border: 1px dashed color-mix(in srgb, var(--lp-warning-text) 45%, transparent);
  background: var(--lp-warning-bg);
  color: var(--lp-warning-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

/* ---------- Hero-Video mobil: Ausschnitt nach links versetzt ---------- */
/* Das Video ist 16:9; im Hochformat zeigt das Handy nur den mittleren ~29%-
   Streifen. In den Menschen-Sequenzen (~15–17,5s) stehen die Personen links &
   rechts am Rand → die Mitte zeigt nur die Lücke (Tisch/Beine, keine Person).
   Ausschnitt nach links (32%) rückt in beiden Menschen-Szenen eine Person ins
   Bild; die Landschafts-/Sonnenuntergang-Aufnahmen bleiben dabei gut. Gilt auch
   fürs Poster (gleiche .img-ratio). Getestet an t=7/15,5/17/18,4s. */
@media (max-width: 760px) {
  .lp-hero__image .img-ratio {
    object-position: 32% center;
  }
}

/* Hero: Desktop zeigt das Video, Mobil NUR das Poster-Bild (Video ausgeblendet
   + preload="none" → kein Video-Download auf dem Handy = besserer Mobile-Score). */
.lp-hero__poster-img { display: none; }
@media (max-width: 760px) {
  .lp-hero__poster-img { display: block; }
  .lp-hero__video { display: none; }
}

/* ---------- Mobiler Seitenkopf: „Jetzt buchen" wurde abgeschnitten ---------- */
/* Auf schmalen Screens ragte der Buchen-Knopf ~80px über den rechten Rand:
   voller Logo-Text + Knopf sind zusammen zu breit, und die Bootstrap-`.row`
   schiebt ihren Inhalt über ihren negativen Seitenrand zusätzlich nach außen.
   Fix: row-Rand neutralisieren + Logo & Knopf dezent kompakter (Marke bleibt
   vollständig lesbar). Getestet 375px (12px Luft) und 360px. */
@media (max-width: 575px) {
  .header .header__container .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .header .col-auto a p {
    font-size: 11.5px !important;
    letter-spacing: 0 !important;
  }
  .header .col-auto a .header__logo-icon {
    width: 14px !important;
    height: 11px !important;
  }
  .header .col-auto a p.pr-5 { padding-right: 2px !important; }
  .header .col-auto a p.pl-5 { padding-left: 2px !important; }
  .header a.button.bg-primary {
    padding-left: 15px !important;
    padding-right: 15px !important;
    height: 40px !important;
    font-size: 11.5px !important;
  }
  .header__container.container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .header .col-auto .d-flex.items-center.justify-end {
    gap: 11px !important;
  }
}

/* ======================================================================
   MOBIL-OPTIMIERUNGEN — Bewertungen · Partner-Links · Footer
   Reine Anordnung/Darstellung. Es wird KEIN Text/Link aus dem HTML
   entfernt → SEO & AI-Auffindbarkeit bleiben vollständig erhalten.
   ====================================================================== */

/* ---------- Partner-Links mobil: 2-spaltig statt langer Liste ---------- */
@media (max-width: 760px) {
  .lp-partners__col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }
  .lp-partners__col a { font-size: 15px; }
}

/* ---------- 3) Footer mobil: 2-spaltig statt langem Stapel ----------
   Statt 5 voll gestapelter Spalten (sehr hoch) wird auf schmalen Screens ein
   2-Spalten-Raster genutzt; der Kontaktblock (viel Inhalt) bleibt volle Breite. */
@media (max-width: 575px) {
  .footer .row.y-gap-40 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    margin: 0;
  }
  .footer .row.y-gap-40 > [class*="col-"] {
    width: auto;
    max-width: none;
    flex: initial;
    padding: 0;
  }
  .footer .row.y-gap-40 > [class*="col-"]:first-child {
    grid-column: 1 / -1;
  }
  .footer .row.y-gap-40 h5 { margin-bottom: 14px !important; }
}

/* ---------- Footer: klarere Gliederung + Gold-Akzente ---------- */
/* Goldene, versale Spalten-Überschriften mit kurzem Gold-Strich darunter —
   gliedert die Bereiche klar und setzt die Marken-Farbe. */
.footer.-type-1 h5 {
  color: var(--lp-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.footer.-type-1 h5::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 12px;
  background: var(--lp-gold);
}

/* Dezenter „Drücken"-Effekt für die Marken-CTAs (Klick-Animation, Belt-Buttons) */
.lp-card-btn,
.header .button,
.lp-event__btn-default {
  transition:
    transform 0.14s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.header .button:hover,
.lp-card-btn:hover {
  transform: translateY(-1px);
}
.header .button:active,
.lp-card-btn:active {
  transform: scale(0.97);
}
@media (prefers-reduced-motion: reduce) {
  .header .button:hover,
  .lp-card-btn:hover,
  .header .button:active,
  .lp-card-btn:active {
    transform: none;
  }
}
