/* Hero auf Stadtteil/Unterseiten: extra kurz – Notfall-Strip mit Telefonnummer sichtbar */
.page-hero-wrap,
header.page-hero-wrap.hero-bright {
  position: relative;
  color: #ffffff;
  padding: 10px 0 12px;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Hero-Bild: sehr heller Overlay, Bild gut sichtbar */
.page-hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
  z-index: 0;
}
/* Nippes: gleiche Helligkeit wie Startseite */
.page-hero-wrap.hero-bright::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.10) 100%);
}
.page-hero-wrap .hero,
.page-hero-wrap .container {
  position: relative;
  z-index: 1;
}

/* Logo/Brand im Hero auf Stadtteil-Unterseiten ausblenden */
.page-hero-wrap .hero .brand {
  display: none;
}

.hero {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.55fr);
  align-items: center;
}

.hero-content {
  display: grid;
  gap: 12px;
  grid-column: 1;
}

.brand-link {
  width: fit-content;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #16a34a;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* Hero-Schrift kleiner auf Stadtteil-Seiten */
.hero h1 {
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  max-width: 680px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Wie Startseite: Hinweistext und „Zu den Preisen“-Button */
.hero-price-note {
  font-size: clamp(14px, 1.8vw, 18px);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
  max-width: 42ch;
}

.hero-btn-preise {
  display: inline-block;
  width: fit-content;
  margin-top: 10px;
  padding: 10px 18px;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-btn-preise:hover {
  background: #15803d;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.hero-price {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-price .price-highlight {
  font-size: clamp(32px, 5vw, 56px);
  color: #16a34a;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero-price .hero-price-days,
.hero-price span:not(.price-highlight) {
  color: #fff;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* "Jetzt anrufen" mit Nummer im Hero ausblenden */
.page-hero-wrap .hero-actions .btn[href^="tel:"] {
  display: none;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  background: #16a34a;
  color: #fff;
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 700;
  padding: 12px 18px;
  min-height: 42px;
  min-width: 44px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.hero-actions .btn:hover {
  background: #15803d;
}
.hero-actions .btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.hero-actions .btn.secondary:hover {
  border-color: #86efac;
  color: #86efac;
}

/* Meta-Zeile (Pills) im Hero */
.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
/* Auf den Stadtteil-Seiten (hero-bright) die zwei Pills ausblenden,
   damit der Hero optisch auf die gleiche Höhe wie die Startseite kommt */
.page-hero-wrap.hero-bright .hero-meta {
  display: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.25);
  border: 1px solid rgba(22, 163, 74, 0.5);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.hero-top-banner,
.hero-banner {
  display: inline-block;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 4px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* Stadtteil-Hero: grünen Hintergrund entfernen */
.page-hero-wrap .hero-banner {
  background: transparent !important;
}

.hero-media,
.hero-visual {
  display: none;
}

/* Rezensions-Button/Kästchen: 1:1 wie Startseite (Größe, Aufbau, Farben) */
.page-hero-wrap .hero-google-box {
  margin-top: 18px;
  margin-bottom: 20px;
  display: block;
  visibility: visible;
  opacity: 1;
  position: static;
  right: auto;
  top: auto;
  z-index: auto;
}
.page-hero-wrap .hero-google-box .hero-google-rating,
.rezension-strip .hero-google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 18px;
  border-radius: 12px;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s;
  color: #fff;
}
.page-hero-wrap .hero-google-box .hero-google-rating:hover,
.rezension-strip .hero-google-rating:hover {
  box-shadow: none;
  transform: scale(1.02);
}
.page-hero-wrap .hero-google-box .hero-google-rating:focus-visible,
.rezension-strip .hero-google-rating:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.page-hero-wrap .hero-google-rating .stars,
.page-hero-wrap .hero-google-box .hero-google-rating .stars,
.rezension-strip .hero-google-rating .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.page-hero-wrap .hero-google-rating .stars svg,
.page-hero-wrap .hero-google-box .hero-google-rating .stars svg,
.rezension-strip .hero-google-rating .stars svg {
  width: 22px;
  height: 22px;
  fill: #facc15;
}
.page-hero-wrap .hero-google-rating .stars svg path,
.page-hero-wrap .hero-google-box .hero-google-rating .stars svg path,
.rezension-strip .hero-google-rating .stars svg path {
  fill: #facc15;
}
.page-hero-wrap .hero-google-box .hero-google-rating .rating-num,
.rezension-strip .hero-google-rating .rating-num {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}
.page-hero-wrap .hero-google-box .hero-google-rating .rating-label,
.rezension-strip .hero-google-rating .rating-label {
  font-size: 14px;
  color: #e2e8f0;
  font-weight: 600;
}
.page-hero-wrap .hero-google-box .hero-google-rating .rating-link-hint,
.rezension-strip .hero-google-rating .rating-link-hint {
  font-size: 13px;
  color: #86efac;
  font-weight: 600;
  margin-left: 4px;
}
.page-hero-wrap .hero-google-box .hero-google-rating:hover .rating-link-hint,
.rezension-strip .hero-google-rating:hover .rating-link-hint {
  color: #bbf7d0;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .page-hero-wrap:not(.hero-bright) {
    padding: 24px 0 36px;
    min-height: max(52vh, 480px);
    display: flex;
    align-items: center;
  }
  /* Stadtteil/Unterseiten: kürzerer Hero – Notfall-Strip mit Telefon sichtbar */
  .page-hero-wrap.hero-bright,
  header.page-hero-wrap.hero-bright {
    padding: 12px 0 16px;
    min-height: max(24vh, 240px);
    display: flex;
    align-items: center;
  }
  .page-hero-wrap .hero {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 6px;
  }
  .hero-price .price-highlight {
    font-size: clamp(48px, 7vw, 80px);
    line-height: 1;
    margin-right: 6px;
  }
  .hero-price .hero-price-days,
  .hero-price span:not(.price-highlight) {
    font-size: clamp(16px, 1.8vw, 22px);
  }
  .hero p {
    font-size: 15px;
    margin-top: 10px;
  }
  .hero-top-banner,
  .hero-banner {
    font-size: 14px;
    padding: 6px 18px;
  }
  .hero-actions .btn {
    font-size: 16px;
    padding: 12px 18px;
    min-height: 44px;
  }
  .pill {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 600px) {
  /* Stadtteil/Unterseiten: Hero kompakt – Notfall-Strip mit Telefon sichtbar */
  .page-hero-wrap.hero-bright,
  header.page-hero-wrap.hero-bright {
    min-height: 180px;
    padding: 8px 0 10px;
  }
  .hero h1 {
    font-size: clamp(22px, 6vw, 32px);
    white-space: normal;
  }
  .hero-actions .btn {
    font-size: 14px;
    min-height: 42px;
    padding: 10px 14px;
  }
  .pill {
    font-size: 12px;
    min-height: 36px;
    padding: 8px 12px;
  }
}
