/* =========================================================
   dein-harlesiel.de
   Grundstil / Designsystem
   ========================================================= */

:root {
  --dh-primary: #1f3b73;       /* Nordsee-Blau */
  --dh-primary-dark: #162c55;
  --dh-accent: #e58a2f;        /* warmes Orange */
  --dh-sand: #ece2d0;          /* Sandton */
  --dh-sand-dark: #d8ccb6;
  --dh-bg: #f8f6f1;            /* heller Hintergrund */
  --dh-white: #ffffff;
  --dh-text: #2c3440;          /* Fließtext */
  --dh-text-soft: #5e6875;
  --dh-border: rgba(31, 59, 115, 0.12);

  --dh-font-head: "Bree Serif", Georgia, serif;
  --dh-font-body: "Source Sans 3", Arial, sans-serif;

  --dh-radius: 18px;
  --dh-radius-sm: 10px;

  --dh-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --dh-shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.05);

  --dh-section-space: clamp(70px, 8vw, 120px);
  --dh-section-space-sm: clamp(40px, 5vw, 70px);
}

/* =========================================================
   FONTS LOKAL – dein-harlesiel.de
   ========================================================= */

/* Bree Serif */
@font-face {
  font-family: 'Bree Serif';
  src: url('/templates/shaper_helixultimate/fonts/bree-serif/bree-serif-v18-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Source Sans 3 – Regular */
@font-face {
  font-family: 'Source Sans 3';
  src: url('/templates/shaper_helixultimate/fonts/source-sans-3/source-sans-3-v19-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Source Sans 3 – Italic */
@font-face {
  font-family: 'Source Sans 3';
  src: url('/templates/shaper_helixultimate/fonts/source-sans-3/source-sans-3-v19-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Source Sans 3 – Medium (500) */
@font-face {
  font-family: 'Source Sans 3';
  src: url('/templates/shaper_helixultimate/fonts/source-sans-3/source-sans-3-v19-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Source Sans 3 – SemiBold (600) */
@font-face {
  font-family: 'Source Sans 3';
  src: url('/templates/shaper_helixultimate/fonts/source-sans-3/source-sans-3-v19-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Source Sans 3 – Bold (700) */
@font-face {
  font-family: 'Source Sans 3';
  src: url('/templates/shaper_helixultimate/fonts/source-sans-3/source-sans-3-v19-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Optional – Extra Bold (800) */
@font-face {
  font-family: 'Source Sans 3';
  src: url('/templates/shaper_helixultimate/fonts/source-sans-3/source-sans-3-v19-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Optional – Black (900) */
@font-face {
  font-family: 'Source Sans 3';
  src: url('/templates/shaper_helixultimate/fonts/source-sans-3/source-sans-3-v19-latin-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   Basis
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--dh-font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--dh-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--dh-primary);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover,
a:focus {
  color: var(--dh-accent);
  text-decoration: none;
}

p {
  margin-bottom: 1.1em;
}

strong {
  color: var(--dh-primary-dark);
}

/* =========================================================
   Headlines
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--dh-font-head);
  color: var(--dh-primary-dark);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

h4 {
  font-size: 1.2rem;
}
@media (max-width: 575px) {
#sp-header {
    height: 60px;
}
}
/* Kleine Zusatzheadline */
.dh-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dh-accent);
  line-height: 1.2;
}
/* =========================================================
   Standard-Abstände für Sektionen
   ========================================================= */

.section,
.sppb-section {
  position: relative;
}

.dh-section {
  padding-top: var(--dh-section-space);
  padding-bottom: var(--dh-section-space);
}

.dh-section-sm {
  padding-top: var(--dh-section-space-sm);
  padding-bottom: var(--dh-section-space-sm);
}

.dh-bg-white {
  background: var(--dh-white);
}

.dh-bg-sand {
  background: var(--dh-sand);
}

.dh-bg-blue {
  background: var(--dh-primary);
  color: rgba(255,255,255,0.92);
}

.dh-bg-blue h1,
.dh-bg-blue h2,
.dh-bg-blue h3,
.dh-bg-blue h4,
.dh-bg-blue h5,
.dh-bg-blue h6 {
  color: #fff;
}

.dh-bg-blue a {
  color: #fff;
}

.dh-bg-blue a:hover {
  color: #ffd9b0;
}

/* =========================================================
   Buttons
   ========================================================= */

.sppb-btn,
.btn,
.dh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: var(--dh-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  box-shadow: var(--dh-shadow-soft);
  transition: all 0.28s ease;
}

.sppb-btn:hover,
.btn:hover,
.dh-btn:hover {
  background: var(--dh-accent);
  color: #fff !important;
  transform: translateY(-2px);
}

.dh-btn-secondary {
  background: transparent;
  color: var(--dh-primary) !important;
  border: 2px solid var(--dh-primary);
  box-shadow: none;
}

.dh-btn-secondary:hover {
  background: var(--dh-primary);
  color: #fff !important;
}

/* =========================================================
   Bilder
   ========================================================= */

img {
  max-width: 100%;
  height: auto;
}

.dh-image-soft img,
.dh-image-soft .sppb-img-responsive {
  border-radius: var(--dh-radius) !important;
  box-shadow: var(--dh-shadow) !important;
}

.dh-image-round img {
  border-radius: 999px;
}

/* =========================================================
   Textgrößen
   ========================================================= */

.dh-lead {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.75;
  color: var(--dh-text-soft);
}

.dh-text-light {
  color: var(--dh-text-soft);
}

.dh-text-white {
  color: rgba(255,255,255,0.92);
}

/* =========================================================
   Karten / Boxen
   ========================================================= */

.dh-card {
  background: var(--dh-white);
  border-radius: var(--dh-radius);
  box-shadow: var(--dh-shadow-soft);
  padding: 32px !important;
  border: 1px solid var(--dh-border);
  height: 100%;
}

.dh-card h3 {
  margin-bottom: 12px;
}

.dh-card-sand {
  background: linear-gradient(180deg, #f4edde 0%, #ece2d0 100%) !important;
}

.dh-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06) !important;
}
.dh-card img {
  border-radius: 12px;
}

.dh-umgebung .dh-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 0;
  overflow: hidden;
}

.dh-umgebung .dh-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.dh-umgebung .dh-card-body {
  padding: 24px 24px 28px;
}

.dh-umgebung h3 {
  margin-bottom: 10px;
}
.dh-umgebung img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .dh-umgebung .dh-card {
    margin-bottom: 28px;
  }

  .dh-umgebung .dh-card img {
    height: 220px;
  }
}
/* =========================================================
   Haus-Teaser
   ========================================================= */

.dh-house-box {
  position: relative;
  background: var(--dh-white);
  border-radius: var(--dh-radius);
  overflow: hidden;
  box-shadow: var(--dh-shadow);
  height: 100%;
}

.dh-house-box .sppb-card-body,
.dh-house-box .sppb-addon-content {
  padding: 28px;
}

.dh-house-title {
  margin-bottom: 10px;
}

.dh-house-subtitle {
  font-family: var(--dh-font-head);
  font-size: 1.35rem;
  color: var(--dh-primary);
  margin-bottom: 18px;
}

.dh-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dh-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.dh-checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--dh-accent);
  font-size: 1.4rem;
  line-height: 1;
}

/* =========================================================
   Hero
   ========================================================= */

.dh-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.dh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 44, 85, 0.78) 0%,
    rgba(22, 44, 85, 0.56) 45%,
    rgba(22, 44, 85, 0.25) 100%
  );
  z-index: 1;
}

.dh-hero > .sppb-row-container,
.dh-hero .sppb-container-inner,
.dh-hero .sppb-container {
  position: relative;
  z-index: 2;
}

.dh-hero h1,
.dh-hero h2,
.dh-hero h3,
.dh-hero p,
.dh-hero .dh-eyebrow {
  color: #fff;
}

.dh-hero .dh-eyebrow {
  color: #ffd29c;
}

.dh-houses .dh-eyebrow {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* =========================================================
   Divider / maritime Details
   ========================================================= */

.dh-divider {
  width: 72px;
  height: 3px;
  background: var(--dh-accent);
  border-radius: 999px;
  margin: 20px 0 0;
}

.dh-divider-center {
  margin-left: auto;
  margin-right: auto;
}

.dh-houses .dh-divider {
  width: 50px;
  height: 3px;
}

.dh-anchor-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--dh-primary);
  color: #fff;
  font-size: 2rem;
  box-shadow: var(--dh-shadow-soft);
}

/* =========================================================
   Footer
   ========================================================= */

#sp-footer,
.footer,
.dh-footer {
  background: var(--dh-primary-dark);
  color: rgba(255,255,255,0.82);
}

#sp-footer a,
.footer a,
.dh-footer a {
  color: #fff;
}

#sp-footer a:hover,
.footer a:hover,
.dh-footer a:hover {
  color: #ffd29c;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991.98px) {
  body {
    font-size: 17px;
  }

  .dh-card,
  .dh-house-box .sppb-card-body,
  .dh-house-box .sppb-addon-content {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .dh-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .dh-section-sm {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .sppb-btn,
  .btn,
  .dh-btn {
    width: 100%;
    justify-content: center;
  }
}
.dh-hero .sppb-addon-text,
.dh-hero p {
  max-width: 520px;
}
.dh-lead {
  margin-bottom: 0;
  line-height: 1.75;
}
.dh-card-divider {
  width: 40px;
  height: 3px;
  background: var(--dh-accent);
  border-radius: 999px;
  margin: 20px auto 18px;
}
#sp-bottom {
	padding: 0px 0 30px !important;
	font-size: 14px;
	line-height: 1.6;
    background: #162c55 !important;
}
.dh-umgebung-card img {
  filter: saturate(0.95) contrast(1.05);
}
h1, h2, h3 {
  letter-spacing: -0.01em;
}
.dh-btn-booking {
  background: var(--dh-accent);
  color: var(--dh-primary-dark) !important;
  font-size: 1.55rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.dh-btn-booking:hover {
  background: var(--dh-sand);
  color: var(--dh-primary-dark) !important;
  transform: translateY(-2px);
}
.dh-btn-booking-sm {
  background: var(--dh-accent);
  color: var(--dh-primary-dark) !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.dh-btn-booking-sm:hover {
  background: var(--dh-sand);
  color: var(--dh-primary-dark) !important;
  transform: translateY(-2px);
}
/* =========================================================
   HERO AUSTERNFISCHER – FINAL OHNE PARALLAX
   ========================================================= */

.dh-subhero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 72% center;
  background-attachment: scroll !important;
}

/* sanfter Verlauf nur für bessere Lesbarkeit links */
.dh-subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 44, 85, 0.34) 0%,
    rgba(22, 44, 85, 0.18) 34%,
    rgba(22, 44, 85, 0.04) 58%,
    rgba(22, 44, 85, 0.00) 78%
  );
  z-index: 1;
}

.dh-subhero .sppb-row-container,
.dh-subhero .sppb-container,
.dh-subhero .sppb-container-inner,
.dh-subhero .sppb-row {
  position: relative;
  z-index: 2;
}

/* Inhaltsspalte bewusst schmal halten,
   damit Text + Button nie ins Motiv laufen */
.dh-subhero-content {
  max-width: 440px;
  position: relative;
  z-index: 3;
}

/* Eyebrow */
.dh-subhero .dh-eyebrow,
.dh-eyebrow-light {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.2;
}

/* Headline */
.dh-subhero-title {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--dh-primary-dark);
  max-width: 430px;
  text-wrap: balance;
}

/* optionaler Subtext */
.dh-subhero-text {
  max-width: 430px;
  margin: 0 0 30px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

/* ALLES linksbündig */
.dh-subhero .sppb-addon,
.dh-subhero .sppb-addon-content,
.dh-subhero .sppb-addon-text-block,
.dh-subhero .sppb-addon-header {
  text-align: left;
}

/* Button immer linksbündig und nie frei im Bild */
.dh-subhero .sppb-button-wrapper,
.dh-subhero .sppb-addon-button {
  margin: 0;
  text-align: left;
}

.dh-subhero .sppb-btn,
.dh-subhero .dh-btn-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  margin: 0;
}

/* optional: wenn zweite leere Spalte vorhanden ist */
.dh-subhero-empty {
  min-height: 1px;
}

/* =========================================================
   DESKTOP FEINSCHLIFF
   ========================================================= */

@media (min-width: 1200px) {
  .dh-subhero {
    min-height: 76vh;
    background-position: 72% center;
  }

  .dh-subhero-content {
    max-width: 430px;
  }

  .dh-subhero-title {
    max-width: 420px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
  .dh-subhero {
    min-height: 62vh;
    background-position: 78% center;
  }

  .dh-subhero::before {
    background: linear-gradient(
      90deg,
      rgba(22, 44, 85, 0.40) 0%,
      rgba(22, 44, 85, 0.18) 44%,
      rgba(22, 44, 85, 0.04) 66%,
      rgba(22, 44, 85, 0.00) 84%
    );
  }

  .dh-subhero-content {
    max-width: 400px;
  }

  .dh-subhero-title {
    font-size: clamp(2.4rem, 5.8vw, 4rem);
    max-width: 390px;
  }

  .dh-subhero-text {
    font-size: 1.02rem;
    margin-bottom: 26px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
  .dh-subhero {
    min-height: 50vh;
    padding-top: 72px;
    padding-bottom: 42px;
    background-position: 32% 10% !important;
    background-size: cover;
    background-attachment: scroll !important;
  }

  /* Overlay auf Mobile deutlich zurücknehmen */
  .dh-subhero::before {
    background: linear-gradient(
      180deg,
      rgba(22, 44, 85, 0.14) 0%,
      rgba(22, 44, 85, 0.06) 100%
    );
  }

  .dh-subhero-content {
    max-width: 100%;
  }

  .dh-subhero .dh-eyebrow,
  .dh-eyebrow-light {
    margin-bottom: 16px;
    font-size: 0.88rem;
    letter-spacing: 0.14em;
  }

  .dh-subhero-title {
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 3.15rem);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .dh-subhero-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .dh-subhero .sppb-btn,
  .dh-subhero .dh-btn-booking {
    width: auto;
    min-width: 0;
  }

  .dh-subhero .sppb-button-wrapper,
  .dh-subhero .sppb-addon-button {
    margin-bottom: 0;
  }
}

/* =========================================================
   KLEINE PHONES
   ========================================================= */

@media (max-width: 480px) {
  .dh-subhero {
    min-height: 45vh;
    padding-top: 46px !important;
    padding-bottom: 34px;
  }

  .dh-subhero-title {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
  }

  .dh-subhero .sppb-btn,
  .dh-subhero .dh-btn-booking {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* =========================================================
   HOUSE INTRO 6+6
   ========================================================= */

.dh-house-intro {
  position: relative;
}

.dh-house-intro-left,
.dh-house-intro-right {
  position: relative;
}

/* Linkes Hauptbild */
.dh-house-intro-image {
  margin-bottom: 28px;
}

.dh-house-intro-image img,
.dh-house-intro-image .sppb-img-responsive {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* Adresse */
.dh-house-address {
  margin-bottom: 24px;
  color: var(--dh-text);
  line-height: 1.7;
  font-size: 1rem;
}

.dh-house-intro-title {
  margin: 0 0 18px;
}

.dh-house-intro-text,
.dh-house-location-text {
  color: var(--dh-text-soft);
  line-height: 1.75;
  font-size: 1.04rem;
}

.dh-house-intro-text {
  margin-bottom: 18px;
}

.dh-house-location-text {
  margin-bottom: 0;
}

/* Rechte Galerie-Spalte */
.dh-house-gallery {
  position: relative;
}

/* Wenn SP Easy Image Gallery / ähnliche Galerie Bilder direkt ausgibt */
.dh-house-gallery img {
  border-radius: 16px;
}

/* Optional: Galerie-Items etwas ruhiger */
.dh-house-gallery .sp-easy-image-gallery-item,
.dh-house-gallery .ei-gallery-item,
.dh-house-gallery .gallery-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

/* kleine optische Trennung links/rechts */
.dh-house-intro-right {
  padding-left: 8px;
}

.dh-house-intro-left {
  padding-right: 8px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
  .dh-house-intro-left {
    margin-bottom: 34px;
    padding-right: 0;
  }

  .dh-house-intro-right {
    padding-left: 0;
  }

  .dh-house-intro-image {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .dh-house-address {
    margin-bottom: 18px;
    font-size: 0.98rem;
  }

  .dh-house-intro-text,
  .dh-house-location-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .dh-house-intro-image img,
  .dh-house-intro-image .sppb-img-responsive {
    border-radius: 16px;
  }
}
.dh-house-intro ul {
  margin-top: 14px;
  padding-left: 18px;
}

.dh-house-intro li {
  margin-bottom: 6px;
  color: var(--dh-text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}
.dh-modal-content h3 {
  margin: 0 0 12px;
  color: var(--dh-primary-dark);
  font-size: 1.35rem;
}

.dh-modal-content h3:not(:first-child) {
  margin-top: 28px;
}

.dh-modal-content ul {
  margin: 0;
  padding-left: 18px;
}

.dh-modal-content li {
  margin-bottom: 6px;
  color: var(--dh-text);
  line-height: 1.6;
}
/* =========================================================
   MODAL
   ========================================================= */

.dh-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 50, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.dh-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Box */
.dh-modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 42px 38px;
  max-width: 760px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* Close */
.dh-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #999;
}

.dh-modal-close:hover {
  color: var(--dh-primary-dark);
}

/* Titel */
.dh-modal-title {
  margin-bottom: 24px;
}

/* Content */
.dh-modal-content h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: var(--dh-primary-dark);
}

.dh-modal-content h3:not(:first-child) {
  margin-top: 26px;
}

.dh-modal-content ul {
  margin: 0;
  padding-left: 18px;
}

.dh-modal-content li {
  margin-bottom: 6px;
  color: var(--dh-text);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 767.98px) {
  .dh-modal-box {
    padding: 28px 20px;
  }
}
/* Box als Flex-Container */
.dh-modal-box {
  background: #fff;
  border-radius: 20px;
  max-width: 760px;
  width: 92%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* HEADER FIX */
.dh-modal-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  min-height: 74px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.dh-modal-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--dh-primary-dark);
  flex: 1 1 auto;
  min-width: 0;
}
/* BODY SCROLLT */
.dh-modal-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 28px 30px;
}
@media (max-width: 767.98px) {
  .dh-modal-header {
    min-height: 64px;
    padding: 14px 16px;
  }

  .dh-modal-title {
    font-size: 1rem;
  }

  .dh-modal-close {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 28px;
  }

  .dh-modal-body {
    padding: 20px 18px 24px;
  }
}
/* Close Button jetzt sauber im Header */
.dh-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: none;
  background: #f4f4f4;
  color: #7d7d7d;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.dh-modal-close:hover {
  background: #ececec;
  color: var(--dh-primary-dark);
}

.dh-modal-close:hover {
  color: var(--dh-primary-dark);
}

/* Titel ohne extra Margin */
.dh-modal-title {
  margin: 0;
}
.dh-modal-header {
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}
.sand-bg {
  position: relative;
  background-color: #e7dfd3; /* Fallback */
  background-image: url('/images/sand.jpg') !important; /* Pfad anpassen */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 991.98px) {

  .sand-bg {
    background-attachment: scroll;
    background-position: center top;
  }

  .sand-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.4),
      rgba(255,255,255,0.2)
    );
    pointer-events: none;
  }

}
.dh-info-section {
  padding: 90px 0;
}

.dh-info-box {
  padding: 30px 20px;
  max-width: 480px;
}

.dh-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c89b3c;
  margin-bottom: 12px;
}

