/*
 * Jura Ferienhof — Haupt-Stylesheet
 * assets/css/main.css
 *
 * Wird über functions.php (jura_scripts) auf allen Seiten geladen.
 */

/* ── Lokale Schriften ── */
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-v32-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-v32-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-v32-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-v32-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
/*
 * AUFBAU / INHALTSVERZEICHNIS:
 * ─────────────────────────────
 *   TOKENS .............. CSS Custom Properties (Farben, Radien)
 *   RESET ............... Box-Sizing, Scroll, Schriftart
 *   UTILS ............... .serif, .container, .container-sm
 *   NAV ................. Desktop-Navigation (fixed, transparent → solid)
 *   HERO ................ Vollbild-Hero der Startseite (Slider, Overlay)
 *   TRUST STRIP ......... 5-Punkte Vertrauens-Streifen
 *   SECTIONS ............ Globale Section-Stile (.sec, .sec-h, .sec-p)
 *   BUTTONS ............. .btn-gold, .btn-ink, .btn-ghost-w, .btn-outline-ink
 *   TWO COL ............. Zweispaltiges Layout-Grid
 *   PAGE HERO ........... Hero-Banner auf Unterseiten
 *   CONTENT SECTIONS .... Erlebnisse-Seite Layouts (.erlebnis-*)
 *   GASTRONOMIE GRID .... Restaurant-Karten (.gastro-card)
 *   ERLEBNISSE KARTEN ... .card-linen, .card-white, .card-white-sm
 *     └ Ausflug Image Cards — Overlay-Karten mit Hintergrundbild
 *     └ Kinder Galerie Grid — 3×3 Fotogrid mit Lightbox
 *   UNTERKUNFT .......... Übersichtsseite (.unterkunft-*)
 *   ROOMS ............... Wohnungs-Karten auf der Startseite
 *   PONYZEIT ............ Intro-Section auf page-reiten.php
 *   HORSE CARDS ......... Pferde-Karten (quadratisch, Hover-Zoom)
 *   REITEN & PONYZEIT ... Angebote, Pferde, Gelände-Galerie, Panorama
 *   PRICE CARDS ......... Preiskarten
 *   KONTAKT ............. Info-Boxen, Kontaktseite-Styles
 *   BUCHUNG ............. easybooking Widget-Container
 *   TESTIMONIALS ........ Bewertungs-Karten
 *   ABOUT / ÜBER UNS .... Gastgeberin-Section, Versprechen, Video
 *   FOOTER .............. 4-Spalten Grid, Copyright-Zeile
 *   RESPONSIVE .......... Breakpoints: 1024px, 768px
 *   FLOATING BUTTON ..... Buchungs-Button + Panel (nur Startseite)
 *   CTA FULL ............ Vollbreiter CTA-Streifen
 *   NAV DROPDOWN ........ Desktop Dropdown-Menüs
 *   WOHNUNGS-DETAIL ..... Kamille/Lavendel/Melisse Detailseiten
 *   WOHNUNG GALERIE ..... Gutenberg-basierte Bildergalerie
 *   WOHNUNG MOBILE ...... Responsive für Wohnungsseiten
 *   WOHNUNG FARBEN ...... Farbthemes (Kamille=Gold, Lavendel=Lila, Melisse=Grün)
 *   ERLEBNISSE NAV ...... Sticky Anker-Navigation
 *   LEGAL ............... Impressum, Datenschutz, AGB Seiten
 *
 * FARB-SYSTEM:
 *   --kamille / --kamille2 / --kamille3  → Gold-Töne (Wohnung Kamille, CTAs)
 *   --lavendel / --lavendel2 / --lavendel3 → Lila-Töne (Wohnung Lavendel)
 *   --melisse / --melisse2 / --melisse3  → Grün-Töne (Wohnung Melisse)
 *   --ink / --ink2 / --stone             → Dunkle Texte
 *   --linen / --linen2 / --linen3       → Helle Hintergründe
 *
 * SCHRIFTEN:
 *   Playfair Display (serif) → Überschriften, Zitate
 *   Nunito (sans-serif)      → Fließtext, Buttons, Navigation
 */

/* Familiär & Natürlich */

/* ─────────────────────────────────────
   TOKENS
───────────────────────────────────── */
:root {
  --kamille:   #F5E882;
  --kamille2:  #D4C640;
  --kamille3:  #FBF5C0;
  --lavendel:  #C9B8E8;
  --lavendel2: #9B85CC;
  --lavendel3: #EDE7F9;
  --melisse:   #B8DDB0;
  --melisse2:  #6FB060;
  --melisse3:  #E4F4E0;
  --ink:       #2D2D2A;
  --ink2:      #4A4A45;
  --stone:     #6B6B5E;
  --linen:     #FAFAF7;
  --linen2:    #F2F2ED;
  --linen3:    #E5E5DC;
  --white:     #FFFFFF;
  --r:         8px;
}

/* ─────────────────────────────────────
   RESET
───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--linen);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─────────────────────────────────────
   UTILS
───────────────────────────────────── */
.serif    { font-family: 'Playfair Display', serif; }
.serif-i  { font-family: 'Playfair Display', serif; font-style: italic; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 48px; }

/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99999;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 48px 0;
  transition: background .4s, box-shadow .4s;
}
nav.solid {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  transition: color .4s;
  letter-spacing: -.01em;
  cursor: pointer;
  display: flex; align-items: center;
}
.nav-logo img {
  height: 64px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s;
}
nav.solid .nav-logo img { filter: brightness(0); }
nav.solid .nav-logo { color: var(--ink); }

.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 17px; letter-spacing: .03em;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  cursor: pointer; transition: color .2s;
}
nav.solid .nav-links a { color: var(--stone); }
.nav-links a:hover { color: var(--kamille2); }
nav.solid .nav-links a:hover { color: var(--kamille2); }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links li.active > a { color: var(--kamille2); }
nav.solid .nav-links .current-menu-item > a,
nav.solid .nav-links .current_page_item > a,
nav.solid .nav-links li.active > a { color: var(--kamille2); }

.nav-cta {
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink) !important;
  background: var(--kamille);
  padding: 10px 22px;
  border-radius: 50px;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--kamille2); transform: translateY(-1px); }
nav.solid .nav-cta { background: var(--kamille); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: all .3s;
}
nav.solid .burger span { background: var(--ink); }

/* mobile */
.mob {
  display: none; position: fixed; inset: 0; z-index: 100000;
  background: var(--white); flex-direction: column;
  padding: 80px 40px 40px;
  overflow-y: auto;
}
.mob.open { display: flex; }
.mob-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 24px;
  cursor: pointer; color: var(--stone);
}
.mob ul { list-style: none; width: 100%; }
.mob ul li a {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--linen3);
  cursor: pointer; text-decoration: none;
}
.mob ul li a:hover { color: var(--kamille2); }
.mob-cta {
  display: block;
  margin-top: 24px;
  background: var(--kamille);
  color: var(--ink) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: center;
  padding: 16px 24px;
  border-radius: 50px;
  border-bottom: none !important;
  letter-spacing: .02em;
}

/* Mobile Wohnungs-Unterlinks: eingerückt, in Wohnungsfarbe */
.mob-sub { padding-left: 16px; }
.mob-sub-link {
  font-size: 15px !important;
  border-bottom: 1px solid var(--linen3);
}
.mob-sub-kamille  { color: var(--kamille2) !important; }
.mob-sub-lavendel { color: var(--lavendel2) !important; }
.mob-sub-melisse  { color: var(--melisse2) !important; }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  transform: translateZ(0);
}

.hero-bg-img {
  position: absolute; inset: 0;
  background: #2D2D2A;
  background-size: cover;
  background-position: center 40%;
  will-change: opacity;
  transform: translateZ(0);
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.30) 40%,
    rgba(0,0,0,.50) 75%,
    rgba(0,0,0,.68) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.35) 0%, transparent 65%);
}

