/* ============================================
   Barca Samba — Partyboot Page V2
   Oceanbeat-Style mit barcasamba-DNA
   ============================================ */

:root {
  /* Brand */
  --bs-primary:        #00adf3;
  --bs-primary-dark:   #007abc;
  --bs-primary-darker: #005076;

  /* Akzente (Sunset / Glow) */
  --bs-accent:         #ff3d8c;        /* Magenta-Pink für Energy */
  --bs-accent-warm:    #ff8a3d;        /* Sunset-Orange */
  --bs-glow:           0 0 24px rgba(0, 173, 243, 0.6);
  --bs-glow-pink:      0 0 32px rgba(255, 61, 140, 0.45);

  /* Neutral */
  --bs-text:           #0a0e1a;
  --bs-text-muted:     #5a5a66;
  --bs-text-on-dark:   rgba(255,255,255,0.92);
  --bs-bg:             #ffffff;
  --bs-bg-soft:        #f4f9fc;
  --bs-bg-dark:        #0a0e1a;
  --bs-bg-darker:      #050813;
  --bs-border:         rgba(0, 0, 0, 0.08);

  --bs-shadow:         0 8px 32px rgba(0, 60, 110, 0.08);
  --bs-shadow-strong:  0 20px 60px rgba(0, 60, 110, 0.18);

  --bs-container:      1300px;
  --bs-radius:         16px;
  --bs-radius-sm:      10px;

  --bs-font-display:   'Anton', 'Impact', sans-serif;
  --bs-font-base:      'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;  /* Sticky-Header-Anchor-Fix */
  overflow-x: hidden;        /* Mobile-Safari: verhindert Body-Side-Scroll */
  width: 100%;
  max-width: 100vw;
}
body {
  margin: 0;
  font-family: var(--bs-font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bs-text);
  background: var(--bs-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;          /* clip statt hidden = bessere Sticky-Kompatibilitaet */
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bs-primary-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--bs-primary); }

h1, h2, h3, h4 {
  font-family: var(--bs-font-base);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--bs-text);
}
p { margin: 0 0 1em; }

/* DISPLAY HEADLINES (Anton kondensiert für Hero/Big-Section-Headlines) */
/* line-height 1.1 statt 0.95 — Anton braucht Platz für Umlaute Ä/Ö/Ü */
.big-headline,
.hero__title {
  font-family: var(--bs-font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0 0 0.4em;
  padding-top: 0.1em;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute; top: -50px; left: 8px;
  background: var(--bs-primary); color: #fff;
  padding: 12px 18px; z-index: 1000;     /* min 44px Tap-Target */
  min-height: 44px;
  display: inline-flex; align-items: center;
  border-radius: var(--bs-radius-sm);
}
.skip-link:focus { top: 8px; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--bs-container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 24px; }
@media (min-width: 768px) { .section { padding: 120px 24px; } }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 122, 188, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, padding 0.3s ease;
  padding: 12px 0;
}
.header.is-sticky {
  background: rgba(10, 14, 26, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.header__inner {
  max-width: var(--bs-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__brand img {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
}
.header.is-sticky .header__brand img { height: 46px; }

.header__nav {
  display: none;
  flex: 1;
  gap: 28px;
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 1024px) { .header__nav { display: flex; } }

.header__nav a {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
}
.header__nav a:hover { color: var(--bs-primary); }
.header__nav a.is-current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--bs-primary);
  box-shadow: var(--bs-glow);
}

.header__cta {
  background: var(--bs-primary);
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: auto;
}
@media (min-width: 1024px) { .header__cta { margin-left: 0; } }
.header__cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--bs-glow);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;  /* Mobile-Fix: small viewport height (Safari iOS Adressleiste) */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 80px;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__poster, .hero__video-wrap {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__poster {
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero__video-wrap {
  z-index: 2;
  pointer-events: none;
  /* Container immer sichtbar, iframe selbst startet unsichtbar */
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Transparentes Overlay direkt über dem iframe blockt alle YouTube-Player-UI-Klicks
   und verhindert dass YouTube den Cursor erkennt der die Controls aufploppen lässt */
.hero__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}
.hero__video-wrap iframe {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__video-wrap.is-loaded iframe { opacity: 1; }
.hero__video-wrap iframe,
.hero__video-wrap #hero-yt-player {
  /* iframe etwas grösser als Hero, damit auch das letzte YouTube-Branding-Logo abgeschnitten wird */
  width: 110vw;
  height: 62vw; /* 16:9 von 110vw */
  min-height: 110vh;
  min-width: 196vh; /* 16:9 reverse */
  position: absolute !important;
  top: 50% !important; left: 50% !important;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero__overlay {
  position: absolute; inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 60%, rgba(10,14,26,0.85) 100%),
    linear-gradient(180deg, rgba(0,80,118,0.3) 0%, rgba(10,14,26,0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 980px;
}

.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 173, 243, 0.85);
  padding: 8px 22px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  box-shadow: var(--bs-glow);
}

.hero__title {
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__title-mega {
  font-family: var(--bs-font-display);
  font-size: clamp(2.6rem, 14vw, 14rem);  /* Min reduziert: 360px-Devices (Galaxy S22) */
  line-height: 0.95;                       /* etwas mehr Luft fuer Umlaute (Anton-Display-Font-Bug) */
  letter-spacing: -2px;
  color: var(--bs-primary);
  text-shadow:
    0 0 40px rgba(0, 173, 243, 0.8),
    0 0 80px rgba(0, 173, 243, 0.5),
    0 4px 30px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}
.hero__title-sub {
  font-family: var(--bs-font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 8px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: -6px;
}
.hero__tagline {
  font-family: var(--bs-font-base);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  margin: 24px 0 36px;
  font-weight: 400;
}
.hero__tagline strong {
  color: var(--bs-primary);
  font-weight: 700;
  font-style: normal;
}
.hero__title-glow {
  color: var(--bs-primary);
  text-shadow:
    0 0 30px rgba(0, 173, 243, 0.6),
    0 0 60px rgba(0, 173, 243, 0.3);
}

.hero__lead {
  font-family: var(--bs-font-base);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--bs-text-on-dark);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.pill--price {
  background: var(--bs-accent);
  border-color: var(--bs-accent);
  box-shadow: var(--bs-glow-pink);
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero__stars {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 2px;
}
.hero__rating-text {
  color: #fff;
  font-size: 14px;
}
.hero__rating-text strong {
  font-family: var(--bs-font-display);
  font-size: 18px;
  color: #ffd700;
  margin-right: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  display: none;
}
@media (min-width: 768px) { .hero__scroll { display: block; } }
.hero__scroll span {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.3; transform: translate(-50%, 12px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: var(--bs-font-base);
}
.btn--primary {
  background: var(--bs-primary);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 173, 243, 0.4);
}
.btn--primary:hover {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 173, 243, 0.6), 0 0 24px rgba(0, 173, 243, 0.4);
}
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff !important;
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff !important;
}
.btn--lg { padding: 20px 44px; font-size: 16px; }
.btn__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================
   USP STRIP
   ============================================ */
.usp-strip {
  background: var(--bs-bg-darker);
  color: #fff;
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.usp-strip__inner {
  max-width: var(--bs-container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  text-align: center;
}
.usp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.usp strong {
  font-family: var(--bs-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--bs-primary);
  letter-spacing: 1px;
}
.usp span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ============================================
   INTRO + REASONS
   ============================================ */
.section--intro { background: var(--bs-bg); }
.intro { max-width: 900px; margin: 0 auto 64px; text-align: center; }
.intro--center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px;                /* Mobile-Lesbarkeit */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--bs-primary);
  margin-bottom: 16px;
}
.intro-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--bs-text-muted);
  max-width: 720px;
  margin: 24px auto 0;
}
.big-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--bs-text);
}
.accent { color: var(--bs-primary); }

