/* =========================================================
   ===============  STYLES.CSS – FeWo Berger  ===============
   Struktur / Inhaltsverzeichnis:
   1. Allgemeines Styling
   2. Navbar
   3. Buttons & Links
   4. Hero Section
   5. Ausstattung (Detailseite & Startseite)
   6. Preise & Bedingungen
   7. Kontakt
   8. Footer
   9. Cookie Banner
   10. Map Container
   11. Beschreibung
   12. Galerie
   13. Ausstattung – Startseite
   14. Umgebung – Startseite
   ========================================================= */


/* =========================================================
   1. Allgemeines Styling
   ========================================================= */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f8f8;
  color: #3a3a3a; /* vorher #5f5f5f -> etwas dunkleres Grau */
  line-height: 1.5;
  font-weight: 600;
}

section {
  scroll-margin-top: 200px; /* Höhe der Navbar + Puffer */
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
}

.kontakt-header {
  margin-top: 2rem;
}

.small-heading {
  font-size: 1rem;
  font-weight: bold;
}

.justify-text {
  text-align: justify;
  text-justify: inter-word;
}

h1 {
  text-align: center;
  font-size: 2.2rem;
  position: relative;
}

h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #aaa;
  margin: 10px auto 0;
  border-radius: 2px;
}



/* =========================================================
   2. Navbar Styling
   ========================================================= */
.navbar {
  background-color: #f0f0f0 !important;
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
}

.navbar .nav-link {
  color: #555 !important;
  transition: background 0.3s, color 0.3s;
}

.navbar .nav-link:hover {
  background-color: #e0e0e0;
  color: #222 !important;
}

/* Outline Buttons in Navbar */
.navbar .btn-outline-primary {
  color: #555;
  border-color: #aaa;
}

.navbar .btn-outline-primary:hover {
  background-color: #d0d0d0;
  border-color: #888;
  color: #222;
}

/* Primärer Buchungsbutton */
.navbar .btn-primary {
  background: linear-gradient(135deg, #007bff, #3398ff);
  color: #fff !important;
  border: none;
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar .btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #007bff);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   3. Buttons & Links Styling
   ========================================================= */
.btn-primary {
  background-color: #777;
  border-color: #666;
  color: #fff;
}

.btn-primary:hover {
  background-color: #555;
  border-color: #444;
}

a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #222;
}


/* =========================================================
   4. Hero Section (bereinigt & Hover-Fix für Button)
   ========================================================= */
#hero {
  position: relative;
  height: 70vh;            /* kompakter */
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
  overflow: hidden;
  background-attachment: fixed; /* Parallax-Effekt */
}

/* Hintergrundbild mit Zoom-Effekt */
#hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: zoomInHero 15s ease-in-out forwards;
  will-change: transform;
}

@keyframes zoomInHero {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

/* Overlay – gern etwas heller machen, wenn gewünscht: 0.45/0.25/0.10 */
#hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.15) 0%,   /* oben viel heller */
    rgba(0,0,0,0.25) 100%  /* unten etwas dunkler */
  );
  z-index: 1;
}


/* Textcontainer */
#hero .text-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Headline + Text: dürfen weiter mit fadeUp (inkl. transform) kommen */
#hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

#hero p {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* CTA-Button: eigene Animation ohne transform -> Hover funktioniert wieder */
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  opacity: 0;
  animation: fadeInOnly 0.9s ease forwards;   /* <-- nur Opacity */
  animation-delay: 0.6s;

  background: linear-gradient(135deg, #007bff, #3398ff);
  color: #fff !important;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #0056b3, #007bff);
  transform: translateY(-2px);                 /* hebt wieder ab */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* Keyframes */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInOnly {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Welle unten */
#hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  background-size: cover;
  z-index: 2;
}




/* =========================================================
   5. Ausstattung (Detailseite & Startseite)
   ========================================================= */
#ausstattung {
  background: linear-gradient(135deg, #f9f9f7, #f1f1f1);
  padding: 50px 0;
  border-radius: 15px;
}

#ausstattung h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  position: relative;
}

#ausstattung h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #aaa;
  margin: 10px auto 0;
  border-radius: 2px;
}

#ausstattung h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222;
}

/* Ausstattung Boxen */
.ausstattung-box {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  height: 100%;
  border: 1px solid #eee;
}

.col-12.col-md-6 {
  display: flex;
  flex-direction: column;
}

/* Icons */
.ausstattung-box i {
  font-size: 2.5rem;
  color: #333;
  padding: 15px;
  background: #f3f3f3;
  border-radius: 50%;
  flex-shrink: 0;
  transition: 0.3s;
}

