/* -----------------------------------
   Font & Grund-Setup
----------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary: #65aab4;
  --primary-dark: #4a8a92;
  --bg: #f3f4f6;
  --bg-muted: #eef2f7;
  --bg-accent: #e0f2fe;
  --card-bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 18px 40px rgba(15, 23, 42, 0.16);
  --nav-height: 72px;
}

/* -----------------------------------
   Base
----------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #e5f3f6 0, #f3f4f6 40%, #ffffff 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  padding-left: 1.2rem;
}

/* Container & Sections */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), #eef2f7);
}

.section-accent {
  background: linear-gradient(135deg, #e0f2fe, #eef2f7);
}

/* -----------------------------------
   Header & Navigation
----------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

/* Desktop Nav */

.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 1.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link-highlight::after {
  width: 100%;
}

.nav-link-highlight {
  color: var(--primary-dark);
}

/* Mobile Nav */

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.18s ease, opacity 0.18s ease, width 0.18s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */

.nav-mobile {
  position: fixed;
  inset: var(--nav-height) 0 auto 0;
  background: rgba(248, 250, 252, 0.98);
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0.8rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.nav-mobile .nav-link {
  display: block;
  padding: 0.4rem 0;
}

.nav-legal {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* -----------------------------------
   Buttons
----------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #35666e);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
}

.btn-ghost {
  background: #ffffff;
  color: #111827;
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

/* Floating Booking Button (Mobile) */

.floating-booking-btn {
  position: fixed;
  inset: auto 1.3rem 1.3rem auto;
  z-index: 40;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.26);
  display: none;
}

/* -----------------------------------
   Hero
----------------------------------- */

.hero {
  padding-top: 5.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0.8rem 0 1rem;
    color:white;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 1.1rem;
     color:white;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.meta-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
        color:white;
}

/* Badges */

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.badge-soft {
  background: rgba(101, 170, 180, 0.08);
  border-color: rgba(101, 170, 180, 0.4);
  color: #0f172a;
}

/* Hero Image */

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.26);
}

.hero-image-tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: #e5f3f6;
}

/* -----------------------------------
   Sections & Cards
----------------------------------- */

.section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
  position: relative;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 0.4rem;
}

.section-intro {
  max-width: 680px;
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

/* Cards */

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: #d1d5db;
}

/* Grids */

.highlights-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.highlight-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.highlight-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.card-columns {
  display: grid;
  gap: 1rem;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.pricing-card p {
  margin: 0.2rem 0;
}

/* Info Pill Cards */

.info-pill-card {
  background: rgba(248, 250, 252, 0.95);
  border-radius: 14px;
  padding: 1.1rem 1.1rem;
  border: 1px dashed rgba(209, 213, 219, 0.9);
}

/* Feature Lists */

.feature-list,
.location-list {
  margin: 0 0 0.8rem;
  padding-left: 1.1rem;
}

.feature-list li,
.location-list li {
  margin-bottom: 0.3rem;
}

/* Pills */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.9rem 0 0.6rem;
}

.pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(101, 170, 180, 0.12);
  border: 1px solid rgba(101, 170, 180, 0.4);
}

.mt-lg {
  margin-top: 1.25rem;
}

/* -----------------------------------
   Galerie & Lightbox
----------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  border: none;
}

.lightbox-content {
  position: relative;
  width: min(90vw, 900px);
  margin: 3.5rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
}

.lightbox-image {
  width: 100%;
  height: auto;
  display: block;
  background: #020617;
}

.lightbox-close {
  position: absolute;
  inset: 0.5rem 0.8rem auto auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.84);
  color: #e5f3f6;
  font-size: 1.1rem;
  cursor: pointer;
}

/* -----------------------------------
   Lage & Map
----------------------------------- */

.map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
  margin-bottom: 0.7rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.map-hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* -----------------------------------
   Gastgeberin
----------------------------------- */

.host-card {
  margin-top: 1.2rem;
}

.host-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: center;
}

.host-text p {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.host-image-wrapper {
  display: flex;
  justify-content: center;
}

.host-image {
  border-radius: 999px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.3);
}