.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reason-grid { grid-template-columns: repeat(3, 1fr); }
}
.reason {
  padding: 32px 28px;
  background: var(--bs-bg-soft);
  border-radius: var(--bs-radius);
  border-top: 4px solid var(--bs-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reason:hover {
  transform: translateY(-6px);
  box-shadow: var(--bs-shadow-strong);
}
.reason__num {
  font-family: var(--bs-font-display);
  font-size: 3rem;
  color: var(--bs-primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.reason h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--bs-text);
}
.reason p {
  color: var(--bs-text-muted);
  font-size: 15px;
  margin: 0;
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
  padding: 32px 0;
  background: var(--bs-bg-darker);
  overflow: hidden;
}
.gallery-strip__track {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--bs-primary) transparent;
}
.gallery-strip__track::-webkit-scrollbar { height: 6px; }
.gallery-strip__track::-webkit-scrollbar-thumb { background: var(--bs-primary); border-radius: 3px; }
.gallery-item {
  flex: 0 0 320px;
  height: 220px;
  border-radius: var(--bs-radius-sm);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  background: #1a1f2e;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 100%);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-style: italic;
  border: 2px dashed rgba(255,255,255,0.15);
}
@media (min-width: 768px) {
  .gallery-item { flex: 0 0 420px; height: 280px; }
}

/* ============================================
   VIDEO SLIDER — 3D COVERFLOW
   ============================================ */
.section--videos {
  background: var(--bs-bg);
  position: relative;
  overflow: visible;
}
.video-slider {
  max-width: 1400px;
  margin: 64px auto 0;
  position: relative;
}
.video-slider__main {
  position: relative;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  overflow: visible;
}

/* Nav-Buttons over the 3D-Stage */
.video-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--bs-primary);
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.25s ease,
              color 0.25s ease,
              box-shadow 0.25s ease;
  /* Hoechste Ebene innerhalb der Page (Geo-Block Overlay = 9999 bleibt drueber) */
  z-index: 999;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(0, 60, 110, 0.08);
  opacity: 1;
  pointer-events: auto;
  /* Browser-3D-Layer erzwingen damit Pfeile garantiert ueber 3D-Slides liegen */
  will-change: transform;
}
.video-slider__nav:hover {
  background: var(--bs-primary);
  color: #fff;
  transform: translateY(-50%) translateZ(0) scale(1.15);
  box-shadow: 0 12px 36px rgba(0, 173, 243, 0.6),
              0 0 0 6px rgba(0, 173, 243, 0.15);
}
.video-slider__nav:active {
  transform: translateY(-50%) translateZ(0) scale(1.05);
}
/* Pfeile außen am Container-Rand (klar getrennt von den Videos) */
.video-slider__nav--prev { left: 0; }
.video-slider__nav--next { right: 0; }
@media (min-width: 1024px) {
  .video-slider__nav--prev { left: -24px; }
  .video-slider__nav--next { right: -24px; }
}
@media (max-width: 767px) {
  .video-slider__nav {
    width: 48px; height: 48px;     /* WCAG-Tap-Target erfuellt */
    font-size: 22px;
  }
  .video-slider__nav--prev { left: 4px; }
  .video-slider__nav--next { right: 4px; }
}

/* === 3D STAGE === */
.video-slider__stage {
  position: relative;
  height: clamp(240px, 40vw, 500px);
  background: transparent;
  transform-style: preserve-3d;
}
/* Subtle Bühnen-Reflexion unter den Slides */
.video-slider__main::after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(0, 60, 110, 0.18) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

/* === 3D SLIDES === */
.video-slide {
  position: absolute;
  top: 0; left: 50%;
  width: clamp(260px, 60%, 800px);
  height: 100%;
  border-radius: var(--bs-radius);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transform-origin: center center;
  transform: translate3d(-50%, 0, 0);
  transition: transform 0.8s cubic-bezier(0.25, 1.0, 0.45, 1),
              opacity 0.5s ease,
              filter 0.5s ease,
              box-shadow 0.5s ease,
              z-index 0s;
  opacity: 0;
  pointer-events: none;
  filter: brightness(0.55) saturate(0.7);
  box-shadow: 0 30px 80px rgba(0, 60, 110, 0.4);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.video-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-slide iframe {
  /* iframe vergroessern damit YouTube's 16:9 den ganzen Slot fuellt (kein Letterboxing).
     Skaliere auf 178% (160% Width fuer Hoehe-Coverage + zusaetzliche Sicherheits-Marge),
     dann zentriere via translate. So sind die schwarzen Balken ausserhalb des sichtbaren
     Bereichs und werden vom overflow:hidden des Parents gecroppt. */
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.78);
  /* Mindest-Groesse damit der Skaling-Effekt immer 16:9 abdeckt */
  min-width: 178%;
  min-height: 178%;
  z-index: 5;
  pointer-events: auto;
}