.dh-info-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--dh-primary-dark);
  margin-bottom: 14px;
}

.dh-info-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5f6a75;
  margin-bottom: 20px;
}
.dh-btn-outline {
  display: inline-block;
  border: 2px solid #e58a2f;
  color: #e58a2f;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dh-btn-outline:hover {
  background: #e58a2f !important;
  color: #fff;
}

@media (max-width: 767.98px) {

  .dh-info-section {
    padding: 60px 0;
  }

  .dh-info-box {
    text-align: center;
    margin-bottom: 30px;
  }

  .dh-info-title {
    font-size: 1.5rem;
  }

}
/* =========================================================
   MODAL – BELEGUNGSPLAN
   ========================================================= */

.dh-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
}

.dh-modal.is-open {
    display: block;
}

.dh-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.dh-modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: min(1400px, calc(100vw - 40px));
    max-height: calc(100vh - 40px);

    background: #f7f5f1;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.dh-modal-inner {
    overflow-y: auto;
    max-height: calc(100vh - 40px);
    padding: 28px 24px 30px;
}

.dh-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #1f3b73;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
}

/* Mobile */
@media (max-width: 767px) {
    .dh-modal-dialog {
        width: calc(100vw - 16px);
        height: calc(100vh - 16px);
        transform: translate(-50%, -50%);
        border-radius: 12px;
    }

    .dh-modal-inner {
        padding: 18px 12px 20px;
    }
}
.dh-booking-modal {
    position: fixed !important;
    inset: 0 !important;
    display: none;
    z-index: 999999 !important;
}