/* Hover */
.ausstattung-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ausstattung-box:hover i {
  background: #007bff;
  color: #fff;
  transform: scale(1.15);
}

/* Text & Listen */
.ausstattung-box h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.ausstattung-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #555;
}

.ausstattung-box ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.3rem;
}

.ausstattung-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #555;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .ausstattung-box {
    flex-direction: row;
    align-items: flex-start;
  }

  .ausstattung-box i {
    margin-bottom: 0;
    margin-right: 10px;
  }
}


/* =========================================================
   6. Preise & Bedingungen
   ========================================================= */
/* Price Box */
.price-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 2rem;
}

.price-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-info .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
}

.price-info ul li i {
  color: #007bff;
  font-size: 1rem;
}

.price-info ul li {
  font-size: 1rem;
  line-height: 1.5;
}

.price-box .btn-primary {
  background: linear-gradient(135deg, #007bff, #3398ff);
  color: #fff !important;
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.price-box .btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #007bff);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Condition Box */
.condition-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.condition-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Accordion */
.condition-box .accordion-button {
  background-color: #f9f9f9;
  border-radius: 15px;
  color: #333;
  font-weight: 500;
  font-size: 1.05rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 1rem 1.25rem;
}

.condition-box .accordion-button:hover {
  background-color: #eaeaea;
}

.condition-box .accordion-button:focus {
  box-shadow: none;
}

.condition-box .accordion-button:not(.collapsed) {
  background-color: #eaeaea;
  color: #111;
}

.condition-box .accordion-body {
  background-color: #fff;
  border-radius: 0 0 15px 15px;
  padding: 1rem 1.25rem;
  border-top: 1px solid #ddd;
  color: #555;
  line-height: 1.5;
}

.condition-box .accordion-item + .accordion-item {
  margin-top: 1rem;
}

/* Accordion Inhalte */
.accordion-body p,
.accordion-body li,
.accordion-body td {
  text-align: justify;
  text-justify: inter-word;
}

/* Tabellen in Bedingungen */
.condition-box table {
  margin-top: 0.5rem;
  width: 100%;
  border-collapse: collapse;
}

.condition-box table td {
  padding: 10px;
  font-weight: 500;
}

.condition-box table tr:nth-child(odd) {
  background-color: #f0f0f0;
}

.condition-box table tr:nth-child(even) {
  background-color: #fafafa;
}


/* =========================================================
   7. Kontakt
   ========================================================= */
.card-custom {
      background: #fff;
      border: 0;
      border-radius: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      padding: 1.8rem;
    }

    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: .4rem;
    }

    .cal-day {
      padding: .7rem 0;
      text-align: center;
      border-radius: .6rem;
      cursor: pointer;
      user-select: none;
      background: #fff;
      border: 1px solid #e2e8f0;
      font-size: .95rem;
      font-weight: 500;
      transition: all 0.2s;
    }

    .cal-day:hover {
      background: #f1f5f9;
      border-color: #94a3b8;
    }

    .cal-day.disabled {
      background: #f8f8f8;
      color: #94a3b8;
      cursor: not-allowed;
    }

    .cal-day.booked {
      background: #e2e8f0;
      color: #94a3b8;
      cursor: not-allowed;
    }

    .cal-day.selected {
      background: #2563eb;
      color: #fff !important;
      font-weight: 600;
    }

    .cal-day.in-range {
      background: #dbeafe;
      color: #1e3a8a;
    }

    .cal-legend span {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      font-size: .85rem;
    }

    .cal-dot {
      width: 14px;
      height: 14px;
      border-radius: 4px;
      display: inline-block;
    }

    .cal-nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #e2e8f0;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #334155;
      transition: all 0.2s;
    }

    .cal-nav-btn:hover {
      background: #f1f5f9;
      border-color: #94a3b8;
      color: #1e293b;
    }

    #kontakt {
      background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
      border-radius: 15px;
      padding: 50px 0;
      margin-top: 3rem;
    }

    .contact-box {
      background: transparent;
      padding: 1rem 0;
    }

    .contact-box img {
      max-height: 70px;
      margin-top: 1rem;
    }

    #kalender .btn-primary,
    #kontakt .btn-primary {
      background: #2563eb;
      border: 0;
      border-radius: .6rem;
      font-weight: 600;
      padding: .75rem 1.2rem;
    }

    #kalender .btn-primary:hover,
    #kontakt .btn-primary:hover {
      background: #1d4ed8;
    }

    #kontakt a[href^="mailto:"] {
      color: #0d6efd;
      text-decoration: none;
      font-weight: 500;
    }

    #kontakt a[href^="mailto:"]:hover {
      text-decoration: underline;
      color: #0a58ca;
    }

    #kontaktFormular {
      scroll-margin-top: 130px;
    }

   /* Start-Tag: Diagonale von rechts oben nach links unten */