/* Position-States — Coverflow mit Peek-Effekt (translate3d erzwingt 3D-Layer) */
.video-slide.is-active {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  filter: brightness(1) saturate(1);
  transform: translate3d(-50%, 0, 60px) scale(1);
  box-shadow: 0 40px 100px rgba(0, 60, 110, 0.55),
              0 0 0 1px rgba(0, 173, 243, 0.15);
}
/* Vorgänger/Nachfolger schauen leicht hinter dem aktiven hervor */
.video-slide.is-prev {
  z-index: 5;
  opacity: 0.7;
  pointer-events: auto;
  filter: brightness(0.55) saturate(0.7);
  transform: translate3d(-92%, 0, -150px) rotateY(38deg) scale(0.82);
}
.video-slide.is-next {
  z-index: 5;
  opacity: 0.7;
  pointer-events: auto;
  filter: brightness(0.55) saturate(0.7);
  transform: translate3d(-8%, 0, -150px) rotateY(-38deg) scale(0.82);
}
.video-slide.is-prev-2 {
  z-index: 2;
  opacity: 0.25;
  pointer-events: auto;
  filter: brightness(0.4) saturate(0.5);
  transform: translate3d(-130%, 0, -450px) rotateY(48deg) scale(0.65);
}
.video-slide.is-next-2 {
  z-index: 2;
  opacity: 0.25;
  pointer-events: auto;
  filter: brightness(0.4) saturate(0.5);
  transform: translate3d(30%, 0, -450px) rotateY(-48deg) scale(0.65);
}
.video-slide.is-far {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 0, -1000px) scale(0.5);
}

/* Klick auf Side-Slide = aktiviert sie */
.video-slide.is-prev,
.video-slide.is-next {
  cursor: pointer;
}
.video-slide.is-prev:hover,
.video-slide.is-next:hover {
  filter: brightness(0.85) saturate(0.95);
}

/* Title-Overlay nur auf aktivem Slide voll sichtbar */
.video-slide__title {
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.video-slide.is-active .video-slide__title { opacity: 1; }

/* Progress Bar — jetzt am unteren Rand des stage-Containers, nicht im Slide */
.video-slider__progress {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 75%, 1000px);
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 15;
  border-radius: 999px;
  overflow: hidden;
}
.video-slider__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-accent));
  width: 0%;
  transition: width 0.3s linear;
  box-shadow: 0 0 12px rgba(0, 173, 243, 0.6);
  border-radius: 999px;
}
/* Alter 2D-Slider-Code entfernt — 3D-Coverflow oben definiert das alles */
.video-slide.is-playing img { animation: none; }
.video-slide__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bs-primary);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease;
  box-shadow: 0 0 0 0 rgba(0, 173, 243, 0.4),
              0 12px 48px rgba(0, 0, 0, 0.5);
  animation: playPulse 2s infinite;
}
.video-slide__play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  pointer-events: none;
}
.video-slide__play span {
  margin-left: 6px;
  position: relative;
  z-index: 2;
}
.video-slide__play:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--bs-accent);
  animation: none;
  box-shadow: 0 0 80px rgba(255, 61, 140, 0.6),
              0 12px 48px rgba(0, 0, 0, 0.6);
}
.video-slide__play:hover::before {
  border-color: var(--bs-accent);
}
@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 173, 243, 0.6),
                0 12px 48px rgba(0, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 24px rgba(0, 173, 243, 0),
                0 12px 48px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 173, 243, 0),
                0 12px 48px rgba(0, 0, 0, 0.5);
  }
}
.video-slide.is-playing .video-slide__play,
.video-slide.is-playing img,
.video-slide.is-playing .video-slide__title { display: none; }
.video-slide__title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 24px 20px;
  font-family: var(--bs-font-display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-slide__badge {
  font-size: 11px;
  font-family: var(--bs-font-base);
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--bs-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: var(--bs-glow-pink);
}

/* Counter / Title statt Thumbnails */
.video-slider__counter {
  margin-top: 56px;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--bs-font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.video-slider__counter-current {
  color: var(--bs-primary);
  font-size: 2.4rem;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 173, 243, 0.4);
}
.video-slider__counter-divider {
  color: var(--bs-text-muted);
  font-size: 1.6rem;
  opacity: 0.5;
  margin: 0 -4px;
}
.video-slider__counter-total {
  color: var(--bs-text-muted);
  font-size: 1.6rem;
  opacity: 0.7;
}
.video-slider__counter-title {
  color: var(--bs-text);
  font-size: 1.2rem;
  margin-left: 16px;
  letter-spacing: 2px;
  font-weight: 400;
}
@media (max-width: 640px) {
  .video-slider__counter-title { display: block; width: 100%; margin: 8px 0 0; font-size: 1rem; }
  .video-slider__counter { margin-top: 40px; }
}

/* ============================================
   STORY VIDEO (legacy, falls noch genutzt)
   ============================================ */
.section--story { background: var(--bs-bg); }
.video-story {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.video-story__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--bs-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--bs-shadow-strong);
  background: #000;
}
.video-story__frame img,
.video-story__frame iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.video-story__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bs-primary);
  border: 4px solid rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--bs-glow), 0 8px 32px rgba(0,0,0,0.4);
}
.video-story__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 60px rgba(0,173,243,0.8), 0 8px 40px rgba(0,0,0,0.5);
}
.video-story__play-icon {
  font-size: 36px;
  margin-left: 6px;
  line-height: 1;
}
.video-story__frame.is-playing .video-story__play,
.video-story__frame.is-playing img { display: none; }

/* ============================================
   CARDS (Inkludiert / Nicht enthalten)
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.card {
  background: var(--bs-bg);
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius);
  padding: 36px;
  box-shadow: var(--bs-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bs-shadow-strong);
}
.card__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bs-primary);
  margin-bottom: 8px;
}
.card h3 {
  font-size: 1.5rem;
  margin: 0 0 24px;
  color: var(--bs-text);
}

.list-check, .list-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-check li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid var(--bs-border);
  font-size: 15px;
  line-height: 1.5;
}
.list-check li:last-child { border-bottom: 0; }
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 12px;
  width: 24px; height: 24px;
  background: var(--bs-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.list-info li {
  padding: 14px 0;
  border-bottom: 1px solid var(--bs-border);
  font-size: 15px;
  line-height: 1.5;
  color: var(--bs-text-muted);
}
.list-info li:last-child { border-bottom: 0; }
.list-info li strong {
  display: block;
  color: var(--bs-text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.note {
  background: var(--bs-bg-soft);
  border-left: 4px solid var(--bs-primary);
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 14px;
  border-radius: 0 var(--bs-radius-sm) var(--bs-radius-sm) 0;
}
.note--warn {
  background: #fff8e6;
  border-left-color: #f5b400;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--bs-primary-darker) 0%, var(--bs-primary-dark) 50%, var(--bs-primary) 100%);
  color: #fff;
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,61,140,0.3) 0%, transparent 60%);
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.cta-band h2 {
  color: #fff;
  font-family: var(--bs-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
  line-height: 1.1;
  padding-top: 0.1em;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin: 0;
}

/* ============================================
   BOOKING
   ============================================ */