.dh-booking-modal.is-open {
    display: block;
}

.dh-booking-modal-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.65);
}

.dh-booking-modal-dialog {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: min(1400px, calc(100vw - 40px));
    max-height: calc(100vh - 40px);
    background: #f7f5f1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.dh-booking-modal-inner {
    overflow-y: auto;
    max-height: calc(100vh - 40px);
    padding: 28px 24px 30px;
}

.dh-booking-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #1f3b73;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
}

@media (max-width: 767px) {
    .dh-booking-modal-dialog {
        width: calc(100vw - 16px);
        height: calc(100vh - 16px);
        border-radius: 12px;
    }

    .dh-booking-modal-inner {
        padding: 18px 12px 20px;
    }
}
/* =========================
   AUSSTATTUNGS MODAL
========================= */

.dh-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
}

.dh-modal.is-open {
    display: block;
}

/* Overlay */
.dh-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* Box */
.dh-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: min(900px, calc(100vw - 40px));
    max-height: calc(100vh - 60px);

    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

/* =========================
   MODAL HEADER – HELL & CLEAN
========================= */

.dh-modal-header {
    position: sticky;
    top: 0;
    z-index: 5;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 20px;

    background: #f7f5f1; /* gleiche Farbe wie Modal */
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Titel */
.dh-modal-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f3b73; /* dein Blau aus dem Design */
    letter-spacing: 0.3px;
}