/* Start-Tag: Diagonale von links unten nach rechts oben */
.cal-day.booked-start {
  position: relative;
  background: #fff;
  color: #94a3b8;
  overflow: hidden;
}
.cal-day.booked-start::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%); /* ⬅️ Ecke links unten → rechts oben */
  border-radius: .6rem;
  z-index: 1;
}
.cal-day.booked-start span {
  position: relative;
  z-index: 2;
}

/* End-Tag: Diagonale von links oben nach rechts unten */
.cal-day.booked-end {
  position: relative;
  background: #fff;
  color: #94a3b8;
  overflow: hidden;
}
.cal-day.booked-end::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  clip-path: polygon(0 0, 100% 0, 0 100%); /* ⬅️ Ecke links oben → rechts unten */
  border-radius: .6rem;
  z-index: 1;
}
.cal-day.booked-end span {
  position: relative;
  z-index: 2;
}

/* Ganze belegte Tage */
.cal-day.booked {
  background: #e2e8f0;
  color: #94a3b8;
}

.cal-day.selected.force-selected {
  background: #2563eb !important;
  color: #fff !important;
}

.cal-day.selected.force-selected::after {
  display: none; /* Halbmarkierung überschreiben */
}

/* ==== Fix: Sichtbare Auswahl im Kalender (dunkelblau / hellblau) ==== */

.cal-day.selected,
.cal-day.force-selected {
  background-color: #2563eb !important; /* Dunkelblau */
  color: #fff !important;
  border-color: #1e3a8a;
  font-weight: 600;
}

.cal-day.in-range {
  background-color: #dbeafe !important; /* Hellblau */
  color: #1e3a8a !important;
  border-color: #93c5fd;
}