.hero-credit {
  position: absolute; bottom: 16px; right: 20px; z-index: 4;
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

.hero-content {
  position: relative; z-index: 3;
  padding: 220px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.hero-text { max-width: 1000px; padding-bottom: 0; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: var(--kamille); border-radius: 2px;
}
.hero-eyebrow span {
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  font-weight: 600;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.0vw, 62px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; color: var(--kamille); }

.hero-sub {
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,.88);
  line-height: 1.75; margin-bottom: 36px;
  max-width: 720px;
  hyphens: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  background: var(--kamille); color: var(--ink);
  font-size: 14px; font-weight: 700;
  letter-spacing: .02em;
  padding: 14px 28px; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  border-radius: 50px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--kamille2); transform: translateY(-2px); }

.btn-ghost-w {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: 14px; font-weight: 600;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50px;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  transition: all .2s;
}
.btn-ghost-w:hover { border-color: rgba(255,255,255,.7); color: white; background: rgba(255,255,255,.18); }

/* Hero Widget */
.hero-widget {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255,255,255,.97);
  padding: 24px 22px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  box-sizing: border-box;
  overflow: hidden;
  align-self: flex-end;
  margin-bottom: 0;
}
.hw-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--ink);
  margin-bottom: 16px;
}
.hw-field { margin-bottom: 10px; }
.hw-field label {
  display: block; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--stone); font-weight: 700; margin-bottom: 5px;
}
.hw-field input, .hw-field select {
  width: 100%; padding: 10px 8px;
  border: 2px solid var(--linen3);
  border-radius: 6px;
  font-size: 13px; font-family: 'Nunito', sans-serif;
  color: var(--ink); background: var(--linen);
  outline: none; transition: border-color .2s;
  box-sizing: border-box; min-width: 0;
}
.hw-field input:focus, .hw-field select:focus { border-color: var(--kamille2); }
.hw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; overflow: visible; }
.hw-btn {
  width: 100%; padding: 13px;
  background: var(--ink); color: var(--white);
  border: none; font-size: 13px;
  font-weight: 700; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  border-radius: 6px;
  transition: background .2s; margin-top: 6px;
}
.hw-btn:hover { background: var(--melisse2); }
.hw-note {
  text-align: center; font-size: 11px;
  color: var(--stone); margin-top: 9px;
}

/* Scroll Indikator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer;
  animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  margin-top: -4px;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ─────────────────────────────────────
   TRUST STRIP
───────────────────────────────────── */
.trust {
  background: var(--ink);
  display: flex; justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  padding: 18px 36px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-v {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px;
  color: var(--kamille); display: block; margin-bottom: 3px;
}
.trust-l {
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  font-weight: 600;
}

/* ─────────────────────────────────────
   SECTIONS
───────────────────────────────────── */
.sec { padding: 64px 0; }
.sec-sm { padding: 40px 0; }
.bg-linen { background: var(--linen); }
.bg-linen2 { background: var(--linen2); }
.bg-white { background: var(--white); }
.bg-ink { background: var(--ink); }
.bg-kamille { background: var(--kamille3); }
.bg-lavendel { background: var(--lavendel3); }
.bg-melisse { background: var(--melisse3); }

.sec-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.sec-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--kamille2); border-radius: 2px;
}
.sec-eyebrow span {
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--stone);
  font-weight: 700;
}
.sec-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -.01em; color: var(--ink);
  margin-bottom: 18px;
}
.sec-h em { font-style: italic; color: var(--kamille2); }
.sec-p {
  font-size: 16px; font-weight: 400;
  color: var(--stone); line-height: 1.85;
  max-width: 520px;
}

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn-ink {
  background: var(--ink); color: var(--white);
  font-size: 13px; font-weight: 700;
  padding: 13px 26px; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  border-radius: 50px;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; justify-content: center;
  align-self: flex-start;
  text-decoration: none;
}
.btn-ink:hover { background: var(--ink2); transform: translateY(-1px); }

.btn-gold {
  background: var(--kamille); color: var(--ink);
  font-size: 13px; font-weight: 700;
  padding: 13px 26px; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  border-radius: 50px;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; justify-content: center;
  text-align: center;
}
.btn-gold:hover { background: var(--kamille2); transform: translateY(-1px); }

.btn-outline-ink {
  background: transparent; color: var(--ink);
  font-size: 13px; font-weight: 700;
  padding: 12px 26px;
  border: 2px solid var(--ink);
  border-radius: 50px;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  transition: all .2s; display: inline-block;
}
.btn-outline-ink:hover { background: var(--ink); color: var(--white); }