/* Close Button */
.dh-modal-close {
    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #1f3b73; /* dein CI-Blau */
    color: #fff;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover */
.dh-modal-close:hover {
    background: #162c55;
    transform: scale(1.05);
    color: #fff !important;
}
/* Body Scrollbereich */
.dh-modal-body {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Content */
.dh-modal-content {
    padding: 20px 24px 30px;
}

/* Listen & Struktur */
.dh-modal-content h3 {
    margin-top: 20px;
    margin-bottom: 8px;
    color: #1f3b73;
}

.dh-modal-content ul {
    margin: 0 0 12px;
    padding-left: 18px;
}

.dh-modal-content li {
    margin-bottom: 4px;
    color: #444;
}

/* Mobile */
@media (max-width: 767px) {
    .dh-modal-box {
        width: calc(100vw - 16px);
        max-height: calc(100vh - 20px);
        border-radius: 12px;
    }

    .dh-modal-content {
        padding: 16px;
    }
}
.dh-no-data {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    color: #666;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}
:root {
    --dh-primary: #1f3b73;
    --dh-primary-dark: #162c55;
    --dh-text: #2c3440;
    --dh-text-soft: #5e6875;

    --dh-free: #9ec2ea;
    --dh-free-strong: #7fa9d6;
    --dh-free-text: #1c3e6e;

    --dh-occupied: #e7bbbb;
    --dh-occupied-text: #7c2323;

    --dh-blocked: #e4e0d7;
    --dh-blocked-text: #6a645c;

    --dh-changeover: #e8d19a;
    --dh-changeover-text: #7a5a12;

    --dh-card-bg: #ffffff;
    --dh-card-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    --dh-day-border: rgba(255, 255, 255, 0.25);
}

/* Grundlayout */
.dh-booking-page {
    max-width: 1400px;
    margin: 0 auto;
    color: var(--dh-text);
}

.dh-booking-header {
    margin-bottom: 24px;
}

.dh-booking-title {
    margin: 0 0 14px;
    color: var(--dh-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.dh-booking-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.dh-toolbar-left,
.dh-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dh-toolbar-label {
    font-weight: 700;
    color: var(--dh-primary);
}

.dh-start-select {
    min-width: 190px;
    padding: 10px 12px;
    border: 1px solid #d3cdc3;
    border-radius: 8px;
    background: #fff;
    color: var(--dh-text);
    font: inherit;
}

.dh-nav-btn {
    padding: 10px 16px;
    border: 0;
    border-radius: 10px;
    background: var(--dh-primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.dh-nav-btn:hover {
    background: var(--dh-primary-dark);
    transform: translateY(-1px);
}

/* Legende */
.dh-booking-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.dh-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dh-text-soft);
}

.dh-legend-box {
    width: 16px;
    height: 16px;
    border-radius: 6px;
    display: inline-block;
}

.dh-legend-box.free { background: var(--dh-free-strong); }
.dh-legend-box.occupied { background: var(--dh-occupied); }
.dh-legend-box.blocked { background: var(--dh-blocked); }
.dh-legend-box.changeover { background: var(--dh-changeover); }

/* Kalendergrid */
.dh-calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.dh-month-card {
    background: var(--dh-card-bg);
    border-radius: 20px;
    padding: 18px 18px 20px;
    box-shadow: var(--dh-card-shadow);
}

.dh-month-title {
    margin: 0 0 14px;
    font-size: 1.2rem;
    color: var(--dh-primary);
    text-align: center;
}

.dh-weekdays,
.dh-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.dh-weekdays {
    margin-bottom: 8px;
}

.dh-weekday {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dh-text-soft);
    padding: 6px 0;
}

/* Tage */
.dh-day,
.dh-day-empty {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px var(--dh-day-border);
}

.dh-day-empty {
    background: transparent;
    box-shadow: none;
}

.dh-day {
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.dh-day:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Einzelzustände */
.dh-day.free {
    background: var(--dh-free-strong);
    color: var(--dh-free-text);
}

.dh-day.occupied {
    background: var(--dh-occupied);
    color: var(--dh-occupied-text);
}

.dh-day.blocked {
    background: var(--dh-blocked);
    color: var(--dh-blocked-text);
}

.dh-day.changeover {
    background: var(--dh-changeover);
    color: var(--dh-changeover-text);
}

.dh-day.unknown {
    background: #f2f2f2;
    color: #999;
}

/* Mischzustände */
.dh-day.occupied_free,
.dh-day.free_occupied,
.dh-day.free_blocked,
.dh-day.blocked_free,
.dh-day.occupied_blocked,
.dh-day.blocked_occupied {
    position: relative;
    color: #333;
    overflow: hidden;
}

/* belegt -> frei */
.dh-day.occupied_free {
    background: linear-gradient(
        135deg,
        var(--dh-occupied) 0 58%,
        var(--dh-free-strong) 58% 100%
    );
}

/* frei -> belegt */
.dh-day.free_occupied {
    background: linear-gradient(
        135deg,
        var(--dh-free-strong) 0 58%,
        var(--dh-occupied) 58% 100%
    );
}

/* frei -> nicht buchbar */
.dh-day.free_blocked {
    background: linear-gradient(
        135deg,
        var(--dh-free-strong) 0 62%,
        var(--dh-blocked) 62% 100%
    );
}

/* nicht buchbar -> frei */
.dh-day.blocked_free {
    background: linear-gradient(
        135deg,
        var(--dh-blocked) 0 38%,
        var(--dh-free-strong) 38% 100%
    );
}

/* belegt -> nicht buchbar */
.dh-day.occupied_blocked {
    background: linear-gradient(
        135deg,
        var(--dh-occupied) 0 58%,
        var(--dh-blocked) 58% 100%
    );
}

/* nicht buchbar -> belegt */
.dh-day.blocked_occupied {
    background: linear-gradient(
        135deg,
        var(--dh-blocked) 0 38%,
        var(--dh-occupied) 38% 100%
    );
}

/* Leerer Zustand */
.dh-no-data {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    color: #666;
    box-shadow: var(--dh-card-shadow);
}

/* Tablet */
@media (max-width: 991.98px) {
    .dh-calendar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .dh-booking-title {
        font-size: 2rem;
    }

    .dh-booking-toolbar {
        align-items: stretch;
    }

    .dh-toolbar-left,
    .dh-toolbar-right {
        width: 100%;
    }

    .dh-start-select,
    .dh-nav-btn {
        width: 100%;
    }

    .dh-calendar-grid {
        grid-template-columns: 1fr;
    }

    .dh-month-card {
        padding: 16px;
        border-radius: 16px;
    }

    .dh-weekdays,
    .dh-days {
        gap: 6px;
    }

    .dh-day,
    .dh-day-empty {
        border-radius: 10px;
        font-size: 0.9rem;
    }
}
#lage-map {
  height: 70vh;
  min-height: 480px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.leaflet-tile {
  filter: grayscale(20%) contrast(90%) brightness(105%);
}
/* =========================
   LAGE HERO
========================= */

.dh-lage-hero {
    padding: 0 0 0px;
    background: #fff;
}

.dh-lage-map-wrap {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
#lage-map {
    height: 72vh;
    min-height: 520px;
    width: 100%;
    z-index: 1;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
}

.dh-map-overlay {
    position: absolute;
    top: 42px;
    left: 62px;
    z-index: 1000;
    max-width: 460px;
    padding: 24px 26px 24px;
    border-radius: 18px;
    background: rgba(31, 59, 115, 0.8);
    backdrop-filter: blur(4px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.48);
}

.dh-map-eyebrow {
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
}

.dh-map-title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    color: #fff;
}

.dh-map-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
}

/* Karte ruhiger machen */
.leaflet-tile {
    filter: grayscale(18%) contrast(92%) brightness(103%);
}

/* Controls etwas hübscher */
.leaflet-control-zoom a {
    color: #1f3b73 !important;
}

.leaflet-control-zoom a:hover {
    color: #ddd !important;
}

/* Eigene Marker */
.dh-house-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1f3b73;
    color: #fff;
    font-size: 16px;
    border: 2px solid #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.dh-house-marker i {
    transform: translateY(1px); /* optisch zentrieren */
}
/* Popup-Styling */
.leaflet-popup-content-wrapper {
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.leaflet-popup-content {
    margin: 12px 14px;
    font-family: inherit;
    color: #2c3440;
    line-height: 1.5;
}

.dh-map-popup-title {
    font-weight: 700;
    color: #1f3b73;
    margin-bottom: 4px;
}

.dh-map-popup-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    color: #1f3b73;
    text-decoration: none;
}

.dh-map-popup-link:hover {
    color: #162c55;
}

/* Mobile */
@media (max-width: 991.98px) {
    #lage-map {
        height: 62vh;
        min-height: 460px;
    }

    .dh-map-overlay {
        top: 28px;
        left: 28px;
        right: 28px;
        max-width: 480px;
    }
}

@media (max-width: 767.98px) {

        .dh-map-overlay {
        top: 14px;
        right: 14px;
        left: auto;

        width: 78%;
        max-width: 300px;

        padding: 14px 16px;
        border-radius: 14px;
    }

    .dh-map-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
        margin-bottom: 6px;
    }

    .dh-map-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
        line-height: 1.05;
        margin-bottom: 8px;
    }

    .dh-map-text {
        font-size: 0.92rem;
        line-height: 1.45;

    }
    .leaflet-top.leaflet-left {
    margin-top: 10px;
    margin-left: 10px;
}
}
/* Zoom-Container */
.leaflet-control-zoom {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Buttons */
.leaflet-control-zoom a {
    background: #1f3b73 !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
}

/* Hover */
.leaflet-control-zoom a:hover {
    background: #162c55;
    color: #fff;
}

/* Trennlinie entfernen */
.leaflet-control-zoom a:first-child {
    border-bottom: 2px solid rgba(255,255,255,0.2);
}
.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
	border: 0px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
.dh-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0 40px;
}