/* Klicks auf Kalendertage sicherstellen */
    #calendar button.cal-day {
      position: relative;
      z-index: 10;
      pointer-events: auto !important;
    }

    #calendar {
      position: relative;
      z-index: 1;
    }

    /* Einheitlicher Schriftstil im Accordion */
    .accordion-button {
      font-size: 0.95rem;
      font-weight: 500;
      color: #333;
      background-color: #fff;
      transition: background-color 0.2s ease;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      color: #0d6efd;
      background-color: #fff;
    }

    .accordion-body {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.6;
      background-color: #fff;
    }

    .accordion-body h5 {
      font-size: 0.95rem;
      font-weight: 600;
      color: #222;
      margin-top: 0.75rem;
    }

    .accordion-item {
      border: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .accordion-item:last-child {
      border-bottom: none;
    }

    /* Icons dauerhaft schwarz */
    .accordion-button i {
      color: #000 !important;
    }

    /* Hinweis-Text: bleibt in einer Zeile bis es wirklich eng wird */
.responsive-nowrap {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .responsive-nowrap {
    white-space: normal;
  }
}


/* =========================================================
   8. Footer
   ========================================================= */
.second-footer {
  background-color: #555;
  color: #eee;
  padding: 2rem 0 1.5rem;
}

.second-footer h5 {
  color: #fff;
}

.second-footer a {
  color: #ddd;
  text-decoration: none;
}

.second-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-logo {
  height: 100px;
  max-width: 100%;
  filter: brightness(1.1);
}

/* Footer Buttons */
.second-footer .btn-primary {
  background: linear-gradient(135deg, #007bff, #3398ff);
  color: #fff !important;
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.second-footer .btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #007bff);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Kleiner Footer */
footer.footer {
  background-color: #444;
  color: #ddd;
  padding: 1.5rem 0;
  border-top: 1px solid #666;
}

footer.footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer.footer p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

footer.footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

footer.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Einheitlicher Hover-Effekt für Footer-Links */
.second-footer .footer-link {
  color: #1e1e1e;
  font-weight: 500;
  transition: color 0.3s;
}

.second-footer .footer-link:hover {
  color: #0d6efd;
}


/* =========================================================
   9. Cookie Banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 450px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 9999;
  display: none;
  font-size: 14px;
  color: #333;
  text-align: center;
}

.cookie-banner-content h5 {
  margin-bottom: 10px;
  font-weight: bold;
}

.cookie-banner-content p {
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-buttons button {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
}

#accept-cookies {
  background-color: #4a4a4a;
  color: #fff;
}

#accept-cookies:hover {
  background-color: #333;
}

#decline-cookies {
  background-color: #f0f0f0;
  color: #333;
}

#decline-cookies:hover {
  background-color: #d6d6d6;
}

.cookie-banner-links {
  margin-top: 10px;
}

.cookie-banner-links a {
  color: #0056b3;
  text-decoration: underline;
  margin: 0 5px;
}

/* Mobil */
@media (max-width: 576px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 15px;
    font-size: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
}


/* =========================================================
   10. Map Container
   ========================================================= */
.map-container {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.map-info-text {
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
}

.map-btn {
  background-color: #ccc;
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.map-btn:hover {
  background-color: #b3b3b3;
}


/* =========================================================
   11. Beschreibung
   ========================================================= */
#beschreibung img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* =========================================================
   12. Galerie
   ========================================================= */
#galerie .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.25rem;
  cursor: pointer;
}

#galerie .overlay span {
  pointer-events: none;
  color: #fff;
  font-weight: 700;
}

/* GLightbox Zähler */
.glightbox-counter {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 10px;
  z-index: 9999;
  pointer-events: none;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   13. Ausstattung – Startseite
   ========================================================= */
#startseite-ausstattung {
  background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
  border-radius: 15px;
  padding: 50px 0;
}

#startseite-ausstattung h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

#startseite-ausstattung h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #aaa;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Flex Container */
.startseite-ausstattung-home {
  gap: 20px;
  justify-content: center;
}

.startseite-ausstattung-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
}

.startseite-ausstattung-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.startseite-ausstattung-box i {
  color: #555;
  font-size: 2.5rem;
  padding: 15px;
  background: #eee;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: 0.3s;
}

.startseite-ausstattung-box:hover i {
  background: #007bff;
  color: #fff;
  transform: scale(1.15);
}

.startseite-ausstattung-box h6 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.startseite-ausstattung-box p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
  .startseite-ausstattung-box {
    flex: 1 1 calc(45% - 20px);
    max-width: calc(45% - 20px);
  }
}

@media (max-width: 576px) {
  .startseite-ausstattung-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Button "Mehr Ausstattung" */
.mehr-ausstattung-btn {
  display: inline-block;
  margin-top: 30px;
  background: linear-gradient(135deg, #4a90e2, #7ab8f5);
  color: #fff !important;   /* Schrift immer weiß */
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mehr-ausstattung-btn:hover {
  background: linear-gradient(135deg, #3575c4, #5fa1e0);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  color: #fff !important;   /* Weiß bleibt beim Hover */
  text-decoration: none;
}


/* =========================================================
   14. Umgebung – Startseite
   ========================================================= */
/* Umgebung – Karten */
.card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background-color: #fff;
  padding: 20px;   /* neuer Innenabstand für mehr Weißraum */
}

.card-img-top {
  border-radius: 15px;
  display: block;
  width: 100%;          /* nimmt volle Breite innerhalb des paddings */
  object-fit: cover;
  margin: 0;            /* margin raus, Abstand kommt jetzt vom padding */
}


/* Carousel Indikatoren */
.carousel-indicators {
  position: static;
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.3);
}

.carousel-indicators .active {
  background-color: #0d6efd;
  transform: scale(1.2);
}

/* Maps Link im Footer-Stil */
.maps-link {
  color: #1e1e1e;
  font-weight: 500;
  transition: color 0.3s;
}

.maps-link:hover {
  color: #0d6efd;
}



/* =========================================================
   Umgebung – Modern Redesign (bereinigt)
   ========================================================= */

.umgebung-page h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333; /* gleiche Headline-Farbe wie global */
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
}

.umgebung-page .umgebung-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.umgebung-page .umgebung-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.umgebung-page .img-col {
  min-height: 360px;
}

.umgebung-page .img-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.umgebung-page .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.umgebung-page .img-wrapper:hover img {
  transform: scale(1.05);
}

.umgebung-page .text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.umgebung-page .text-col h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333; /* global heading */
}

.umgebung-page .text-col h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
  color: #444;
}

.umgebung-page .text-col p {
  color: #3a3a3a; /* gleiche Textfarbe wie body */
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

/* Listen */
.umgebung-page .text-col ul {
  padding-left: 1rem;
  list-style: none;
  margin: 0;
}

.umgebung-page .text-col ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.umgebung-page .text-col ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff; /* gleiche Primary-Farbe wie global */
  font-weight: bold;
}

/* Links – nur in Umgebung-Content, NICHT Navbar */
.umgebung-page .text-col a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.umgebung-page .text-col a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .umgebung-page .img-col {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .umgebung-page .umgebung-box {
    border-radius: 16px;
  }
  .umgebung-page .img-col {
    min-height: 200px;
  }
  .umgebung-page .img-wrapper img {
    border-radius: 16px;
  }
  .umgebung-page .text-col {
    padding: 1.5rem !important;
  }
  .umgebung-page .text-col h2 {
    font-size: 1.5rem;
  }
}