.btn-ghost-ink {
  background: transparent; color: var(--stone);
  font-size: 13px; font-weight: 600;
  padding: 12px 0;
  border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.btn-ghost-ink:hover { color: var(--ink); }

/* ─────────────────────────────────────
   TWO COL
───────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-3-5 { display: grid; grid-template-columns: 3fr 5fr; gap: 72px; align-items: center; }
.two-col-5-4 { display: grid; grid-template-columns: 5fr 4fr; gap: 72px; align-items: start; }

/* ─────────────────────────────────────
   PAGE HERO (Unterseiten)
───────────────────────────────────── */
.page-hero {
  height: 52vh; min-height: 380px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding-top: 68px;
}
/* Zoom-In Effekt via pseudo element */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: pageHeroZoom 8s ease forwards;
  z-index: 0;
}
@keyframes pageHeroZoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}
/* Gradient overlay bleibt darunter */
.page-hero::after {
  z-index: 1;
}
.page-hero-text {
  position: relative;
  z-index: 2;
}
.ph-bg-default  { background: linear-gradient(135deg, #A8C5A0, #C8DFC4); }
.ph-bg-kamille  { background: linear-gradient(135deg, #F5E882, #FBF5C0); }
.ph-bg-lavendel { background: linear-gradient(135deg, #C9B8E8, #EDE7F9); }
.ph-bg-melisse  { background: linear-gradient(135deg, #B8DDB0, #E4F4E0); }
.ph-bg-reiten   { background: linear-gradient(135deg, #A8C8A0, #C4DCC0); }
.ph-bg-erlebnisse { background: linear-gradient(135deg, #B0CCA8, #CCE0C4); }
.ph-bg-ueber    { background: linear-gradient(135deg, #C8C8B8, #E0E0D0); }
.ph-bg-kontakt  { background: linear-gradient(135deg, #B8C8D8, #D4E0EC); }
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.4) 0%,
    rgba(0,0,0,.0) 35%,
    rgba(0,0,0,.0) 55%,
    rgba(0,0,0,.5) 100%
  );
  z-index: 1;
}
.page-hero-text {
  position: relative; z-index: 2;
  padding: 0 64px 52px;
}
.page-hero-eyebrow {
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.page-hero-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--kamille); border-radius: 2px;
}
.page-hero-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 58px); font-weight: 700;
  color: var(--white); line-height: 1.1;
  letter-spacing: -.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.page-hero-h em { font-style: italic; color: var(--kamille); }

/* ─────────────────────────────────────
   CONTENT SECTIONS
───────────────────────────────────── */
.content-sec { padding: 56px 0; background: var(--linen); }

/* Page hero overlay (reused across subpages) */
.ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}

/* Generic card styles */
.card-white {
  background: var(--white); border-radius: 12px;
  padding: 24px; border: 1px solid var(--linen3);
}
.card-white-sm {
  background: var(--white); border-radius: 8px;
  padding: 16px; border: 1px solid var(--linen3);
}
.card-white-lg {
  background: var(--white); border-radius: 8px;
  padding: 32px; border: 1px solid var(--linen3);
}
.card-linen {
  background: var(--linen); border-radius: 12px;
  padding: 24px; border: 1px solid var(--linen3);
}
.card-linen2 {
  background: var(--linen2); border-radius: 12px;
  padding: 32px;
}

/* Info list item */
.info-list-item {
  padding: 12px 16px;
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--linen3);
  font-size: 13px; color: var(--ink2);
}
.info-list-item-linen {
  padding: 12px 16px;
  background: var(--linen); border-radius: 8px;
  border: 1px solid var(--linen3);
  font-size: 13px; color: var(--ink2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-list-item-linen:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Pill row (checkboxes) */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--linen); border: 1px solid var(--linen3);
  border-radius: 50px; padding: 8px 16px;
  font-size: 14px; color: var(--ink2); cursor: pointer;
  transition: border-color .2s;
}
.pill:hover { border-color: var(--kamille2); }
.pill input[type="checkbox"] { accent-color: var(--kamille2); }

/* Cover image */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Video iframe wrapper */
.video-iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* Sec-p wide */
.sec-p-wide { max-width: 680px; }

/* Icon large */
.icon-xl { font-size: 28px; margin-bottom: 12px; }
.icon-xxl { font-size: 36px; }

/* Card title serif */
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: var(--ink); margin-bottom: 8px;
}
.card-title-sm {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--ink); margin-bottom: 10px;
}
.card-badge {
  font-size: 12px; color: var(--kamille2);
  font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 8px;
}
.card-text {
  font-size: 13.5px; color: var(--ink2);
  line-height: 1.6; margin: 0;
}
.card-meta {
  font-size: 12px; color: var(--stone); margin-top: 6px;
}
.card-info {
  font-size: 11px; color: var(--stone); letter-spacing: .05em;
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--linen3);
}
.card-link:hover { color: var(--kamille2); }

/* Stat card (Über uns) */
.stat-card {
  text-align: center;
  background: var(--white); border-radius: 12px;
  padding: 28px 20px; border: 1px solid var(--linen3);
}

/* ─────────────────────────────────────
   GASTRONOMIE GRID
───────────────────────────────────── */
.gastro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.gastro-grid-last { margin-bottom: 16px; }
.gastro-card {
  background: var(--white); border-radius: 12px;
  padding: 24px; border: 1px solid var(--linen3);
  display: flex; flex-direction: column; gap: 12px;
}
.gastro-cat {
  margin-bottom: 12px;
  font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--stone); font-weight: 700;
}

/* ─────────────────────────────────────
   ERLEBNISSE KARTEN GRIDS
───────────────────────────────────── */
.erlebnis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.erlebnis-grid-ausflug {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

/* ── Ausflug Image Cards ── */
.ausflug-card {
  position: relative; overflow: hidden; border-radius: 12px;
  aspect-ratio: 3 / 4; background: var(--linen3);
  background-size: cover; background-position: center;
  cursor: pointer;
}
.ausflug-card-title {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; color: #fff; font-weight: 700; font-size: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.ausflug-card-icon { font-size: 22px; }
.ausflug-card-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(0,0,0,.75); backdrop-filter: blur(6px);
  display: flex; align-items: flex-end;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.ausflug-card:hover .ausflug-card-overlay { transform: translateY(0); }
.ausflug-card:hover .ausflug-card-title { opacity: 0; }
.ausflug-card-overlay-inner {
  padding: 28px 22px; color: #fff; width: 100%;
}
.ausflug-card-icon-ol { font-size: 32px; margin-bottom: 10px; }
.ausflug-card-name {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; margin-bottom: 8px;
}
.ausflug-card-desc {
  font-size: 14px; line-height: 1.5; opacity: .9; margin-bottom: 10px;
}
.ausflug-card-info {
  font-size: 12px; opacity: .7; font-weight: 600;
}

/* Mobile: Overlay immer sichtbar, kompakt am unteren Rand */
@media (max-width: 768px) {
  .ausflug-card { aspect-ratio: 4 / 3; }
  .ausflug-card-title { display: none; }
  .ausflug-card-overlay {
    transform: translateY(0);
    align-items: flex-end;
    background: linear-gradient(transparent 20%, rgba(0,0,0,.75) 60%);
    backdrop-filter: none;
  }
  .ausflug-card-overlay-inner { padding: 16px 18px; }
  .ausflug-card-icon-ol { display: none; }
  .ausflug-card-name { font-size: 17px; margin-bottom: 4px; }
  .ausflug-card-desc { font-size: 13px; margin-bottom: 6px; }
  .ausflug-card-info { font-size: 11px; }
}
.erlebnis-hund-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.erlebnis-placeholder {
  background: var(--linen3); border-radius: 12px;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.erlebnis-hund-row { align-items: stretch; }
.erlebnis-img-wrap {
  border-radius: 12px; overflow: hidden; min-height: 380px;
}
.erlebnis-img-cover {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px;
}

/* ── Kinder Galerie Grid ── */
.kinder-galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.kinder-galerie-item {
  border-radius: 10px; overflow: hidden; cursor: pointer;
  aspect-ratio: 4 / 3;
}
.kinder-galerie-item.kinder-galerie-gross {
  grid-column: span 2; grid-row: span 2; aspect-ratio: auto;
}
.kinder-galerie-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.kinder-galerie-item:hover .kinder-galerie-img { transform: scale(1.06); }

/* ── Kinder Lightbox ── */
.kinder-lb {
  display: none; position: fixed; inset: 0; z-index: 100001;
  background: rgba(0,0,0,.88); align-items: center; justify-content: center;
}
.kinder-lb.active { display: flex; }
.kinder-lb-img { max-width: 90vw; max-height: 85vh; border-radius: 10px; object-fit: contain; }
.kinder-lb-close {
  position: absolute; top: 18px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 40px; cursor: pointer; line-height: 1;
}
.kinder-lb-prev, .kinder-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; color: #fff;
  font-size: 48px; cursor: pointer; padding: 8px 16px;
  border-radius: 8px; line-height: 1; backdrop-filter: blur(4px);
}
.kinder-lb-prev { left: 20px; }
.kinder-lb-next { right: 20px; }

.feat-list { list-style: none; }
.feat-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--linen3);
  font-size: 15px; color: var(--ink2);
}
.feat-item:last-child { border-bottom: 1px solid var(--linen3); }
.feat-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--melisse3); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-check svg { width: 10px; height: 10px; color: var(--melisse2); }

/* ─────────────────────────────────────
   UNTERKUNFT ÜBERSICHTSSEITE
───────────────────────────────────── */

/* Intro-Bereich: zentriert, schmale Spalte */
.unterkunft-intro { background: var(--white); padding: 60px 0; }
.unterkunft-intro-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.unterkunft-intro-inner .sec-eyebrow { justify-content: center; }
.unterkunft-intro-inner .sec-eyebrow::after {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--kamille2); border-radius: 2px;
}
.unterkunft-intro-inner .sec-p { margin-left: auto; margin-right: auto; }

/* Jede Wohnungs-Section */
.unterkunft-sec { padding: 64px 0; }
.unterkunft-two-col { align-items: center; gap: 72px; }

/* Bild-Wrapper mit festem Seitenverhältnis */
.unterkunft-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

/* Etagenbezeichnung-Badge (Erdgeschoss / 1. OG) */
.unterkunft-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 16px; color: var(--ink);
}
.unterkunft-badge-kamille  { background: var(--kamille3); }
.unterkunft-badge-lavendel { background: var(--lavendel3); }
.unterkunft-badge-melisse  { background: var(--melisse3); }

/* Wohnungsname & Sterne */
.unterkunft-name { margin-bottom: 8px; }
.unterkunft-stars { color: var(--kamille2); }

/* Kursiver Untertitel unter dem Namen */
.unterkunft-tagline {
  font-style: italic; color: var(--stone);
  margin-bottom: 20px; font-size: 15px;
}

/* Beschreibungstext */
.unterkunft-desc { margin-bottom: 24px; }

/* Ausstattungs-Kacheln Grid (2 Spalten) */
.unterkunft-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}

/* Einzelne Ausstattungs-Kachel */
.unterkunft-feat {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--linen3);
  font-size: 13px; color: var(--ink2);
}
.unterkunft-feat-white { background: var(--white); }
.unterkunft-feat-linen { background: var(--linen); }

/* Buttons unter den Ausstattungskacheln */
.unterkunft-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Gemeinsame Ausstattung Section */
.unterkunft-inkl { background: var(--white); padding: 64px 0; }
.unterkunft-inkl-header {  margin-bottom: 48px; }
.unterkunft-inkl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.unterkunft-inkl-item {
  padding: 16px 20px;
  background: var(--linen);
  border-radius: 8px;
  font-size: 14px; color: var(--ink2); font-weight: 600;
}

/* Responsive: Ausstattungskacheln auf Mobile 1 Spalte */
@media (max-width: 768px) {
  .unterkunft-feats { grid-template-columns: 1fr; }
  .unterkunft-btns { flex-direction: column; }
  .unterkunft-btns a { text-align: center; box-sizing: border-box; }
}