.dh-location-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.dh-location-card h3 {
  margin: 0 0 10px;
  color: #1f3b73;
  font-size: 1.2rem;
}

.dh-location-card p {
  margin: 0;
  color: #4f5967;
  line-height: 1.7;
}
.dh-location-card {
    transition: all 0.2s ease;
}

.dh-location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}
@media (max-width: 767.98px) {
  .dh-location-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dh-location-card {
    padding: 18px;
    border-radius: 14px;
  }
}
.dh-location-card h3 {
    position: relative;
    padding-left: 14px;
}

.dh-location-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 16px;
    background: #f2b705; /* dein Orange */
    border-radius: 2px;
}
/* =========================================
   SUBHERO UMGEBUNG
========================================= */

.dh-subhero-umgebung {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Hintergrundbild */
.dh-subhero-umgebung::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/images/hero-umgebung.jpg') center/cover no-repeat;
    z-index: 1;
}

/* dunkler Verlauf */
.dh-subhero-umgebung::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(31, 59, 115, 0.75) 0%,
        rgba(31, 59, 115, 0.55) 35%,
        rgba(31, 59, 115, 0.25) 60%,
        rgba(31, 59, 115, 0.05) 100%
    );
    z-index: 1;
}

/* Content-Container */
.dh-subhero-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 60px 40px;
}