/* -----------------------------------
   Kalender & Buchung
----------------------------------- */

.calendar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.calendar-hint,
.map-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

/* -----------------------------------
   FAQ & Kontakt
----------------------------------- */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.contact-card h3 {
  margin-top: 0;
}

/* -----------------------------------
   Footer
----------------------------------- */

.site-footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(248, 250, 252, 0.96);
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* -----------------------------------
   Legal Pages (Impressum / Datenschutz)
----------------------------------- */

.legal-main {
  padding-top: 5.2rem;
  padding-bottom: 3.5rem;
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-wrapper h1 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.legal-card {
  margin-top: 1.4rem;
}

/* -----------------------------------
   Responsive
----------------------------------- */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
  }

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

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

  .split-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .host-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .host-image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-wrapper {
    order: -1;
  }

  .highlights-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-booking-btn {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.pricing-card {
  position: relative; /* wichtig! */
}

.pricing-card {
  position: relative;
}

.pricing-hint {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  display: inline-block;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* -----------------------------------
   Fullscreen Hero Background
----------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Bild + dunkler Verlauf drüber */
  background:
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.78),
      rgba(15, 23, 42, 0.62),
      rgba(15, 23, 42, 0.8)
    ),
    url("bilder/Ess.jpeg") center center / cover no-repeat;

  z-index: -1;
}

/* Hero Badges – bessere Sichtbarkeit auf dunklem Hintergrund */
.hero .badge {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  backdrop-filter: blur(2px);
}

.hero .badge-soft {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  backdrop-filter: blur(2px);
}

/* -----------------------------------
   Galerie Slider (Swiper)
----------------------------------- */

.gallery-swiper {
  width: 100%;
  padding-bottom: 2.5rem; /* Platz für Pagination */
}

.gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

/* Pfeile */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  color: #e5f3f6;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.5);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Pagination Dots */
.gallery-swiper .swiper-pagination-bullet {
  background: rgba(148, 163, 184, 0.9);
  opacity: 1;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in; /* neu */
}

/* Buchungsplattform-Buttons */

.booking-platforms {
    margin-top: -5rem;
}

.booking-platforms-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.booking-platforms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Grundstil – angelehnt an deine Buttons, nur etwas kompakter */
.btn-platform {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  font-weight: 600;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.btn-platform:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  border-color: var(--primary);
}

/* Plattform-spezifische Farben – optional anpassbar */

.btn-platform-booking {
  background: #003580;
  border-color: #003580;
  color: #ffffff;
}

.btn-platform-booking:hover {
  background: #022b63;
}

.btn-platform-airbnb {
  background: #ff5a5f;
  border-color: #ff5a5f;
  color: #ffffff;
}

.btn-platform-airbnb:hover {
  background: #e04349;
}

.btn-platform-fewo {
  background: #1e88e5;
  border-color: #1e88e5;
  color: #ffffff;
}

.btn-platform-fewo:hover {
  background: #1669c1;
}

/* Mobile: Buttons schön umbrechen */

@media (max-width: 480px) {
  .booking-platforms-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .btn-platform {
    flex: 1 1 auto;
    text-align: center;
  }
}

    .guest-main {
      padding-top: 5rem;
      padding-bottom: 4rem;
    }

    .guest-grid {
      display: grid;
      gap: 1.4rem;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      margin-top: 2rem;
    }

    .guest-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 1.8rem;
      border: 1px solid rgba(229, 231, 235, 0.9);
      box-shadow: var(--shadow-soft);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .guest-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-strong);
    }

    .guest-icon {
      width: 42px;
      height: 42px;
      margin-bottom: 1rem;
      color: var(--primary-dark);
    }

    .guest-card h3 {
      margin: 0 0 0.5rem;
      font-size: 1.2rem;
      font-weight: 600;
    }

    .guest-card p, .guest-card ul {
      margin: 0;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .guest-card ul li {
      margin-bottom: .35rem;
    }

    .qr-image {
      margin-top: 1rem;
      width: 140px;
      border-radius: 12px;
      box-shadow: var(--shadow-soft);
    }