/* ─────────────────────────────────────
   ROOMS
───────────────────────────────────── */
.rooms-list { display: flex; flex-direction: column; gap: 16px; }
.room {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--linen3);
  transition: box-shadow .25s, transform .25s;
  cursor: pointer;
}
.room:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-2px); }
.room-img { position: relative; overflow: hidden; }
.room-img-inner { height: 280px; transition: transform .4s ease; }
.room:hover .room-img-inner { transform: scale(1.04); }
.ri-kamille  { background: linear-gradient(135deg, #F5E882, #FBF5C0); }
.ri-lavendel { background: linear-gradient(135deg, #C9B8E8, #EDE7F9); }
.ri-melisse  { background: linear-gradient(135deg, #B8DDB0, #E4F4E0); }
.room-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--white);
  font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--stone);
  padding: 5px 12px; border-radius: 50px; font-weight: 700;
}
.room-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.room-stars { color: var(--kamille2); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 6px;
}
.room-tagline { font-size: 14px; color: var(--stone); font-style: italic; margin-bottom: 22px; }
.room-feats { list-style: none; margin-bottom: 28px; }
.room-feat {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--linen2);
  font-size: 14px; color: var(--ink2);
}
.room-feat:last-child { border-bottom: none; }
.room-feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--melisse2); flex-shrink: 0; }
.room-actions { display: flex; gap: 14px; align-items: center; }

/* ─────────────────────────────────────
   PONYZEIT
───────────────────────────────────── */
.pony-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pony-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px; gap: 8px;
}
.pp-1 { background: var(--melisse3); grid-row: 1/3; border-radius: var(--r); }
.pp-2 { background: var(--kamille3); border-radius: var(--r); }
.pp-3 { background: var(--lavendel3); border-radius: var(--r); }
.pony-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 32px; }
.price-block { border-left: 3px solid var(--kamille2); padding: 4px 0 4px 16px; border-radius: 0; }
.pb-price { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--ink2); line-height: 1; margin-bottom: 4px; }
.pb-label { font-size: 12px; color: var(--stone); line-height: 1.5; }

/* ─────────────────────────────────────
   HORSE CARDS
───────────────────────────────────── */
.horse-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.horse-card { background: var(--white); border-radius: var(--r); border: 1px solid var(--linen3); overflow: hidden; }
.horse-photo { aspect-ratio: 1 / 1; transition: transform .4s ease; }
.horse-card:hover .horse-photo { transform: scale(1.08); }
.hph-klara  { background: linear-gradient(135deg, var(--melisse3), var(--melisse)); }
.hph-emma   { background: linear-gradient(135deg, var(--kamille3), var(--kamille)); }
.hph-blida  { background: linear-gradient(135deg, var(--lavendel3), var(--lavendel)); }
.horse-body { padding: 22px; }
.horse-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ink); margin-bottom: 3px; }
.horse-breed { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--melisse2); margin-bottom: 14px; font-weight: 700; }
.horse-facts { font-size: 14px; color: var(--stone); line-height: 1.8; }
.horse-love { font-style: italic; font-size: 13.5px; color: var(--stone); line-height: 1.65; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--linen3); }

/* ─────────────────────────────────────
   REITEN & PONYZEIT
───────────────────────────────────── */

/* Intro: Text links, Hinweis-Box rechts */
.reiten-intro-col { margin-bottom: 0; }
.reiten-h  { margin-bottom: 20px; }
.reiten-p  { margin-bottom: 16px; }

/* Haftungshinweis unter dem Text */
.reiten-haftung {
  font-size: 12px; color: var(--stone);
  line-height: 1.7; margin-bottom: 28px;
}

/* Hinweis-Box (Wichtig + Buchung) */
.reiten-buchung-box {
  background: var(--linen2);
  border: 1px solid var(--linen3);
  border-radius: 8px;
  padding: 24px 26px;
}
.reiten-buchung-label {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--kamille2); font-weight: 700;
  margin-bottom: 14px;
}
/* Hinweis-Liste */
.reiten-hinweis-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.reiten-hinweis-list li { font-size: 14px; color: var(--ink2); }
.reiten-buchung-text {
  font-size: 13.5px; color: var(--stone);
  line-height: 1.7; margin-bottom: 16px;
}

/* ── Angebots-Section ── */
.reiten-angebote-sec { background: var(--linen); }
.reiten-angebote-eyebrow { margin-bottom: 12px; }
.reiten-angebote-h { margin-bottom: 12px; }
.reiten-angebote-intro { margin-bottom: 40px; }

/* 4 Angebots-Kacheln im Grid */
.reiten-angebote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

/* Einzelne Angebots-Kachel */
.reiten-angebot-card {
  background: var(--white);
  border-radius: 12px; padding: 28px;
  border: 1px solid var(--linen3);
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s;
}
.reiten-angebot-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); }

/* Hervorgehobene Kachel (Erlebnisnachmittag) */
.reiten-angebot-highlight {
  border-color: var(--kamille2);
  background: var(--kamille3);
}

.reiten-angebot-icon { font-size: 32px; }
.reiten-angebot-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px; color: var(--ink);
}
.reiten-angebot-dauer {
  font-size: 12px; color: var(--stone);
  letter-spacing: .04em;
}
.reiten-angebot-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.reiten-angebot-list li {
  font-size: 14px; color: var(--ink2);
  padding-left: 14px; position: relative;
}
.reiten-angebot-list li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--kamille2); font-weight: 700;
}
/* Preis am unteren Rand der Kachel */
.reiten-angebot-preis {
  font-family: 'Playfair Display', serif;
  font-size: 32px; color: var(--ink);
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--linen3);
}
.reiten-angebot-preis span { font-size: 14px; color: var(--stone); font-family: 'Nunito', sans-serif; }

/* ── Pferde-Section ── */
.reiten-pferde-sec { background: var(--white); }
.reiten-pferde-eyebrow { justify-content: center; margin-bottom: 12px; }
.reiten-pferde-h { text-align: center; margin-bottom: 8px; }
.reiten-pferde-intro { text-align: center; margin: 0 auto 40px; max-width: 560px; }

/* 4 Pferde: 2 Spalten auf Desktop, 1 auf Mobile */
.reiten-horse-grid { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 768px) {
  .reiten-horse-grid { grid-template-columns: 1fr !important; }
}

/* Farben für neue Pferde */
.hph-vroni     { background: linear-gradient(135deg, var(--linen2), var(--linen3)); }
.hph-gloeckchen{ background: linear-gradient(135deg, var(--kamille3), var(--kamille)); }

/* ── Reitplatz & Gelände Galerie ── */
.reiten-gelände-sec { background: var(--linen); }
.reiten-gelände-eyebrow { margin-bottom: 12px; }
.reiten-gelände-h { margin-bottom: 12px; }
.reiten-gelände-intro { margin-bottom: 40px; }

/* Galerie-Grid: erstes Bild groß, Rest klein */
.reiten-galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

/* Großes erstes Bild: streckt sich über 2 Spalten und 2 Zeilen */
.reiten-galerie-gross {
  grid-column: span 2;
  grid-row: span 2;
}

/* Einzelnes Galerie-Item */
.reiten-galerie-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--linen3);
}
.reiten-galerie-gross { aspect-ratio: auto; }

.reiten-galerie-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s ease;
}
.reiten-galerie-item:hover .reiten-galerie-img { transform: scale(1.04); }

/* Lightbox (Klick öffnet Vollbild) */
.reiten-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.88);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.reiten-lightbox-img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

/* Platzhalter wenn noch keine Fotos */
.reiten-galerie-placeholder {
  background: var(--white);
  border: 2px dashed var(--linen3);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  color: var(--stone);
}
.reiten-galerie-placeholder-icon { font-size: 48px; margin-bottom: 16px; }
.reiten-galerie-placeholder code {
  background: var(--linen2); padding: 2px 8px;
  border-radius: 4px; font-size: 13px;
}

@media (max-width: 768px) {
  .reiten-galerie-grid { grid-template-columns: 1fr 1fr; }
  .reiten-galerie-gross { grid-column: span 2; grid-row: span 1; }
}