/* Eyebrow */
.dh-subhero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 10px;
}

/* Headline */
.dh-subhero-umgebung h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
}

/* Text */
.dh-subhero-umgebung p {
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .dh-subhero-umgebung {
        height: auto;
        min-height: 380px;
        padding: 60px 20px 40px;
        align-items: flex-end;
    }

    .dh-subhero-inner {
        padding: 0;
    }

    .dh-subhero-umgebung::after {
        background: linear-gradient(
            180deg,
            rgba(31, 59, 115, 0.5) 0%,
            rgba(31, 59, 115, 0.6) 60%,
            rgba(31, 59, 115, 0.8) 100%
        );
    }

    .dh-subhero-umgebung h1 {
        font-size: 1.8rem;
    }

    .dh-subhero-umgebung p {
        font-size: 0.95rem;
    }
}
.dh-section {
  padding: 70px 20px;
}

.dh-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dh-section-title {
  margin: 0 0 20px;
  color: #1f3b73;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.dh-section p {
  color: #4f5967;
  line-height: 1.8;
  margin: 0 0 18px;
}

.dh-section-dark {
  background: #1f3b73;
}

.dh-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dh-location-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.dh-location-card h3 {
  margin: 0 0 10px;
  color: #1f3b73;
  font-size: 1.2rem;
}

