/* ============================================
   HyggeboBlåvand – Hauptstyles
   Tonalität: warm, ruhig, Logo-inspiriert
   (Beige-Creme + dunkles Blau)
   ============================================ */
:root {
  /* Palette angelehnt an das Logo:
     sanftes Beige + dunkles Blau */
  --color-cream: #f4ebdc;          /* Grundhintergrund (Logo-Beige) */
  --color-cream-dark: #e3d4bf;     /* Rahmen/Felder */
  --color-navy: #243246;           /* Logo-Blau (Text/Heading) */
  --color-navy-light: #3a4c66;     /* Hover/Links */
  --color-sand: #c2aa83;           /* Akzent, z. B. Divider */
  --color-green: #2f5b4a;          /* dezenter Natur-Akzent (Bäume/Wiese) */
  --color-green-light: #3f7a61;    /* Hover-Zustand */
  --color-text: #243246;
  --color-text-muted: #6a6a72;

  /* Typografie: systemnahe SF-Fonts */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;

  --radius: 14px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-navy-light); }

/* ========== Header & Navigation ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 235, 220, 0.94);
  border-bottom: 1px solid rgba(194, 170, 131, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo img {
  height: 56px;
  width: auto;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  align-items: center;
}

.nav-list a {
  font-weight: 500;
  padding: 0.35rem 0;
  letter-spacing: 0.01em;
}
.nav-list a.active {
  color: var(--color-navy);
  position: relative;
}
.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  margin-inline: auto;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-sand);
}

.nav-extra {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.lang-switch a.active { font-weight: 600; color: var(--color-navy); }

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 100%);
    height: 100vh;
    background: var(--color-cream);
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav-list a { padding: 0.5rem 0; font-size: 1.1rem; }
  .nav-extra {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-cream-dark);
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--color-navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-navy-light);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-cream-dark);
}
.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-navy);
}

/* ========== Sections ========== */
.section {
  padding: 3.5rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section--wide { max-width: 1200px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  max-width: 60ch;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-color: #000; /* Fallback, Bild über Inline-Style */
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 1.5rem 3rem;
  max-width: 760px;
  background: rgba(244, 235, 220, 0.9);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  color: var(--color-navy);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
  color: var(--color-navy);
}

.hero .subline {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0 0 2.2rem;
  color: var(--color-navy);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-cta .btn-primary {
  min-width: 180px;
}
.hero-cta .btn-secondary {
  min-width: 180px;
}

/* ========== Teaser-Kacheln ========== */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.teaser-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-cream-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition), box-shadow var(--transition);
}
.teaser-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.teaser-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--color-navy);
}
.teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--color-navy);
}
.teaser-card p { margin: 0; font-size: 0.95rem; color: var(--color-text-muted); }

/* ========== Faktenzeile ========== */
.facts-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: var(--color-cream-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy);
}

.facts-line span { display: flex; align-items: center; gap: 0.35rem; }
.facts-line span::before {
  content: '·';
  font-weight: 700;
  color: var(--color-sand);
}

/* ========== Bild-Sektionen ========== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.media-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ========== CTA-Block ========== */
.cta-block {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #f5f5f7;
  color: var(--color-text);
  border-radius: var(--radius);
}
.cta-block h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
}
.cta-block p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

/* ========== Footer ========== */
.footer {
  background: #f5f5f7;
  color: var(--color-text-muted);
  padding: 3rem 1.5rem 2.5rem;
  margin-top: 4rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.4rem; }
.footer a { color: var(--color-navy-light); }
.footer a:hover { color: var(--color-navy); }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-text);
  margin: 0 0 0.25rem;
}

.footer-claim { font-size: 0.9rem; opacity: 0.85; margin: 0; }

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-cream-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.footer-login {
  font-size: 0.8rem;
  opacity: 0.9;
}
.footer-login:hover {
  opacity: 1;
}

/* ========== Seiten-spezifisch ========== */
.page-hero {
  background: var(--color-navy);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}
.page-hero p { margin: 0; opacity: 0.9; }

/* Kontaktformular */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 400px;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius);
  background: #fff;
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* Galerie Lightbox */
.gallery-section { margin-bottom: 3rem; }
.gallery-section h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-navy);
  margin: 0 0 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item a { display: block; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.85rem;
}

/* Lightbox Overlay */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 100%; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
}

/* Entfernungen */
.distances { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; }
.distance-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.distance-icon { font-size: 1.5rem; color: var(--color-navy); }
.distance-item strong { display: block; color: var(--color-navy); }

/* FAQ */
.faq-list { max-width: 640px; }
.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { margin: 0 0 0.35rem; font-size: 1.05rem; color: var(--color-navy); }
.faq-item p { margin: 0; font-size: 0.95rem; color: var(--color-text-muted); }

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 1.5rem 0;
}
.map-wrap iframe { display: block; width: 100%; height: 320px; border: 0; }

.map-wrap--compact iframe {
  height: 260px;
}

/* Info-Box Buchung */
.booking-info {
  background: var(--color-cream-dark);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.booking-info h3 { margin: 0 0 0.75rem; font-size: 1.1rem; color: var(--color-navy); }
.booking-info ol { margin: 0; padding-left: 1.25rem; }

/* Preise & Verfügbarkeit – neues Layout */
.page-hero--light {
  background: #f5f5f7;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-cream-dark);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.booking-card,
.booking-map-card,
.booking-faq-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--color-cream-dark);
  padding: 2rem 2.25rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

@media (max-width: 600px) {
  .booking-card,
  .booking-map-card,
  .booking-faq-card {
    padding: 1.5rem 1.4rem;
    border-radius: 20px;
  }
}

.booking-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem 1.5rem;
  margin: 1.5rem 0 1.75rem;
  font-size: 0.95rem;
}

.booking-meta .label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.1rem;
}

.booking-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.75rem;
}

.booking-hint {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 0 1.75rem;
}

.booking-steps h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.booking-steps ol {
  margin: 0;
  padding-left: 1.3rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.booking-map-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--color-navy);
}

.booking-map-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.booking-map-link {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.booking-faq-card .section-title {
  margin-bottom: 0.5rem;
}

/* Platzhalter wenn kein Hero-Bild */