/* ── Reitplatz Panoramabild ── */
.reiten-panorama {
  position: relative; cursor: pointer;
  border-radius: 12px; overflow: hidden;
  margin-bottom: 12px;
}
.reiten-panorama-img {
  width: 100%; height: 320px;
  object-fit: cover; display: block;
  transition: transform .3s ease;
}
.reiten-panorama:hover .reiten-panorama-img { transform: scale(1.02); }
.reiten-panorama-hint {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,.5); color: #fff;
  font-size: 12px; padding: 6px 12px;
  border-radius: 20px; pointer-events: none;
}

/* Galerie-Grid: 6 Fotos in 3 Spalten, kleinere Thumbnails */
.reiten-galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.reiten-galerie-item {
  border-radius: 8px; overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
}
.reiten-galerie-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s ease;
}
.reiten-galerie-item:hover .reiten-galerie-img { transform: scale(1.05); }

/* Lightbox mit Pfeilen */
.reiten-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
.reiten-lightbox-img {
  max-width: 80vw; max-height: 85vh;
  border-radius: 8px; object-fit: contain;
  display: block;
}
.reiten-lb-prev,
.reiten-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  font-size: 52px; line-height: 1;
  cursor: pointer; padding: 8px 20px;
  border-radius: 8px;
  transition: background .2s;
  z-index: 2;
}
.reiten-lb-prev { left: 20px; }
.reiten-lb-next { right: 20px; }
.reiten-lb-prev:hover,
.reiten-lb-next:hover { background: rgba(255,255,255,.3); }
.reiten-lb-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: #fff;
  font-size: 32px; cursor: pointer; line-height: 1;
  opacity: .7; transition: opacity .2s;
}
.reiten-lb-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .reiten-galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .reiten-panorama-img { height: 200px; }
  .reiten-lb-prev { left: 8px; font-size: 36px; padding: 6px 14px; }
  .reiten-lb-next { right: 8px; font-size: 36px; padding: 6px 14px; }
  .reiten-lightbox-img { max-width: 95vw; }
}

/* ─────────────────────────────────────
   PRICE CARDS
───────────────────────────────────── */
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.price-card { border: 2px solid var(--linen3); border-radius: var(--r); padding: 28px; transition: border-color .2s; }
.price-card:hover { border-color: var(--kamille2); }
.pc-name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--ink); margin-bottom: 4px; }
.pc-dur { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; font-weight: 700; }
.pc-price { font-family: 'Playfair Display', serif; font-size: 44px; color: var(--ink2); line-height: 1; margin-bottom: 12px; }
.pc-price span { font-size: 20px; color: var(--stone); }
.pc-desc { font-size: 14px; color: var(--stone); line-height: 1.7; }

/* ─────────────────────────────────────
   KONTAKT
───────────────────────────────────── */
.kontakt-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); margin-bottom: 7px; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--linen3); border-radius: 8px;
  font-size: 15px; font-family: 'Nunito', sans-serif;
  color: var(--ink); background: var(--white);
  outline: none; transition: border-color .2s;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--melisse2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; overflow: hidden; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr !important; }
}
.info-box { background: var(--white); border: 1px solid var(--linen3); border-radius: var(--r); padding: 28px; }
.info-box + .info-box { margin-top: 12px; }
.ib-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--melisse2); margin-bottom: 14px; font-weight: 700; }
.ib-row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--linen3); font-size: 14px; color: var(--ink2); }
.ib-row:last-child { border-bottom: none; }
.ib-ico { color: var(--stone); flex-shrink: 0; margin-top: 2px; }

/* ─────────────────────────────────────
   KONTAKTSEITE
───────────────────────────────────── */

/* Einleitungstext über dem Formular */
.kontakt-intro { margin-bottom: 32px; }

/* Datumsfelder: kein overflow-clip nötig, box-sizing reicht */
.kontakt-dates { overflow: hidden; }

/* Erfolgsmeldung nach dem Absenden */
.kontakt-success {
  background: var(--linen2);
  border-left: 3px solid var(--kamille2);
  padding: 20px 24px;
  font-size: 15px; color: var(--ink2);
}

/* Fehlermeldung */
.kontakt-error {
  background: #fdf0ef;
  border-left: 3px solid #e05;
  padding: 16px 20px;
  font-size: 14px; color: #c00;
  margin-bottom: 20px;
}

/* DSGVO-Checkbox Bereich */
.kontakt-dsgvo { margin-top: 16px; }
.kontakt-dsgvo-label {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--linen2);
  padding: 14px 16px; border-radius: 8px; cursor: pointer;
}
.kontakt-dsgvo-check { margin-top: 2px; flex-shrink: 0; }
.kontakt-dsgvo-text { font-size: 13px; color: var(--ink2); line-height: 1.6; }
.kontakt-dsgvo-link { color: var(--kamille2); text-decoration: underline; }

/* Absende-Button: volle Breite */
.kontakt-submit {
  width: 100%; padding: 16px;
  font-size: 12px; letter-spacing: .1em;
  display: block; text-align: center;
  border: none; cursor: pointer; margin-top: 20px;
}

/* Hinweistext unter dem Button */
.kontakt-hinweis {
  text-align: center; font-size: 11.5px;
  color: var(--stone); margin-top: 12px;
}

/* Links in den Info-Boxen */
.kontakt-link { color: var(--ink2); }
.kontakt-link:hover { color: var(--kamille2); }

/* Kleintext (z.B. "Zwischen Parsberg & Velburg") */
.kontakt-sub { font-size: 12px; color: var(--stone); }

/* Google Maps Wrapper */
.kontakt-maps-wrap {
  margin-top: 12px; overflow: hidden; border-radius: 2px;
}

/* Platzhalter wenn noch kein Maps-iFrame eingetragen */
.kontakt-maps-placeholder {
  background: var(--linen3);
  height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--stone);
  margin-top: 12px; border: 1px solid var(--linen3);
}
.kontakt-maps-hint { font-size: 11.5px; opacity: .6; }

/* ─────────────────────────────────────
   BUCHUNG
───────────────────────────────────── */

.buchung-hero { padding-top: 62px; }
.buchung-sec { padding-top: 40px; padding-bottom: 80px; }
.buchung-h { margin-bottom: 16px; }
.buchung-intro { margin-bottom: 36px; max-width: 560px; }

/* easybooking Widget — scrollt mit der Seite, volle Breite */
#ebFrontEndFrame { width: 100%; }

.buchung-hinweis-titel { color: var(--ink); }

/* Fallback-Box: direkte Anfrage */
.buchung-fallback {
  background: var(--white);
  border: 1px solid var(--linen3);
  padding: 40px;
  max-width: 560px;
}
.buchung-fallback-eyebrow { margin-bottom: 12px; }
.buchung-fallback-h { font-size: 28px; margin-bottom: 14px; }
.buchung-fallback-text { margin-bottom: 24px; font-size: 14px; }
.btab { padding: 12px 24px; font-size: 13px; font-weight: 700; color: var(--stone); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all .2s; background: none; border-top: none; border-left: none; border-right: none; font-family: 'Nunito', sans-serif; }
.btab.active { color: var(--ink); border-bottom-color: var(--kamille2); }
.btab:hover { color: var(--ink2); }

/* ─────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi { background: var(--white); border: 1px solid var(--linen3); border-radius: var(--r); padding: 32px; }
.testi-stars { color: var(--kamille2); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 16px; color: var(--ink2); line-height: 1.65; margin-bottom: 18px; }
.testi-author { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); font-weight: 700; }

/* ─────────────────────────────────────
   ÜBER UNS
───────────────────────────────────── */

/* Intro: Foto links, Text rechts */
.ueber-intro-col { align-items: center; gap: 72px; }

/* Foto-Wrapper: festes Seitenverhältnis mit Name-Tag */
.ueber-foto-wrap {
  position: relative;
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 3 / 4; max-height: 560px;
}
.ueber-foto-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
/* Name-Tag über Verlauf am unteren Bildrand */
.ueber-foto-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}
.ueber-foto-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: white; margin-bottom: 2px;
}
.ueber-foto-rolle {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--kamille); font-weight: 600;
}

/* Texte */
.ueber-h  { margin-bottom: 24px; }
.ueber-p  { margin-bottom: 16px; }
.ueber-zitat {
  margin-bottom: 36px;
  font-style: italic; color: var(--ink2);
}