.dh-location-card p {
  margin: 0;
  color: #4f5967;
  line-height: 1.7;
}

.dh-section-links {
  padding-top: 40px;
}

.dh-service-links {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.dh-service-links li a {
  display: inline-block;
  color: #1f3b73;
  font-weight: 700;
  text-decoration: none;
}

.dh-service-links li a:hover {
  color: #162c55;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .dh-section {
    padding: 50px 20px;
  }

  .dh-location-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dh-location-card {
    padding: 18px;
    border-radius: 14px;
  }
}
.dh-booking-request {
  padding: 80px 0;
  background: #fff;
}

.dh-booking-request__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.dh-booking-request__intro {
  padding-top: 10px;
}



.dh-booking-request__intro h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  color: #20344f;
}

.dh-booking-request__intro p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.7;
  color: #4d5a6b;
  max-width: 620px;
}

.dh-booking-request__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dh-booking-request__benefits li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #20344f;
  font-size: 16px;
  line-height: 1.5;
}

.dh-booking-request__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8a33c;
}

.dh-booking-request__formwrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 34px 28px;
  box-shadow: 0 10px 30px rgba(26, 44, 70, 0.08);
}

.dh-booking-form {
  margin: 0;
}

.dh-form-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.dh-form-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.dh-field {
  margin-bottom: 18px;
}