.section--booking {
  background: var(--bs-bg);
}
.booking-frame {
  max-width: 620px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: var(--bs-radius);
  padding: 16px;
  box-shadow: var(--bs-shadow-strong);
  border: 1px solid var(--bs-border);
  position: relative;
  min-height: 600px;
}
#booking-iframe {
  width: 100%;
  min-height: 480px;                  /* Mobile-friendly Start */
  height: clamp(480px, 70vh, 700px);  /* Desktop max 700px */
  border: 0;
  display: block;
  border-radius: var(--bs-radius-sm);
}
.booking-fallback {
  text-align: center;
  font-size: 13px;
  color: var(--bs-text-muted);
  margin: 16px 0 0;
}

/* ============================================
   CANCEL
   ============================================ */
.cancel {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bs-bg-soft);
  padding: 36px;
  border-radius: var(--bs-radius);
  border: 1px solid var(--bs-border);
}
.cancel h3 {
  color: var(--bs-text);
  margin: 0 0 16px;
  font-size: 1.3rem;
}
.cancel p {
  font-size: 14px;
  color: var(--bs-text-muted);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bs-bg-darker);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 24px 32px;
}
.footer__inner {
  max-width: var(--bs-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.footer__brand img {
  /* Logo bleibt golden - kein Filter, da das 30-Jahre-Emblem golden auf transparent ist */
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.footer__nav a:hover { color: var(--bs-primary); }
.footer__copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ============================================
   MAP / LOCATION
   ============================================ */
.section--location { background: var(--bs-bg); }
.map-wrap {
  max-width: 1100px;
  margin: 32px auto 24px;
  border-radius: var(--bs-radius);
  overflow: hidden;
  box-shadow: var(--bs-shadow-strong);
  aspect-ratio: 16 / 9;
  position: relative;
}
.map-placeholder {
  position: relative;
  width: 100%; height: 100%;
  border: 0;
  cursor: pointer;
  padding: 0;
  background: #000;
  display: block;
}
.map-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.map-placeholder:hover img { opacity: 0.7; }
.map-placeholder__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,80,118,0.7), rgba(10,14,26,0.7));
}
.map-placeholder__icon {
  font-size: 64px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.map-placeholder__text {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.map-placeholder__text small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 8px;
  text-transform: none;
  letter-spacing: 0.5px;
}
.map-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--dark {
  border-color: var(--bs-text);
  color: var(--bs-text) !important;
}
.btn--dark:hover {
  background: var(--bs-text);
  color: #fff !important;
}

/* ============================================
   PARTNER SECTION (RCD Mallorca)
   ============================================ */
.partner-section {
  position: relative;
  padding: 64px 24px;
  overflow: hidden;
  background: #2b0a0a;
  color: #fff;
}
.partner-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 80, 80, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #4a0e0e 0%, #2b0a0a 50%, #1a0505 100%);
}
.partner-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .partner-section__inner {
    flex-direction: row;
    text-align: left;
    gap: 48px;
    justify-content: center;
  }
}
.partner-section__logo img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.partner-section__logo img:hover {
  transform: scale(1.08) rotate(-3deg);
}
@media (min-width: 768px) {
  .partner-section__logo img { width: 180px; }
}
.partner-section__text {
  max-width: 520px;
}
.partner-section .eyebrow {
  color: #ffd166;
  margin-bottom: 12px;
  letter-spacing: 4px;
}
.partner-section__headline {
  font-family: var(--bs-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-section__small {
  font-family: var(--bs-font-base);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.partner-section__rcd {
  color: #ffd166;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-shadow: 0 2px 20px rgba(255, 200, 80, 0.3);
}
.partner-section__lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   JGA SECTION
   ============================================ */
.jga-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
}
.jga-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.jga-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.2);
}
.jga-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,61,140,0.4) 0%, rgba(0,80,118,0.7) 100%);
}
.jga-section__inner {
  position: relative;
  z-index: 2;
}
.jga-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.jga-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.6));
  opacity: 1;
}
@media (max-width: 767px) {
  .jga-logo {
    width: 110px;            /* kleiner aber deutlich sichtbar */
    margin-bottom: 20px;
    /* Logo ist dunkelblau auf transparent — auf weißem JGA-Hintergrund mit Schatten besser sichtbar */
    filter: drop-shadow(0 3px 12px rgba(10, 26, 46, 0.3));
  }
}
.jga-content .eyebrow {
  color: var(--bs-accent);
}
.jga-content .big-headline {
  color: #fff;
}
.jga-content .accent {
  color: var(--bs-accent);
  text-shadow: 0 0 30px rgba(255,61,140,0.5);
}
.jga-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin: 24px 0 40px;
}
.jga-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}
@media (min-width: 640px) {
  .jga-features { grid-template-columns: repeat(2, 1fr); }
}
.jga-feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--bs-radius);
  padding: 20px 24px;
}
.jga-feature strong {
  display: block;
  font-family: var(--bs-font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.jga-feature span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.jga-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   QUICK BOOKING (above-the-fold)
   ============================================ */
.quick-booking {
  background: var(--bs-bg);
  padding: 64px 24px;
  position: relative;
}
.quick-booking__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.quick-booking__headline {
  font-family: var(--bs-font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0 0 12px;
  padding-top: 0.1em;
  color: var(--bs-text);
}
.quick-booking__lead {
  font-size: 1rem;
  color: var(--bs-text-muted);
  margin: 0;
}
.quick-booking__frame {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--bs-radius);
  padding: 16px;
  box-shadow: var(--bs-shadow-strong);
  border: 1px solid var(--bs-border);
  position: relative;
  min-height: 500px;
}
#quick-booking-iframe {
  width: 100%;
  min-height: 450px;
  height: clamp(450px, 65vh, 600px);
  border: 0;
  display: block;
  border-radius: var(--bs-radius-sm);
}
.quick-booking__fallback {
  text-align: center;
  font-size: 13px;
  color: var(--bs-text-muted);
  margin: 16px 0 0;
}

/* ============================================
   BRAND DIVIDER (zwischen Sektionen)
   ============================================ */
.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 24px;
  max-width: var(--bs-container);
  margin: 0 auto;
}
.brand-divider__line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
  opacity: 0.4;
}
.brand-divider__brand {
  font-family: var(--bs-font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--bs-text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

/* === HERO WATERMARK === */
.hero__watermark {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 5;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.hero__watermark img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
}
.hero:hover .hero__watermark { opacity: 0.8; }
@media (max-width: 767px) {
  .hero__watermark { bottom: 16px; left: 16px; }
  .hero__watermark img { width: 100px; }
}

/* === CTA BAND LOGO === */
.cta-band__logo {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 80px;
  height: auto;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
@media (max-width: 767px) {
  .cta-band__logo { width: 80px; top: 12px; right: 16px; }
}

/* === BOOKING FRAME LOGO === */
.booking-frame__brand {
  text-align: center;
  padding: 12px 0 16px;
  border-bottom: 1px solid var(--bs-border);
  margin-bottom: 16px;
}
.booking-frame__brand img {
  width: 100px;
  height: auto;
  margin: 0 auto;
  display: inline-block;
}

/* ============================================
   STATS STRIP (Social Proof Numbers)
   ============================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--bs-bg-darker) 0%, #0c1530 100%);
  padding: 56px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-strip__inner { grid-template-columns: repeat(4, 1fr); }
}
.stat__num {
  font-family: var(--bs-font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--bs-primary);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(0,173,243,0.3);
}
.stat__label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ============================================
   REVIEWS
   ============================================ */
.section--reviews { background: var(--bs-bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: #fff;
  border-radius: var(--bs-radius);
  padding: 28px;
  box-shadow: var(--bs-shadow);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--bs-primary);
}
.review-card__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  color: #fff;
  font-family: var(--bs-font-display);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--bs-text);
}
.review-card__date {
  font-size: 12px;
  color: var(--bs-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.review-card__stars {
  color: #f5b400;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bs-text-muted);
  flex-grow: 1;
  margin-bottom: 16px;
}
.review-card__source {
  border-top: 1px solid var(--bs-border);
  padding-top: 12px;
  margin-top: auto;
}
.reviews-cta {
  text-align: center;
  margin-top: 32px;
}
.reviews-cta a {
  font-weight: 700;
  font-size: 15px;
}

/* ============================================
   MASONRY GALLERY
   ============================================ */
.masonry-section {
  padding: 80px 0;
  background: var(--bs-bg);
}
@media (min-width: 768px) { .masonry-section { padding: 120px 0; } }

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 8px;
  padding: 0 8px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
    padding: 0 16px;
  }
}
@media (min-width: 1200px) {
  .masonry-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 240px;
  }
}
.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  background: #1a1f2e;
}
.masonry-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item.m-h-tall { grid-row: span 2; }
.masonry-item.m-w-wide { grid-column: span 2; }
@media (max-width: 767px) {
  .masonry-item.m-w-wide { grid-column: span 2; }
  .masonry-item.m-h-tall { grid-row: span 2; }
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.section--instagram { background: var(--bs-bg); }
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 1200px;
  margin: 48px auto 0;
}
@media (min-width: 768px) {
  .instagram-feed {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.ig-tile:hover img { transform: scale(1.06); opacity: 0.85; }
.ig-tile__icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(255,255,255,0.95);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-tile:hover .ig-tile__icon { opacity: 1; }
.ig-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   FOLLOW US MEGA SECTION
   ============================================ */
.follow-us {
  background: linear-gradient(135deg, var(--bs-primary-darker) 0%, var(--bs-primary-dark) 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.follow-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,61,140,0.25) 0%, transparent 60%);
}
.follow-us__inner {
  position: relative;
  max-width: var(--bs-container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .follow-us__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
  }
}
.follow-us__text {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}
.follow-us__center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.follow-us__logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
  opacity: 0.95;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.follow-us__logo:hover {
  transform: scale(1.08) rotate(-3deg);
}
@media (max-width: 767px) {
  .follow-us__logo { width: 100px; }
}
.follow-us__big {
  font-family: var(--bs-font-display);
  font-size: clamp(4rem, 14vw, 12rem);
  color: #fff;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.follow-us__icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.follow-us__icons a {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.follow-us__icons a:hover {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ============================================
   LANGUAGE SWITCHER (Header)
   ============================================ */
.lang-switcher {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-switcher__current {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 12px 18px;        /* WCAG 2.5.5 Tap-Target — Hoehe ~44px */
  min-height: 44px;          /* explicit fuer Mobile */
  border-radius: 999px;
  font-size: 14px;           /* mind. 14px fuer Mobile-Lesbarkeit */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-switcher__current::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.7;
}
.lang-switcher__current:hover { background: rgba(255,255,255,0.22); }
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(10,14,26,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--bs-radius-sm);
  padding: 8px;
  min-width: 160px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  display: none;
  z-index: 50;
}
.lang-switcher[data-open="true"] .lang-switcher__menu { display: block; }
.lang-switcher__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.lang-switcher__menu a:hover { background: rgba(0,173,243,0.18); color: #fff; }
.lang-switcher__menu a.is-current {
  background: rgba(0,173,243,0.25);
  font-weight: 700;
}
.lang-flag {
  display: inline-block;
  width: 20px; height: 14px;
  border-radius: 2px;
  background-size: cover;
}

/* ============================================
   MODERN EFFECTS — Scroll-Reveal, Hover, Sticky
   ============================================ */

/* === Scroll-Reveal Multi-Direction === */
.reveal {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.45, 1),
              transform 0.9s cubic-bezier(0.25, 1, 0.45, 1),
              filter 0.9s cubic-bezier(0.25, 1, 0.45, 1);
  will-change: opacity, transform, filter;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }
.reveal-blur { filter: blur(8px); transform: translateY(20px); }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
}

/* === Word-by-Word Stagger in Big-Headlines === */
.word-stagger {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em) rotate(2deg);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.45, 1),
              transform 0.7s cubic-bezier(0.25, 1.4, 0.45, 1);
  transition-delay: calc(var(--i, 0) * 0.08s + 0.1s);
}
.reveal.is-visible .word-stagger {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* Parallax-Targets brauchen will-change */
.jga-bg img,
.cta-band {
  will-change: transform;
}

/* Reduced Motion Respekt */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .word-stagger {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .jga-bg img,
  .cta-band { transform: none !important; }
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: var(--bs-primary);
  color: #fff !important;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 173, 243, 0.6),
              0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sticky-mobile-cta.is-visible {
  transform: translateY(0);
}
.sticky-mobile-cta__arrow {
  transition: transform 0.2s ease;
}
.sticky-mobile-cta:active .sticky-mobile-cta__arrow {
  transform: translateX(4px);
}
@media (min-width: 768px) {
  .sticky-mobile-cta { display: none; }
}

/* Verbesserte Hover-Effekte */
.card,
.review-card,
.reason,
.jga-feature,
.figure,
.video-thumb,
.gallery-item,
.masonry-item,
.ig-tile,
.btn,
.header__cta,
.usp,
.stat,
.video-slide__play,
.follow-us__icons a,
.lang-switcher__current,
.video-slider__nav {
  will-change: transform;
}

/* Card lift + glow on hover */
.card:hover,
.review-card:hover,
.jga-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 60, 110, 0.25),
              0 0 0 1px rgba(0, 173, 243, 0.2);
}