/* Stat-Kacheln (3 × 1fr) */
.ueber-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 40px;
}
.ueber-stat {
  padding: 20px; border-radius: 8px; text-align: center;
}
.ueber-stat-kamille  { background: var(--kamille3); }
.ueber-stat-melisse  { background: var(--melisse3); }
.ueber-stat-lavendel { background: var(--lavendel3); }
.ueber-stat-zahl {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 42px; color: var(--ink);
}
/* ∞ in Gold */
.ueber-stat-gold { color: var(--kamille2); }
.ueber-stat-label {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--stone); margin-top: 4px;
}

/* Versprechen-Section */
.ueber-versprechen-sec { background: var(--linen); }
.ueber-versprechen-header { text-align: center; margin-bottom: 48px; }
.ueber-center { justify-content: center; text-align: center; }
.ueber-versprechen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.ueber-card-text { font-size: 14px; }

/* Video-Section */
.ueber-video-sec { background: var(--white); }
.ueber-video-col { align-items: center; }
.ueber-video-h    { margin-bottom: 20px; }
.ueber-video-text { margin-bottom: 32px; }

/* YouTube 16:9 Wrapper */
.ueber-video-wrap {
  position: relative; width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.ueber-video-iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* ─────────────────────────────────────
   ABOUT
───────────────────────────────────── */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-photo { position: relative; height: 560px; background: var(--linen3); border-radius: var(--r); overflow: hidden; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer { background: var(--ink); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 4px; }
.footer-logo-sub { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--kamille); margin-bottom: 16px; font-weight: 700; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.8; max-width: 260px; }

/* Landsichten Auszeichnungs-Siegel */
.footer-seal { margin-top: 20px; }
.footer-seal-link {
  display: inline-flex; flex-direction: column;
  align-items: flex-start; gap: 6px;
  text-decoration: none; opacity: .75; transition: opacity .2s;
}
.footer-seal-link:hover { opacity: 1; }
.footer-seal-img { width: 80px; height: auto; display: block; }
.footer-seal-label { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.footer-h { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,.45); padding: 5px 0; cursor: pointer; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; color: rgba(255,255,255,.22); }
.footer-bottom a { color: rgba(255,255,255,.28); cursor: pointer; transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
/* Rechtliche Links im Footer-Bottom (Impressum, Datenschutz, AGB) */
.footer-bottom-links { display: flex; gap: 20px; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; align-items: flex-start; padding: 160px 40px 60px; }
  .hero-widget { width: 100%; max-width: 420px; margin-bottom: 0; }
  .two-col, .two-col-3-5, .two-col-5-4, .about-wrap, .kontakt-wrap, .pony-wrap { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .horse-grid { grid-template-columns: 1fr; }
  .room { grid-template-columns: 1fr; }
  .room-img-inner { height: 220px; }
  .price-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .container, .container-sm { padding: 0 20px; }
  .hero { height: 100svh; min-height: 0; }
  .hero-content { padding: 160px 22px 48px; gap: 20px; flex-direction: column; }
  .hero-h1 { font-size: clamp(28px, 8vw, 38px) !important; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns a { text-align: center; box-sizing: border-box; }
  .hero-credit { display: none; }
  .hero-widget { display: none; }
  .hero-widget-mobile { display: block !important; }
  .hero-scroll { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero-text { padding: 0 22px 36px; }
  .trust { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 12px 22px; }
  .trust-item:last-child { border-bottom: none; }
  .sec { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .horse-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────
   FLOATING BUCHUNGS-BUTTON (Startseite)
───────────────────────────────────── */

/* Fixer Button unten rechts */
.float-book-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  background: var(--kamille);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s, background .2s;
  user-select: none;
}
.float-book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.float-book-btn.active { background: var(--ink); color: var(--white); }

/* Panel fährt von unten hoch */
.float-book-panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 499;
  background: var(--white);
  border-top: 1px solid var(--linen3);
  box-shadow: 0 -8px 40px rgba(0,0,0,.12);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 28px 0;
}
.float-book-panel.open { transform: translateY(0); }

/* Inhaltsbereich */
.float-book-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Header mit Titel und X */
.float-book-header {
  display: flex; align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.float-book-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--ink);
  text-align: center;
}
.float-book-close {
  background: none; border: none;
  font-size: 20px; color: var(--stone);
  cursor: pointer; line-height: 1;
  padding: 4px 8px;
  transition: color .2s;
  position: absolute; right: 0;
}
.float-book-close:hover { color: var(--ink); }

/* Felder nebeneinander */
.float-book-fields,
.float-search-row {
  display: flex; gap: 12px; flex: 1; align-items: flex-end;
}
.float-search-field { display: flex; flex-direction: column; gap: 4px; flex: 1; }

/* ── easybooking Smallsearch im Float-Panel ── */
#ebSmallSearch { width: 100%; display: flex; justify-content: center; }
#ebSmallSearch h3,
#ebSmallSearch .eb_smallsearch h3 { display: none !important; }
#ebSmallSearch iframe { width: 100% !important; border: none !important; }


.float-book-label {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone); font-weight: 700;
}
.float-book-input {
  padding: 10px 12px;
  border: 2px solid var(--linen3);
  border-radius: 8px;
  font-size: 14px; font-family: 'Nunito', sans-serif;
  color: var(--ink); outline: none;
  transition: border-color .2s;
}
.float-book-input:focus { border-color: var(--kamille2); }

/* Submit Button */
.float-book-submit {
  white-space: nowrap;
  padding: 12px 24px !important;
  width: 100%;
  margin-top: 12px;
}

/* Hinweistext */
.float-book-note {
  font-size: 11px; color: var(--stone);
  width: 100%; text-align: center;
  margin-top: 4px;
}



───────────────────────────────────── */

/* Hero Crossfade zweites Bild (JS erzeugt es dynamisch) */
.hero-bg-crossfade {
  position: absolute; inset: 0;
  background-size: cover;
  opacity: 0;
  transition: opacity 2s ease;
}

/* Allgemeiner Abstand unter Beschreibungstext */
.fp-desc { margin-bottom: 32px; }

/* Zentrierter Text (Sektion-Header) */
.fp-center { justify-content: center; text-align: center; }

/* ── Pony-Foto-Grid (1 großes Bild + 2 kleine) ── */
.fp-pony-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 4px;
}
.fp-pony-photo {
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}
/* Großes Foto: streckt sich über beide Zeilen */
.fp-pony-main { grid-row: 1 / 3; }

/* ── Familien-Section ── */
.fp-familie-sec { background: var(--white); }
.fp-familie-header { margin-bottom: 48px; }
.fp-familie-text { text-align: center; margin: 0 auto; max-width: 600px; }

/* 3 Bilder nebeneinander */
.fp-familie-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.fp-familie-photo {
  height: 300px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

/* Highlights-Kacheln unter den Bildern */
.fp-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  margin-top: 4px;
}
.fp-highlight-item {
  padding: 18px 20px;
  background: var(--linen);
  border: 1px solid var(--linen3);
  text-align: center;
  font-size: 13.5px; color: var(--ink2);
}

/* ── Wohnungs-Slider ── */
.fp-wohn-slider {
  position: relative;
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
}
.fp-wohn-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}
/* Dot-Navigation am unteren Rand des Sliders */
.fp-wohn-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.fp-wohn-dot {
  width: 10px; height: 10px;
  border-radius: 50%; border: none;
  cursor: pointer; background: white;
  opacity: 0.4; padding: 0;
  transition: opacity .3s;
}
.fp-wohn-dot.active { opacity: 1; }

/* Text neben dem Slider */
.fp-wohn-text { display: flex; flex-direction: column; justify-content: center; }
.fp-wohn-h { margin-bottom: 20px; }

/* ── Region / Thumbnail-Galerie ── */
.fp-region-sec { background: var(--white); }
.fp-region-h { margin-bottom: 20px; }

/* Großes Hauptbild */
.fp-region-main {
  border-radius: 8px;
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: background-image .4s ease;
  margin-bottom: 10px;
}
/* Thumbnail-Reihe */
.fp-region-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.fp-region-thumb {
  height: 70px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 3px solid transparent;
  box-sizing: border-box;
  transition: border-color .2s;
}
.fp-region-thumb.active-thumb { border-color: var(--kamille2); }