.dh-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #20344f;
}

.dh-field input[type="text"],
.dh-field input[type="email"],
.dh-field input[type="date"],
.dh-field select,
.dh-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d7dde4;
  border-radius: 10px;
  padding: 0 16px;
  background: #fff;
  color: #20344f;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.dh-field textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.dh-field input:focus,
.dh-field select:focus,
.dh-field textarea:focus {
  outline: none;
  border-color: #7a95b8;
  box-shadow: 0 0 0 4px rgba(122, 149, 184, 0.12);
}

.dh-field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 24px;
}

.dh-field--checkbox input[type="checkbox"] {
  margin-top: 4px;
  transform: scale(1.1);
}

.dh-field--checkbox label {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #556274;
}

.dh-form-actions {
  margin-top: 6px;
}

.dh-btn-primary {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 16px 28px;
  background: #20344f;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.dh-btn-primary:hover {
  background: #2b4568;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(32, 52, 79, 0.18);
}

.dh-form-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: #7b8795;
}

.dh-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .dh-booking-request {
    padding: 60px 0;
  }

  .dh-booking-request__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 20px;
  }

  .dh-booking-request__formwrap {
    padding: 24px 22px 22px;
  }
}

@media (max-width: 767px) {
  .dh-form-grid--2 {
    grid-template-columns: 1fr;
  }

  .dh-booking-request__intro h2 {
    font-size: 32px;
  }
}
.dh-thankyou {
  padding: 100px 20px;
  text-align: center;
  background: #fff;
}

.dh-thankyou__inner {
  max-width: 720px;
  margin: 0 auto;
}

.dh-thankyou h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 10px 0 20px;
  color: #20344f;
}

.dh-thankyou__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #4d5a6b;
  margin-bottom: 20px;
}

.dh-thankyou p {
  color: #556274;
  line-height: 1.7;
}

.dh-thankyou__box {
  margin: 40px 0;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(26,44,70,0.08);
  text-align: left;
}

.dh-thankyou__box ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.dh-thankyou__box li {
  margin-bottom: 8px;
}

.dh-thankyou__actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.dh-btn-secondary {
  padding: 16px 28px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #20344f;
  color: #20344f;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dh-btn-secondary:hover {
  background: #20344f;
  color: #fff;
}
.dh-content-section {
  padding: 80px 0;
  background: #f7f4ee;
}

.dh-content-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 30px;
}

.dh-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #556274;
  margin-bottom: 40px;
}

.dh-info-block {
  margin-bottom: 26px;
  padding: 28px 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(26, 44, 70, 0.06);
}

.dh-info-block h2 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #20344f;
}

.dh-info-block p {
  margin: 0 0 12px;
  color: #556274;
  line-height: 1.75;
}

.dh-info-block p:last-child {
  margin-bottom: 0;
}

.dh-list {
  margin: 0 0 12px 18px;
  padding: 0;
}

.dh-list li {
  margin-bottom: 8px;
  color: #556274;
  line-height: 1.7;
}

.dh-info-block--highlight {
  background: #20344f;
}

.dh-info-block--highlight h2,
.dh-info-block--highlight p,
.dh-info-block--highlight li,
.dh-info-block--highlight a {
  color: #ffffff;
}

.dh-info-block--highlight a {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .dh-content-section {
    padding: 60px 0;
  }

  .dh-content-inner {
    padding: 0 20px;
  }

  .dh-info-block {
    padding: 22px 20px;
  }

  .dh-info-block h2 {
    font-size: 21px;
  }
}
li.menu-booking > a,
li.menu-booking > span,
.menu-booking > a,
.menu-booking > span {
  background: #e58a2f !important;
  color: #2b4568 !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  margin-left: 0px;
  display: inline-block !important;
  line-height: 1.2;
  transition: all 0.2s ease;
    font-weight: bold;
    opacity: 1 !important;
}

li.menu-booking > a:hover,
li.menu-booking > span:hover,
.menu-booking > a:hover,
.menu-booking > span:hover {
  background: #2b4568 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.menu-booking a::before {
  content: "\f061"; /* Pfeil nach rechts */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 12px;
}