/* Reason-Card mit Color-Akzent on hover */
.reason {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.reason:hover {
  transform: translateY(-10px) scale(1.02);
  border-top-color: var(--bs-accent);
  box-shadow: 0 24px 64px rgba(0, 60, 110, 0.2);
}
.reason__num {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.reason:hover .reason__num {
  opacity: 0.8;
  transform: scale(1.1);
  color: var(--bs-accent);
}

/* USP Strip hover */
.usp {
  transition: transform 0.3s ease;
  cursor: default;
}
.usp:hover {
  transform: translateY(-4px);
}
.usp:hover strong {
  color: var(--bs-accent);
  text-shadow: 0 0 20px rgba(255, 61, 140, 0.6);
}
.usp strong {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Stat hover */
.stat {
  transition: transform 0.3s ease;
  cursor: default;
}
.stat:hover {
  transform: translateY(-4px);
}
.stat:hover .stat__num {
  text-shadow: 0 0 30px rgba(0, 173, 243, 0.6);
}
.stat__num {
  transition: text-shadow 0.3s ease;
}

/* Image hover-zoom auf Galerie */
.figure img,
.gallery-item img,
.masonry-item img,
.ig-tile img,
.video-thumb img {
  will-change: transform;
}

/* Buttons mit ripple-style hover */
.btn--primary,
.header__cta {
  position: relative;
  overflow: hidden;
}
.btn--primary::before,
.header__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    transparent 30%,
    rgba(255,255,255,0.3) 50%,
    transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn--primary:hover::before,
.header__cta:hover::before {
  transform: translateX(100%);
}
.btn--primary > *,
.header__cta > * {
  position: relative;
  z-index: 1;
}

/* Hero Poster Parallax (durch JS gesteuert) */
.hero__poster {
  transition: transform 0.1s linear;
}

/* Hover-Glow auf JGA-Feature */
.jga-feature {
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.jga-feature:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-6px);
}

/* Video-Thumb pulse on hover */
.video-thumb {
  transition: outline-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.video-thumb:hover {
  transform: translateY(-3px);
}

/* Header CTA pulse animation (subtil) */
@keyframes ctaSubtlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 173, 243, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(0, 173, 243, 0); }
}
.header__cta {
  animation: ctaSubtlePulse 2.5s ease-in-out infinite;
}

/* Stagger-Delays für Galerie-Items beim Reveal */
.masonry-item.reveal:nth-child(1) { transition-delay: 0ms; }
.masonry-item.reveal:nth-child(2) { transition-delay: 60ms; }
.masonry-item.reveal:nth-child(3) { transition-delay: 120ms; }
.masonry-item.reveal:nth-child(4) { transition-delay: 180ms; }
.masonry-item.reveal:nth-child(5) { transition-delay: 240ms; }
.masonry-item.reveal:nth-child(6) { transition-delay: 300ms; }
.masonry-item.reveal:nth-child(7) { transition-delay: 360ms; }
.masonry-item.reveal:nth-child(8) { transition-delay: 420ms; }

/* Smooth-Scroll bereits in body global */

/* ============================================
   404-PAGE OVERLAY (sieht aus wie echte 404)
   ============================================ */
.geo-block {
  position: fixed;
  inset: 0;
  background: #ffffff;
  color: #1a1a1a;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.geo-block[data-active="true"] { display: flex; }
.geo-block__inner { max-width: 500px; }
.geo-block__code {
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: #e0e0e0;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.geo-block__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.3;
}
.geo-block__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 32px;
}
.geo-block__link {
  display: inline-block;
  color: #0066cc;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.geo-block__link:hover {
  border-bottom-color: #0066cc;
  color: #0066cc;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .hero {
    min-height: 90vh;
    min-height: 90svh;  /* Safari iOS Adressleiste-Fix */
    padding: 120px 16px 60px;
    padding-top: max(120px, calc(80px + env(safe-area-inset-top)));  /* Notch-Safe */
  }
  .hero__pills { gap: 6px; }
  .pill { font-size: 13px; padding: 8px 14px; min-height: 32px; }
  .btn {
    padding: 16px 28px;       /* groesserer Tap-Target Mobile */
    font-size: 14px;
    min-height: 48px;          /* WCAG 2.5.5 mit Komfort-Margin */
  }
  .card { padding: 28px; }
  .reason { padding: 28px 22px; }
  .cta-band { padding: 40px 24px; text-align: center; }
  .cta-band__inner { justify-content: center; }
  .cta-band h2 { font-size: 1.8rem; }

  /* Iframes: kleinere Min-Hoehe auf Mobile (Andronautic-Booking-Widget) */
  #booking-iframe { min-height: 480px; height: clamp(480px, 70vh, 600px); }
  #quick-booking-iframe { min-height: 420px; height: clamp(420px, 65vh, 550px); }

  /* Lang-Switcher: Tap-Target hoch genug */
  .lang-switcher__current {
    padding: 12px 16px;
    min-height: 44px;
    font-size: 13px;
  }

  /* Body-Padding fuer iPhone Notch */
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  /* Sticky CTA Bar (falls vorhanden) Notch-Safe */
  .sticky-cta, .footer {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  /* Hero-Headline noch etwas kleiner auf Mini-Devices */
  .hero__title-mega {
    letter-spacing: -1px;
    word-break: break-word;
    hyphens: auto;
  }

  /* Mobile-Mindest-Font-Sizes (WCAG-Lesbarkeit) */
  .pill, .eyebrow, .stats-strip__label, .quick-booking__title-eyebrow,
  .review-card__date, .booking__lead, .footer a, .quick-booking__lead,
  .stat-num__suffix, .hero__badge, .card__label,
  .usp span, .stat__label, .footer__small {
    font-size: 13px !important;     /* Mindest-Lesbarkeit auf Mobile */
  }

  /* Footer-Links: Tap-Target-Hoehe sicherstellen */
  .footer a, .footer__link {
    display: inline-block;
    padding: 8px 4px;
    min-height: 44px;
    line-height: 28px;
  }

  /* "Alle 6.904 Google-Bewertungen" Link */
  .reviews__more, .reviews-cta {
    padding: 12px 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Coverflow Play-Button: Mindest-Tap-Size auf der aktiven Slide */
  .video-slide.is-active .video-slide__play,
  .video-slide__play {
    min-width: 64px;
    min-height: 64px;
    font-size: 28px;
  }

  /* Footer-Links spezifisch fuer alle Anchor mit mailto/tel/external */
  .footer a[href^="mailto:"],
  .footer a[href^="tel:"],
  .footer a[href^="http"],
  .footer a[target="_blank"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 4px;
    line-height: 24px;
  }

  /* Generelle Mobile-Tap-Targets fuer ALLE inline-Links (Mailto, Tel, External, Booking) */
  a[href^="mailto:"],
  a[href^="tel:"],
  .quick-booking__fallback a,
  .booking-fallback a,
  .reviews-cta-link,
  .reviews__cta a,
  .ig-section a,
  .ig-handle,
  .quick-booking__lead a {
    display: inline-block;
    min-height: 44px;
    padding: 12px 6px;
    line-height: 22px;
  }

  /* "Alle 6.904 Google-Bewertungen" und aehnliche Reviews-Links */
  a[href*="google.com/maps"],
  a[href*="g.co/kgs"],
  a[href*="maps.app.goo.gl"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
  }

  /* Reviews-CTA-Block + alle direkten <a> darin */
  .reviews-cta a,
  .reviews-cta__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
  }

  /* Intro-Lead Inline-Links (Instagram-Handle etc.) */
  .intro-lead a {
    display: inline-block;
    padding: 10px 8px;
    min-height: 44px;
    line-height: 24px;
  }

  /* Instagram-Handle generic */
  a[href*="instagram.com"] {
    display: inline-block;
    min-height: 44px;
    padding: 10px 6px;
    line-height: 24px;
  }
}

/* Extra-kleine Mobile-Devices (Galaxy S22, alte iPhones) */
@media (max-width: 380px) {
  .hero__title-mega { font-size: clamp(2.2rem, 13vw, 4rem); }
  .hero { padding: 100px 12px 40px; }
  .container, .section { padding-left: 14px; padding-right: 14px; }
  .btn { padding: 14px 22px; font-size: 13px; }
}

/* ============================================
   MOBILE OPTIMIERUNGEN v2 (2026-05-05)
   ============================================
   Basierend auf User-Feedback nach echtem Mobile-Test:
   - Header kompakter
   - Stats-Strip kompakter
   - Trust-Badge zentrieren
   - Andronautic-Iframe FULL WIDTH
   - Marquee-Banner laufend
   ============================================ */

@media (max-width: 767px) {
  /* HEADER nach Booking-Best-Practice (GetYourGuide / Viator / Klook Pattern):
     - Hoehe 60px Total (Padding 8px + Logo 30px + Padding 8px = 46, Tap via padding extra)
     - Logo LINKS, 30px hoch, kompakt
     - CTA RECHTS, kompakt (nicht volle Breite)
     - Transparenter blauer Background mit Blur (statt Solid)
  */
  .header {
    padding: 8px 0;
    background: rgba(0, 122, 188, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .header__inner {
    padding: 0 14px;
    gap: 8px;
    min-height: 44px;       /* Tap-Reachable Header */
  }
  .header__brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0;
    margin-right: auto;     /* Logo links pinned */
  }
  .header__brand img {
    height: 30px !important;     /* Best-Practice 30px */
    width: auto;
    max-width: 110px;
  }
  .header.is-sticky .header__brand img { height: 28px !important; }

  /* Lang-Switcher: kompakt, nur Code (DE/EN) */
  .lang-switcher__current {
    padding: 8px 10px !important;
    min-height: 36px !important;
    min-width: 36px;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
  }

  /* CTA: kompakt rechts, NICHT volle Breite */
  .header__cta {
    padding: 10px 14px !important;
    min-height: 36px !important;
    font-size: 12px !important;
    letter-spacing: 0.3px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    border-radius: 18px !important;
  }

  /* HERO Padding-Top reduzieren weil Header jetzt kleiner */
  .hero { padding-top: 70px !important; }

  /* TRUST-BADGE: zentrieren + kompaktere Sterne */
  .hero__rating {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }
  .hero__rating-stars { font-size: 18px; letter-spacing: 1px; }
  .hero__rating-text { font-size: 13px; line-height: 1.4; }

  /* CTA-BAND Logo besser positionieren — nicht oben rechts schweben sondern oberhalb der H2 */
  .cta-band {
    position: relative;
    text-align: center;
  }
  .cta-band__logo {
    position: static !important;
    width: 60px !important;
    height: auto !important;
    margin: 0 auto 16px !important;
    display: block;
    opacity: 0.85;
  }

  /* STATS-STRIP kompakter — 2x2 Grid mit kleineren Numbers */
  .stats-strip { padding: 40px 0 !important; }
  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }
  .stats-strip__item, .stat {
    padding: 14px 8px !important;
  }
  .stats-strip__num, .stat__num, .stat-num {
    font-size: 28px !important;
    line-height: 1.1 !important;
  }
  .stats-strip__label, .stat__label {
    font-size: 11px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.5px !important;
  }

  /* ANDRONAUTIC-IFRAME — FULL WIDTH ohne Container-Padding */
  .quick-booking, .booking {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .quick-booking__frame, .booking__frame, #quick-booking-frame, #booking-frame {
    margin-left: -16px !important;
    margin-right: -16px !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    background: #fff;
    padding: 0 !important;
  }
  #quick-booking-iframe, #booking-iframe {
    border-radius: 0 !important;
    width: 100% !important;
    min-height: 520px !important;
    height: 70vh !important;
    max-height: 720px !important;
    display: block;
  }

  /* Section-Titles um die Iframes herum zentrieren */
  .quick-booking .container, .booking .container {
    text-align: center;
  }

  /* GALERIE: Hint-Animation damit User sieht dass scrollbar ist */
  .gallery-strip__track {
    scroll-behavior: smooth;
    /* iOS Smooth-Scrolling */
    -webkit-overflow-scrolling: touch;
    /* Snap-Stops fuer angenehmes Swipen */
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
  }
  .gallery-item {
    scroll-snap-align: start;
    flex: 0 0 75% !important;     /* Ein Item zeigt 75% Breite, naechstes peekt rein */
    max-width: 280px;
  }
  /* Hint: leichte Wackel-Animation beim ersten Scroll-Trigger */
  .gallery-strip__track.is-hint-active {
    animation: gallery-hint 1.5s ease-in-out 2;
  }
}