/* ── Abschluss CTA mit Hintergrundbild ── */
.fp-cta-wrap {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fp-cta-bg {
  position: absolute; inset: 0;
  background: var(--ink2);
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
.fp-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,9,4,.72) 0%, rgba(30,28,12,.55) 100%);
}
.fp-cta-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 100px 40px;
  max-width: 780px;
}
.fp-cta-eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.fp-cta-eyebrow span { color: var(--kamille); opacity: .9; }
.fp-cta-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700; font-style: italic;
  color: white; margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.fp-cta-text {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
}
.fp-cta-btns {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}

/* easybooking Smallsearch im Hero-Widget */
.eb_smallsearch { width: 100%; }
.eb_smallsearch .arrival,
.eb_smallsearch .departure {
  float: none; width: 100%;
  margin-bottom: 8px; min-width: unset;
}
.eb_smallsearch .arrival input,
.eb_smallsearch .departure input {
  width: 100%; box-sizing: border-box;
  padding: 10px 8px;
  border: 2px solid var(--linen3);
  border-radius: 6px;
  font-size: 12px; font-family: 'Nunito', sans-serif;
  color: var(--ink); background: var(--linen);
  outline: none; height: auto; line-height: normal;
}
.eb_smallsearch form div.search .sendButton {
  width: 100%; box-sizing: border-box;
  padding: 13px; margin: 6px 0 0;
  background: var(--ink); color: var(--white);
  border: none; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer; float: none;
  transition: background .2s;
}
.eb_smallsearch form div.search .sendButton:hover { background: var(--melisse2); }
.eb_smallsearch h3 { display: none; } /* Titel ausblenden, wir haben hw-title */
.smallsearchForm { display: block; width: 100%; }

/* ── Mobile Widget (unter dem Hero) ── */
.hero-widget-mobile {
  display: none; /* wird per CSS auf Mobile eingeblendet */
  background: var(--linen);
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--linen3);
  box-sizing: border-box;
  width: 100%; overflow: hidden;
}
.hwm-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; color: var(--ink); margin-bottom: 14px;
}
.hwm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 10px; width: 100%;
}
.hwm-label {
  display: block;
  font-size: 9.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 5px;
}
.hwm-input {
  width: 100%; box-sizing: border-box;
  padding: 9px 8px;
  border: 1px solid var(--linen3);
  font-size: 12px; font-family: 'Nunito', sans-serif;
  color: var(--ink); background: var(--white);
  outline: none; border-radius: 6px;
}
.hwm-btn {
  display: block; text-align: center;
  padding: 13px;
  background: var(--ink); color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: 6px;
}

/* Responsive Startseite */
@media (max-width: 768px) {
  .fp-familie-photos { grid-template-columns: 1fr; }
  .fp-familie-photo { height: 220px; }
  .fp-pony-photos { grid-template-columns: 1fr; grid-template-rows: auto; }
  .fp-pony-main { grid-row: auto; }
  .fp-pony-photo { height: 200px; }
  .fp-cta-content { padding: 60px 22px; }
  .fp-cta-bg { background-attachment: scroll; }
  .hero-widget-mobile { display: block; }
  .float-book-btn {
    width: 48px; height: 48px;
    padding: 0;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    bottom: 20px; right: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .2s, box-shadow .2s, background .2s;
  }
  .float-book-btn.visible { opacity: 1; pointer-events: auto; }
  .float-book-btn .float-btn-text { display: none; }
  .float-book-panel { padding: 20px 0; }
  .float-book-inner { padding: 0 20px; }
  .float-book-fields { flex-direction: column; gap: 8px; }
  .float-book-title { font-size: 15px; }
}

/* ─────────────────────────────────────
   CTA FULL
───────────────────────────────────── */
.cta-full {
  background: var(--linen2);
  padding: 64px 48px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  position: relative; overflow: hidden;
}
.cta-full .sec-h { margin-bottom: 14px; }
.cta-full .sec-p { text-align: center; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─────────────────────────────────────
   NAV DROPDOWN
───────────────────────────────────── */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  list-style: none;
  padding: 8px;
  min-width: 200px;
  z-index: 200;
  padding-top: 16px;
  margin-top: 0;
}
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px !important;
  color: var(--ink) !important;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: .02em !important;
  text-transform: none !important;
  transition: background .15s;
}
.nav-dropdown li a:hover {
  background: var(--linen);
  color: var(--ink) !important;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--white);
  border-radius: 2px;
}

/* ─────────────────────────────────────
   WOHNUNGS-DETAILSEITEN (Kamille, Lavendel, Melisse)
   Alle drei Seiten nutzen dieselben Klassen,
   nur das Farbthema (.theme-lavendel / .theme-melisse) variiert.
───────────────────────────────────── */

/* Hero: Hintergrundbild wird per style="" gesetzt (wohnungsspezifisch) */
.wohn-hero { padding-top: 62px; }
.wohn-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: pageHeroZoom 8s ease forwards;
  z-index: 0;
}

/* Beschreibung + Grundriss: zwei Spalten, oben ausgerichtet */
.wohn-desc-col { align-items: start; gap: 64px; margin-bottom: 40px; }

/* Wohnungsname & Tagline */
.wohn-name    { margin-bottom: 8px; }
.wohn-tagline { font-style: italic; color: var(--stone); margin-bottom: 20px; font-size: 15px; }
.wohn-p       { margin-bottom: 16px; }

/* Grundriss-Bild */
.wohn-grundriss-label { margin-bottom: 12px; }
.wohn-grundriss-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* Ausstattungs-Bereich (Trennlinie oben, volle Breite) */
.wohn-ausstattung-wrap {
  border-top: 1px solid var(--linen3);
  padding-top: 32px;
}
.wohn-ausstattung-label { margin-bottom: 16px; }

/* Galerie + Video Section */
.wohn-galerie-sec { background: var(--linen); padding: 56px 0; }
.wohn-galerie-label { margin-bottom: 12px; }
.wohn-galerie-h { margin-bottom: 24px; }

/* Gutenberg-Galerie versteckt (JS liest Bilder daraus aus) */
.wohn-galerie-source { display: none; }

/* Hauptbild der Galerie */
.wohn-galerie-main-wrap {
  border-radius: 12px; overflow: hidden;
  margin-bottom: 8px; background: var(--linen3);
}
.wohn-galerie-main {
  width: 100%; height: 400px;
  object-fit: cover; display: block;
  cursor: pointer; transition: opacity .3s ease;
}

/* Thumbnail-Reihe unter dem Hauptbild */
.wohn-galerie-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 6px;
}

/* Einzelner Thumbnail (wird per JS erstellt) */
.gal-thumb {
  height: 72px; border-radius: 6px;
  overflow: hidden; cursor: pointer;
  border: 3px solid transparent;
  opacity: .65; transition: all .2s;
  box-sizing: border-box;
}
.gal-thumb-active {
  border-color: var(--kamille2);
  opacity: 1;
}
/* Lavendel & Melisse: aktiver Thumb in Wohnungsfarbe */
.theme-lavendel .gal-thumb-active { border-color: var(--lavendel2); }
.theme-melisse  .gal-thumb-active { border-color: var(--melisse2); }

/* Platzhalter wenn noch keine Bilder vorhanden */
.wohn-galerie-leer {
  display: none;
  padding: 40px; text-align: center;
  color: var(--stone); font-size: 14px;
}

/* Video-Wrapper: Hochformat (9:16) */
.wohn-video-h { margin-bottom: 24px; font-size: 22px; }
.wohn-video-wrap {
  position: relative; width: 100%;
  padding-bottom: 177.78%; /* 9:16 Seitenverhältnis */
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.wohn-video-iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* Poster-Overlay vor dem Video (Klick startet Autoplay) */
.wohn-video-poster {
  position: absolute; inset: 0;
  cursor: pointer; z-index: 2;
}
.wohn-video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.2);
}
.wohn-play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