@keyframes gallery-hint {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-30px); }
  50%      { transform: translateX(0); }
}

/* ============================================
   LAUFENDER MARQUEE-BANNER (USP-Marquee)
   Wird via JS oder direkt im HTML platziert
   ============================================ */
.usp-marquee {
  background: var(--bs-primary);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.usp-marquee__track {
  display: inline-flex;
  gap: 48px;
  animation: usp-scroll 30s linear infinite;
  padding-left: 100%;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  align-items: center;
}
.usp-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.usp-marquee__item::after {
  content: '◆';
  margin-left: 48px;
  opacity: 0.6;
  font-size: 10px;
}
@keyframes usp-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Pause on hover for accessibility */
.usp-marquee:hover .usp-marquee__track {
  animation-play-state: paused;
}

/* Reduce-Motion respektieren */
@media (prefers-reduced-motion: reduce) {
  .usp-marquee__track,
  .gallery-strip__track {
    animation: none !important;
  }
}

/* ============================================
   MOBILE-FIXES v3 (User-Feedback Round 3, 2026-05-05)
   - Hero-Watermark-Logo entfernen
   - USP-Strip 5-Item-Layout: 4,9 nicht mehr alleinhängend
   - Gallery-Strip Padding minimieren
   - Masonry-Galerie als horizontaler Scroll-Slider
   - Instagram-Tiles als horizontaler Scroll-Slider
   - FOLLOW US in einer Zeile
   ============================================ */

@media (max-width: 767px) {

  /* HERO-WATERMARK LOGO entfernen (das kleine Anker-Logo am Hero-Boden) */
  .hero__watermark {
    display: none !important;
  }

  /* USP-STRIP: 5-Items besser layouten — 2 Reihen mit (3 oben | 2 unten zentriert)
     ODER alle 5 in 1 horizontal-scrollbarer Reihe */
  .usp-strip {
    padding: 24px 0 !important;
  }
  .usp-strip__inner {
    grid-template-columns: none !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding: 0 16px !important;
    justify-content: flex-start !important;
  }
  .usp-strip__inner .usp {
    flex: 0 0 auto !important;
    min-width: 110px;
    scroll-snap-align: center;
    align-items: center;
  }
  .usp-strip__inner .usp strong {
    font-size: 22px !important;          /* Konsistente Groesse */
    color: var(--bs-primary) !important; /* einheitliche Farbe */
    line-height: 1.1 !important;
  }
  .usp-strip__inner .usp span {
    font-size: 11px !important;
    text-align: center;
    color: rgba(255,255,255,0.75) !important;
  }
  /* Scrollbar dezent gestaltet */
  .usp-strip__inner::-webkit-scrollbar { height: 4px; }
  .usp-strip__inner::-webkit-scrollbar-thumb {
    background: rgba(0,173,243,0.4); border-radius: 2px;
  }

  /* GALLERY-STRIP — Bilder enger zusammen, weniger Padding */
  .gallery-strip {
    padding: 16px 0 !important;
    background: var(--bs-bg) !important;
  }
  .gallery-strip__track {
    gap: 6px !important;          /* deutlich enger */
    padding: 0 8px !important;
  }
  .gallery-item {
    flex: 0 0 82% !important;     /* Item nimmt 82% Breite, naechstes peekt subtil */
    max-width: 320px !important;
    height: 240px !important;
    border-radius: 12px !important;
  }
  .gallery-item figcaption {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }

  /* MASONRY-GALERIE als swipbarer Collagen-Slider auf Mobile
     Statt 2-Spalten-Grid: horizontaler Scroll, 1 Item = 1 Slide */
  .masonry-section {
    padding: 60px 0 40px !important;
    overflow: hidden;
  }
  .masonry-grid {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-rows: auto !important;
    grid-auto-flow: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding: 0 16px !important;
    margin-top: 24px !important;
    scroll-padding-left: 16px;
  }
  .masonry-item {
    flex: 0 0 80% !important;     /* 80% Breite, naechstes peekt 20% */
    max-width: 320px !important;
    height: 360px !important;     /* Portrait-Aspect fuer Collage-Look */
    grid-row: auto !important;
    grid-column: auto !important;
    scroll-snap-align: start !important;
    border-radius: 14px !important;
    overflow: hidden;
  }
  .masonry-item.m-h-tall {
    height: 420px !important;     /* tall-Variante etwas hoeher = Collage-Variation */
  }
  .masonry-item.m-w-wide {
    flex: 0 0 92% !important;     /* wide-Variante breiter */
    max-width: 380px !important;
  }
  .masonry-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  /* Scrollbar dezent */
  .masonry-grid::-webkit-scrollbar { height: 4px; }
  .masonry-grid::-webkit-scrollbar-thumb {
    background: rgba(0,173,243,0.5); border-radius: 2px;
  }

  /* INSTAGRAM-TILES als horizontaler Scroll-Slider */
  .ig-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding: 0 16px !important;
    margin-top: 24px !important;
  }
  .ig-tile {
    flex: 0 0 80% !important;
    max-width: 320px !important;
    height: 280px !important;
    aspect-ratio: auto !important;
    scroll-snap-align: start !important;
    border-radius: 14px !important;
  }
  .ig-tile img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .ig-grid::-webkit-scrollbar { height: 4px; }
  .ig-grid::-webkit-scrollbar-thumb {
    background: rgba(0,173,243,0.5); border-radius: 2px;
  }

  /* FOLLOW US — in einer Zeile, kleinere Schrift damit es passt */
  .follow-us__big {
    font-size: clamp(2.4rem, 14vw, 5rem) !important;
    letter-spacing: -1px !important;
    white-space: nowrap !important;
    line-height: 1.0 !important;
  }
  .follow-us__inner {
    padding: 60px 16px !important;
  }
  .follow-us__icons {
    gap: 16px !important;
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .follow-us__icons a {
    width: 52px !important;
    height: 52px !important;
  }
  .follow-us__logo {
    width: 80px !important;
  }
}