/* Verfügbarkeitskalender auf Zimmerseiten */
.wohn-avail-sec {
  background: var(--white);
  padding: 48px 0;
}
.wohn-avail-sec .sec-h { text-align: center; }
.wohn-avail-sec .sec-p { text-align: center; margin-left: auto; margin-right: auto; }
.wohn-avail-sec #ebAvailability {
  margin-top: 24px;
  max-width: 100%;
  overflow-x: auto;
}
/* easybooking Availability Widget — CSS-Konflikt-Fixes */
#ebAvailability table { border-collapse: collapse; width: 100%; table-layout: fixed; }
#ebAvailability th,
#ebAvailability td { padding: 6px 4px; text-align: center; position: static; }
#ebAvailability caption,
#ebAvailability .eb-avail-month,
#ebAvailability h3,
#ebAvailability h4 {
  position: relative;
  display: block;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--ink);
}
#ebAvailability select,
#ebAvailability input[type="submit"],
#ebAvailability button {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
}
#ebAvailability iframe {
  width: 100% !important;
  border: none !important;
  min-height: 400px;
}

/* CTA am Seitenende */
.wohn-cta {
  background: var(--linen2);
  padding: 64px 0; text-align: center;
}
.wohn-cta-h { margin-bottom: 12px; }
.wohn-cta-p { margin: 0 auto 28px; text-align: center; }
.wohn-cta-btns {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}

/* ─────────────────────────────────────
   WOHNUNG GALERIE (Gutenberg Content)
───────────────────────────────────── */
.wohnung-galerie .wp-block-gallery {
  gap: 8px !important;
}
.wohnung-galerie .wp-block-image img,
.wohnung-galerie figure img {
  border-radius: 8px;
  object-fit: cover;
}
.wohnung-galerie .wp-block-gallery .wp-block-image {
  border-radius: 8px;
  overflow: hidden;
}
/* Falls noch kein Gutenberg Inhalt → leeren Bereich ausblenden */
.wohnung-galerie:empty { display: none; }
.wohnung-galerie p:empty { display: none; }

/* ─────────────────────────────────────
   WOHNUNG DETAILSEITE - MOBILE
───────────────────────────────────── */
@media (max-width: 768px) {
  /* Ausstattung: 4 Spalten → 2 Spalten */
  .feat-list[style*="repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Galerie + Video: nebeneinander → untereinander */
  [style*="grid-template-columns:1fr 300px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ─────────────────────────────────────
   WOHNUNG KLASSEN
───────────────────────────────────── */
.wohn-ausstattung {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
  margin-bottom: 32px;
}
.wohn-galerie-video {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .wohn-ausstattung {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .wohn-galerie-video {
    grid-template-columns: 1fr !important;
  }
}

.wohn-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
@media (max-width: 600px) {
  .wohn-buttons { flex-direction: column; }
  .wohn-buttons a { text-align: center; width: 100%; box-sizing: border-box; }
}

/* ─────────────────────────────────────
   WOHNUNG FARB-THEMES
───────────────────────────────────── */

/* LAVENDEL – Lila Pastell */
.theme-lavendel .sec-h em,
.theme-lavendel .page-hero-h em { color: var(--lavendel2) !important; }

.theme-lavendel .page-hero-eyebrow::before,
.theme-lavendel .sec-eyebrow::before { background: var(--lavendel2) !important; }

.theme-lavendel .btn-gold {
  background: var(--lavendel2) !important;
  color: var(--white) !important;
}
.theme-lavendel .btn-gold:hover { background: var(--lavendel) !important; color: var(--ink) !important; }

.theme-lavendel .feat-check { background: var(--lavendel3) !important; }
.theme-lavendel .feat-check svg { stroke: var(--lavendel2) !important; }

/* MELISSE – Grün Pastell */
.theme-melisse .sec-h em,
.theme-melisse .page-hero-h em { color: var(--melisse2) !important; }

.theme-melisse .page-hero-eyebrow::before,
.theme-melisse .sec-eyebrow::before { background: var(--melisse2) !important; }

.theme-melisse .btn-gold {
  background: var(--melisse2) !important;
  color: var(--white) !important;
}
.theme-melisse .btn-gold:hover { background: var(--melisse) !important; color: var(--ink) !important; }

.theme-melisse .feat-check { background: var(--melisse3) !important; }
.theme-melisse .feat-check svg { stroke: var(--melisse2) !important; }

/* ─────────────────────────────────────
   ERLEBNISSE ANCHOR NAV
───────────────────────────────────── */

/* Sticky Nav — war inline auf #erlebnis-nav */
#erlebnis-nav {
  background: var(--white);
  border-bottom: 1px solid var(--linen3);
  position: sticky;
  top: 68px;
  z-index: 99;
  overflow-x: auto;
}

/* Zweispaltige Sektionen (Kinder, Hund) */
.erlebnis-two-col .sec-h { margin-bottom: 20px; }
.erlebnis-two-col .sec-p { margin-bottom: 16px; }
.erlebnis-two-col .card-linen { margin-bottom: 28px; margin-top: 8px; }
.erlebnis-two-col .card-linen .sec-eyebrow { margin-bottom: 14px; }
.erlebnis-two-col .card-white { margin-bottom: 24px; }
.erlebnis-two-col .card-white .sec-eyebrow { margin-bottom: 12px; }

/* Standalone-Sektionen (Wandern, Radfahren, Ausflugstipps, Gastronomie) */
.erlebnis-sec-white > .container > .sec-eyebrow,
.erlebnis-sec-linen > .container > .sec-eyebrow { margin-bottom: 12px; }
.erlebnis-sec-white > .container > .sec-h,
.erlebnis-sec-linen > .container > .sec-h { margin-bottom: 16px; }
.erlebnis-sec-white > .container > .sec-p,
.erlebnis-sec-linen > .container > .sec-p { margin-bottom: 40px; }

/* Wandertour Karten-Text Abstand */
.erlebnis-grid .card-text { margin-bottom: 10px; }

/* Hund USP-Kachel Titel */
.erlebnis-hund-feat-title {
  font-size: 13px; font-weight: 700;
  color: var(--ink); margin-bottom: 4px;
}

/* Platzhalter wenn keine Galerie-Fotos */
.erlebnis-placeholder { grid-column: 1 / -1; }

.erlebnis-nav-inner {
  display: flex; gap: 0;
  white-space: nowrap; padding-right: 24px;
}
.erlebnis-sec-white { background: var(--white); scroll-margin-top: 120px; }
.erlebnis-sec-linen { background: var(--linen); scroll-margin-top: 120px; }
.erlebnis-two-col { align-items: center; gap: 64px; }
.erlebnis-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.erlebnis-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.erlebnis-split-h {
  font-family: 'Playfair Display', serif;
  font-size: 20px; margin-bottom: 20px;
}
.erlebnis-nav-link {
  display: inline-block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--stone);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.erlebnis-nav-link:hover {
  color: var(--ink);
  border-bottom-color: var(--kamille2);
}
.erlebnis-nav-link.active {
  color: var(--ink);
  border-bottom-color: var(--kamille2);
}
@media (max-width: 768px) {
  .erlebnis-nav-link { padding: 12px 14px; font-size: 12px; }
  .erlebnis-split { grid-template-columns: 1fr !important; }
  .erlebnis-hund-grid { grid-template-columns: 1fr !important; }
  .erlebnis-two-col { display: flex; flex-direction: column; }
  .erlebnis-two-col .kinder-galerie { order: -1; margin-bottom: 28px; }
  .unterkunft-lavendel-mobile-reverse { display: flex; flex-direction: column-reverse; }
}

/* ─── Legal / Impressum ────────────────────────── */
.ph-bg-legal {
  background: url('https://jura-ferienhof.de/wp-content/uploads/2026/04/Background_privat.webp') center/cover no-repeat;
}
.page-hero-sm { min-height: 260px; }
.legal-sec { padding: 60px 0 80px; }
.legal-container { max-width: 780px; margin: 0 auto; }
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin: 2.2em 0 .6em;
  color: var(--ink);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: .97rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1em;
}
.legal-content a {
  color: var(--kamille2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--ink); }
@media (max-width: 768px) {
  .page-hero-sm { min-height: 180px; }
  .legal-sec { padding: 40px 0 60px; }
  .legal-container { padding: 0 20px; }
}