.hero-image {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    /* 16:9 erzwingen */
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Bild füllt 16:9 aus */
    object-position: center;
}

/* ===========================
   SCOPE: Startseite_Beitrag
   =========================== */

.Startseite_Beitrag .green { color: #307203; }

/* Gesamter Block */
.Startseite_Beitrag .bellevue-premium {
  text-align:center;
  padding:50px 0 30px 0;
  font-family: Georgia, 'Times New Roman', serif;
}

/* MOBILE */
@media (max-width:600px) {
  .Startseite_Beitrag .bellevue-premium {
    padding: 20px 0 15px 0 !important;
  }
  .Startseite_Beitrag .b-line1,
  .Startseite_Beitrag .b-line2,
  .Startseite_Beitrag .b-line3,
  .Startseite_Beitrag .b-line4 {
    white-space: normal !important;
  }
}

/* Zeile 1 */
.Startseite_Beitrag .b-line1 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight:400;
  margin:16px 0;
  letter-spacing:0.7px;
  white-space: nowrap;
}
@media (max-width:600px) {
  .Startseite_Beitrag .b-line1 { margin: 6px 0 !important; }
}

/* Zeile 2 – Sterne (ohne Animation) */
.Startseite_Beitrag .b-line2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight:700;
  margin:36px 0 0 0;
  letter-spacing:2px;
  white-space: nowrap;
  color:#307203;
}

/* DARKMODE */
[data-bs-theme="dark"] .Startseite_Beitrag .b-line2 {
  color:#ffffff !important;
}

/* MOBILE */
@media (max-width:600px) {
  .Startseite_Beitrag .b-line2 {
    margin:10px 0 0 0 !important;
    letter-spacing:1px !important;
  }
}

/* Zeile 3 – H1 */
.Startseite_Beitrag .b-line3 {
  font-size: clamp(24px, 7vw, 80px) !important;
  font-weight:700;
  margin:20px 0 0 0;
  letter-spacing:2.5px;
  white-space: nowrap;
}

/* Darkmode */
[data-bs-theme="dark"] .Startseite_Beitrag .b-line3 {
  color:#ffffff !important;
}

@media (max-width:600px) {
  .Startseite_Beitrag .b-line3 {
    font-size: clamp(22px, 6vw, 36px) !important;
    margin: 10px 0 0 0 !important;
    line-height: 1.2 !important;
    letter-spacing:1.5px !important;
  }
}

/* Zeile 4 – H2 */
.Startseite_Beitrag .b-line4 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight:400;
  margin:18px 0 0 0;
  letter-spacing:0.7px;
  white-space: nowrap;
}

/* Darkmode */
[data-bs-theme="dark"] .Startseite_Beitrag .b-line4 {
  color:#ffffff !important;
}

@media (max-width:600px) {
  .Startseite_Beitrag .b-line4 { margin:6px 0 0 0 !important; }
}

/* Divider */
.Startseite_Beitrag .b-divider {
  width: 260px;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(48,114,3,0) 0%,
    #307203 50%,
    rgba(48,114,3,0) 100%
  );
  margin:40px auto 0 auto;
  border-radius:50px;
}

/* DARKMODE */
[data-bs-theme="dark"] .Startseite_Beitrag .b-divider {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    #ffffff 50%,
    rgba(255,255,255,0) 100%
  ) !important;
}

@media (max-width:600px) {
  .Startseite_Beitrag .b-divider {
    width:110px;
    height:3px;
    margin-top:15px !important;
  }
}

/* ================= SCOPE WRAPPER ================= */
.Startseite_4erBox {
  width: 100%;
}

/* ================= GRID WRAPPER ================= */
.Startseite_4erBox .tnd-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 10px 12px;
}

/* ================= CARD ================= */
.Startseite_4erBox .tnd-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #307203;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(48,114,3,.20) inset,
    0 10px 24px rgba(48,114,3,.18),
    0 4px 12px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.Startseite_4erBox .tnd-card:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 0 1px rgba(48,114,3,.30) inset,
    0 16px 32px rgba(48,114,3,.26),
    0 10px 20px rgba(0,0,0,.08);
}

/* DARK MODE */
[data-bs-theme="dark"] .Startseite_4erBox .tnd-card {
  background: #2b2b2b !important;
  border-color: #307203 !important;
}

/* ================= HEADER ================= */
.Startseite_4erBox .tnd-card-head {
  padding: 18px 18px 10px;
}

.Startseite_4erBox .tnd-title {
  font-size: 28px;
  font-weight: inherit;
  margin: 0 0 10px;
  position: relative;
  padding-bottom: 4px;
  color: inherit;
}

.Startseite_4erBox .tnd-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: #307203;
  border-radius: 2px;
}

[data-bs-theme="dark"] .Startseite_4erBox .tnd-title::after {
  background: #307203 !important;
}

.Startseite_4erBox .tnd-divider {
  display: none;
}

/* ================= IMAGE ================= */
.Startseite_4erBox .tnd-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f3f3f3;
}

.Startseite_4erBox .tnd-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.Startseite_4erBox .tnd-card:hover .tnd-img {
  transform: scale(1.06);
}

/* ================= TEXT ================= */
.Startseite_4erBox .tnd-card-body {
  padding: 16px 18px 0;
  flex: 1 1 auto;
}

.Startseite_4erBox .tnd-text {
  margin: 0 auto;
  line-height: 1.65;
  color: inherit;
  font-size: inherit;
}

/* ================= BUTTON ================= */
.Startseite_4erBox .tnd-card-footer {
  padding: 16px 18px 20px;
}

.Startseite_4erBox .tnd-btn {
  display: inline-block;
  padding: 9px 18px;
  background: rgba(48,114,3,0.08);
  border: 1px solid rgba(48,114,3,0.25);
  border-radius: 6px;
  font-size: inherit;
  font-weight: normal;
  text-decoration: none;
  color: inherit;
  transition: all .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.Startseite_4erBox .tnd-btn:hover,
.Startseite_4erBox .tnd-btn:focus {
  background: #307203;
  border-color: #307203;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.16);
}

.Startseite_4erBox .tnd-btn:focus-visible {
  outline: 2px solid rgba(48,114,3,.7);
  outline-offset: 3px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .Startseite_4erBox .tnd-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .Startseite_4erBox .tnd-grid {
    gap: 20px;
    padding: 12px;
  }
  .Startseite_4erBox .tnd-card {
    flex: 1 1 100%;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .Startseite_4erBox .tnd-title { font-size: 18px; }
  .Startseite_4erBox .tnd-text { font-size: inherit; }
}

/* ================= SCOPE ================= */
.Startseite_3erBox {
  width: 100%;
}

/* ============ Grid Layout ============ */
.Startseite_3erBox .tnd-box-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* ============ Boxen (Basis) ============ */
.Startseite_3erBox .tnd-acc-box {
  flex: 1 1 300px;
  max-width: 360px;
  border: 1px solid #307203;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(48,114,3,.20) inset,
    0 10px 24px rgba(48,114,3,.18),
    0 4px 12px rgba(0,0,0,.04);
  overflow: hidden;
  transition: box-shadow .3s ease;
}

/* Hover */
.Startseite_3erBox .tnd-acc-box:hover {
  box-shadow:
    0 0 0 1px rgba(48,114,3,.30) inset,
    0 16px 32px rgba(48,114,3,.26),
    0 10px 20px rgba(0,0,0,.08);
}

/* Dark Mode Hintergrund */
[data-bs-theme="dark"] .Startseite_3erBox .tnd-acc-box {
  background: #2b2b2b !important;
  border-color: #307203 !important;
}

/* ============ Header ============ */
.Startseite_3erBox .tnd-acc-header {
  padding: 20px 24px;
}

/* Titel */
.Startseite_3erBox .tnd-acc-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
  color: inherit;
  display: inline-block;
}

/* Linie unter Titel */
.Startseite_3erBox .tnd-acc-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: #307203;
  border-radius: 2px;
}

/* Dark Mode Linie */
[data-bs-theme="dark"] .Startseite_3erBox .tnd-acc-title::after {
  background: #307203 !important;
}

/* ============ Content (statisch) ============ */
.Startseite_3erBox .tnd-acc-content {
  padding: 16px 24px 20px 24px;
  color: inherit;
}

/* Textfarben */
.Startseite_3erBox .tnd-acc-box,
.Startseite_3erBox .tnd-acc-box p {
  color: #000 !important;
}

[data-bs-theme="dark"] .Startseite_3erBox .tnd-acc-box,
[data-bs-theme="dark"] .Startseite_3erBox .tnd-acc-box p {
  color: #fff !important;
}

/* ============================================================
   GÄSTE-APP BOX – GLASSMORPHISM | SCOPE: Startseite_GaesteApp
============================================================ */
.Startseite_GaesteApp {
    background: rgba(255, 255, 255, 0.60) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 12px;

    padding: 24px;
    box-shadow:
        0 0 0 1px rgba(48,114,3,.20) inset,
        0 10px 24px rgba(48,114,3,.18),
        0 4px 12px rgba(0,0,0,.04);

    max-width: 630px;
    margin: 0 auto 24px auto;
    text-align: left;
}

/* Dark Mode */
[data-bs-theme="dark"] .Startseite_GaesteApp {
    background: rgba(20, 20, 20, 0.30) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
}

/* Headline */
.Startseite_GaesteApp h2 {
    margin: 0 0 12px 0;
    padding-bottom: 4px;
    position: relative;
    color: inherit;
    font-weight: inherit;
}

/* Linie unter H2 */
.Startseite_GaesteApp h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #307203;
    border-radius: 2px;
}
[data-bs-theme="dark"] .Startseite_GaesteApp h2::after {
    background: #307203 !important;
}

/* Text */
.Startseite_GaesteApp p {
    margin: 0 0 12px 0;
    line-height: 1.65;
    color: inherit;
    font-size: inherit;
}

/* Layout Reihe */
.Startseite_GaesteApp .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
}

/* QR */
.Startseite_GaesteApp .qr {
    flex: 0 1 130px;
}
.Startseite_GaesteApp .qr img {
    width: 118px;
    max-width: 40vw;
    height: auto;
    display: block;
}

/* CTA */
.Startseite_GaesteApp .cta {
    flex: 1 1 240px;
}

/* Kleine Beschriftung */
.Startseite_GaesteApp .label {
    font-size: 13px;
    margin-bottom: 4px;
    color: inherit;
    opacity: .8;
}

/* Link */
.Startseite_GaesteApp .link a {
    font-size: inherit;
    color: inherit;
    text-decoration: underline;
    word-break: break-word;
}

/* Button */
.Startseite_GaesteApp .btn {
    display: inline-block;
    padding: 9px 18px;
    background: rgba(48,114,3,0.08);
    border: 1px solid rgba(48,114,3,0.25);
    border-radius: 6px;

    font-size: inherit;
    font-weight: normal;
    text-decoration: none;
    color: inherit;

    transition: all .2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    margin-top: 10px;
}
.Startseite_GaesteApp .btn:hover,
.Startseite_GaesteApp .btn:focus {
    background: #307203;
    border-color: #307203;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.16);
}
.Startseite_GaesteApp .btn:focus-visible {
    outline: 2px solid rgba(48,114,3,.7);
    outline-offset: 3px;
}

/* Mobile */
@media (max-width: 560px) {
    .Startseite_GaesteApp {
        text-align: center;
    }
    .Startseite_GaesteApp .row {
        justify-content: center;
    }
    .Startseite_GaesteApp .qr {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }
    .Startseite_GaesteApp .btn {
        display: block;
        width: 100%;
        max-width: 260px;
        margin: 16px auto 0 auto;
    }
}
/* Gäste-App Box etwas nach unten schieben */
.Startseite_GaesteApp {
    margin-top: 60px; /* hier Höhe anpassen */
}
/* Gäste-App Box nach rechts verschieben */
.Startseite_GaesteApp {
    margin-left: auto;
    margin-right: 40px; /* Abstand vom rechten Rand */
}
/* ========================================
   VIDEO-HINTERGRUND FÜR GÄSTE-APP
======================================== */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Gäste-App Box liegt über dem Video */
.video-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;  
    align-items: center;      
    padding: 20px;
}

/* =========================================================
   SCOPE: Startseite_Sommer
   ========================================================= */
/* =========================================================
   Überschrift für Startseite_Sommer
   ========================================================= */

.Startseite_Sommer {
    --bellevue-gold: #307203;
}

/* Wrapper */
.Startseite_Sommer .tnd-section-wrapper {
  text-align: center;
  padding: 40px 10px 20px;
}

/* MOBILE */
@media (max-width:600px) {
  .Startseite_Sommer .tnd-section-wrapper {
    padding: 15px 10px 10px !important;
  }
}

/* Headline (Hellmodus = Grün) */
.Startseite_Sommer .tnd-section-headline {
  color: var(--bellevue-gold) !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  margin: 0 auto;
  display: block;
  text-align: center;
  white-space: normal !important;
  max-width: 90%;
  font-size: clamp(20px, 4vw, 30px) !important;
}

/* DARKMODE: Headline weiß */
[data-bs-theme="dark"] .Startseite_Sommer .tnd-section-headline {
  color: #ffffff !important;
}

/* Divider – Hellmodus */
.Startseite_Sommer .tnd-section-divider {
  width: 260px;
  height: 4px;
  margin: 12px auto 10px auto;
  background: linear-gradient(
    90deg,
    rgba(48,114,3,0) 0%,
    var(--bellevue-gold) 50%,
    rgba(48,114,3,0) 100%
  );
  border-radius: 50px;
}

/* DARKMODE: Divider weiß */
[data-bs-theme="dark"] .Startseite_Sommer .tnd-section-divider {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0) 100%
  ) !important;
}

/* Mobil Divider kompakter */
@media (max-width:600px) {
  .Startseite_Sommer .tnd-section-divider {
    width: 120px;
    height: 3px;
    margin-top: 8px;
  }
}


.Startseite_Sommer {
    --bellevue-green: #307203;
}

/* Joomla-Schrift erben */
.Startseite_Sommer .tnd-grid,
.Startseite_Sommer .tnd-card,
.Startseite_Sommer .tnd-title,
.Startseite_Sommer .tnd-text,
.Startseite_Sommer .tnd-btn {
    font-family: inherit !important;
    font-size: inherit;
}

/* GRID */
.Startseite_Sommer .tnd-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding: 10px 12px;
}

/* CARD (Hellmodus) */
.Startseite_Sommer .tnd-card {
    flex: 1 1 calc(25% - 28px);
    min-width: 260px;
    background: #ffffff;
    color: #2b2b2b;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(48,114,3,0.38);
    box-shadow: 0 4px 14px rgba(48,114,3,0.16), 0 1px 3px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

/* Hover-Effekt */
.Startseite_Sommer .tnd-card:hover {
    transform: translateY(-6px);
    border-color: var(--bellevue-green);
    box-shadow: 0 14px 36px rgba(48,114,3,0.34), 0 6px 16px rgba(0,0,0,0.12);
}

/* HEADER */
.Startseite_Sommer .tnd-card-head {
    padding: 22px 18px 12px;
}
.Startseite_Sommer .tnd-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 600;
    color: var(--bellevue-green);
    letter-spacing: .2px;
}
.Startseite_Sommer .tnd-title::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg,
        var(--bellevue-green),
        #4f9d2e 60%,
        var(--bellevue-green)
    );
}

/* IMAGE */
.Startseite_Sommer .tnd-img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f4f4f4;
}
.Startseite_Sommer .tnd-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.96);
    transition: transform .35s ease, filter .35s ease;
}
.Startseite_Sommer .tnd-card:hover .tnd-img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

/* TEXT */
.Startseite_Sommer .tnd-card-body {
    padding: 18px 20px 0;
}
.Startseite_Sommer .tnd-text {
    line-height: 1.65;
    opacity: .95;
}

/* FOOTER */
.Startseite_Sommer .tnd-card-footer {
    padding: 16px 20px 24px;
    margin-top: 14px;
    position: relative;
}
.Startseite_Sommer .tnd-card-footer::before {
    content: "";
    width: 56%;
    height: 1px;
    margin: 0 auto 14px;
    display: block;
    background: linear-gradient(90deg, transparent, var(--bellevue-green), transparent);
}

/* BUTTON */
.Startseite_Sommer .tnd-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bellevue-green);
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg,
        rgba(48,114,3,0.16),
        rgba(48,114,3,0.29)
    );
    border: 1px solid var(--bellevue-green);
    box-shadow: 0 2px 6px rgba(48,114,3,0.28), inset 0 0 4px rgba(255,255,255,0.25);
    transition: all .25s ease;
}
.Startseite_Sommer .tnd-btn:hover {
    background: var(--bellevue-green);
    color: #fff !important;
    border-color: var(--bellevue-green);
    box-shadow: 0 8px 18px rgba(48,114,3,0.32), inset 0 0 6px rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

/* DARK MODE */
[data-bs-theme="dark"] .Startseite_Sommer .tnd-card {
    background: #1e1e1e;
    color: #ffffff;
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 4px 14px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.45);
}

[data-bs-theme="dark"] .Startseite_Sommer .tnd-card:nth-child(2),
[data-bs-theme="dark"] .Startseite_Sommer .tnd-card:nth-child(4),
[data-bs-theme="dark"] .Startseite_Sommer .tnd-card:nth-child(5),
[data-bs-theme="dark"] .Startseite_Sommer .tnd-card:nth-child(7) {
    background: rgba(255,255,255,0.08);
}

[data-bs-theme="dark"] .Startseite_Sommer .tnd-title {
    color: #ffffff;
}

[data-bs-theme="dark"] .Startseite_Sommer .tnd-title::after {
    background: linear-gradient(90deg, #ffffff, #ffffff 60%, #ffffff);
}

[data-bs-theme="dark"] .Startseite_Sommer .tnd-text {
    color: #eeeeee;
}

[data-bs-theme="dark"] .Startseite_Sommer .tnd-card-footer::before {
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

[data-bs-theme="dark"] .Startseite_Sommer .tnd-btn {
    color: #ffffff;
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.55), inset 0 0 4px rgba(255,255,255,0.08);
}

[data-bs-theme="dark"] .Startseite_Sommer .tnd-btn:hover {
    background: #ffffff;
    color: #1e1e1e !important;
    border-color: #ffffff;
    box-shadow: 0 8px 18px rgba(255,255,255,0.35), inset 0 0 6px rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .Startseite_Sommer .tnd-card {
        flex: 1 1 calc(50% - 28px);
    }
}
@media (max-width: 768px) {
    .Startseite_Sommer .tnd-grid {
        justify-content: center !important;
        align-items: center !important;
        gap: 22px;
    }
    .Startseite_Sommer .tnd-card {
        flex: 1 1 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .Startseite_Sommer .tnd-card-head,
    .Startseite_Sommer .tnd-card-body,
    .Startseite_Sommer .tnd-card-footer {
        text-align: center;
    }
    .Startseite_Sommer .tnd-title::after {
        width: 60%;
    }
}

/* Bewegungsreduktion */
@media (prefers-reduced-motion: reduce) {
    .Startseite_Sommer .tnd-card,
    .Startseite_Sommer .tnd-img {
        transition: none;
    }
}

/* Einheitliche Button-Höhe */
.Startseite_Sommer .tnd-btn {
    min-height: 42px;   /* gleiche Höhe für alle */
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* kein Zeilenumbruch */
}

/* Karte soll gesamte Höhe nutzen */
.Startseite_Sommer .tnd-card {
    display: flex;
    flex-direction: column;
}

/* Body soll flexibel wachsen */
.Startseite_Sommer .tnd-card-body {
    flex-grow: 1;
}

/* Footer immer ganz unten */
.Startseite_Sommer .tnd-card-footer {
    margin-top: auto !important;
}

/* Buttons einheitliche Höhe */
.Startseite_Sommer .tnd-btn {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* ============================
   SCOPE: EndSlider
============================ */

.EndSlider {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

/* Box */
.EndSlider .slider-bx {
    flex: 1;
    min-width: 240px;
    height: 260px;
    position: relative;
    overflow: hidden;
    border: 2px solid #307203;
    border-radius: 8px;
}

/* Slides */
.EndSlider .slider-bx .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.EndSlider .slider-bx .slide:first-child {
    opacity: 1;
}

/* ================================
   SCOPE: Gaesteapp_mobil
   Hintergrund weiß + Typografie durch Joomla
================================ */

.Gaesteapp_mobil {
    border: 2px solid #307203;
    border-radius: 10px;
    padding: 18px;
    background: #ffffff; /* Weißer Hintergrund */
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.12);
    max-width: 630px;
    margin: 0 auto 20px;
    color: inherit; /* Schriftfarbe von Joomla */
    letter-spacing: inherit;
    text-align: left;
}

/* Titel */
.Gaesteapp_mobil h2 {
    margin: 0 0 14px 0;
    font-weight: inherit; /* Joomla kontrolliert */
    color: #307203; /* Bellevue-Grün bleibt */
}

/* Text */
.Gaesteapp_mobil p {
    margin: 0 0 10px 0;
}

/* Flexline */
.Gaesteapp_mobil .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
}

/* QR */
.Gaesteapp_mobil .qr {
    flex: 0 1 130px;
}

.Gaesteapp_mobil .qr img {
    width: 118px;
    max-width: 30vw;
    height: auto;
    display: block;
}

/* CTA rechts */
.Gaesteapp_mobil .cta {
    min-width: 180px;
    flex: 1 1 220px;
}

.Gaesteapp_mobil .label {
    margin-bottom: 4px;
    color: #3a5630;
}

.Gaesteapp_mobil .link a {
    color: #2e4f1c;
    text-decoration: underline;
    word-break: break-word;
}

/* Button */
.Gaesteapp_mobil .btn {
    background: #307203;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 560px) {
    .Gaesteapp_mobil {
        text-align: center;
    }

    .Gaesteapp_mobil .row {
        justify-content: center;
    }

    .Gaesteapp_mobil .qr {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }

    .Gaesteapp_mobil .btn {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 12px auto 0;
    }
}


/* =====================================================
   SCOPE: Startseite_Mic
   - Joomla/Astroid steuert die komplette Typografie
   - keine font-size, keine fonts, keine line-height
   - nur Layout + Farben
===================================================== */

.Startseite_Mic .mic-wrapper {
    border: 2px solid #307203;
    border-radius: 14px;
    padding: 16px;
    background: #ffffff;
    max-width: 630px;
    margin: 0 auto;
    text-align: center;
}

/* Kopfbereich */
.Startseite_Mic .mic-head {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    width: 100%;
    margin-bottom: 14px;
}

/* Logo-Rahmen */
.Startseite_Mic .mic-logo {
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgba(48, 114, 3, 0.25);
    background: #ffffff;
    display: inline-block;
}

.Startseite_Mic .mic-logo img {
    width: 35px;
    height: auto;
    display: block;
}

/* Titel */
.Startseite_Mic .mic-title {
    display: inline-block;
    width: 100%;
    color: #307203; /* nur Farbe */
    font-weight: bold; /* Größe = Joomla */
}

/* Einleitung */
.Startseite_Mic .mic-intro {
    max-width: 500px;
    margin: 0 auto 16px;
}

/* Bildblock */
.Startseite_Mic .mic-image-container {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.Startseite_Mic .mic-image-frame {
    border: 2px solid #307203;
    border-radius: 12px;
    padding: 7px;
    background: #ffffff;
    max-width: 224px;
    width: 100%;
}

.Startseite_Mic .mic-image-frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Untertext */
.Startseite_Mic .mic-outro {
    max-width: 500px;
    margin: 14px auto 0;
}

/* =====================================================
   SCOPE: Startseite_Seetaxi
   Grüner MIC-Rahmen + Joomla-Typografie
===================================================== */

/* Außenbox wie MIC */
.Startseite_Seetaxi .seetaxi-wrapper {
    border: 2px solid #307203;
    border-radius: 14px;
    padding: 16px;
    background: #ffffff;
    max-width: 630px;
    margin: 0 auto;
    text-align: center;
}

/* Titel */
.Startseite_Seetaxi .seetaxi-title {
    color: #307203;
    margin-bottom: 12px;
}

/* Text */
.Startseite_Seetaxi .seetaxi-text {
    margin-bottom: 12px;
}

/* Bildblock */
.Startseite_Seetaxi .seetaxi-image {
    margin: 18px auto;
    max-width: 800px;
}

.Startseite_Seetaxi .seetaxi-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* =====================================================
   Scope: Startseite_Mic_Seetaxi_Grid
   Desktop = 2 Spalten
   Mobile = 1 Spalte
===================================================== */

.Startseite_Mic_Seetaxi_Grid {
  display: grid;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Desktop: 2 Spalten + MIC vertikal zentriert */
@media (min-width: 960px) {

  .Startseite_Mic_Seetaxi_Grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  /* MIC vertikal mittig zum Seetaxi */
  .Startseite_Mic_Seetaxi_Grid .grid-item:nth-child(2) {
    align-self: center;
  }
}

/* Jedes Element */
.Startseite_Mic_Seetaxi_Grid .grid-item {
  width: 100%;
}

/* Abstand NACH der 3er‑Box */
.Startseite_3erBox {
    margin-bottom: 60px;
}

/* Mobil kompakter */
@media (max-width: 768px) {
    .Startseite_3erBox {
        margin-bottom: 40px;
    }
}

/* ============================================================
   GLOBAL DARK / LIGHT MODE – EINHEITLICH FÜR ALLE MODULE
   ============================================================ */

/* ---------- LIGHT MODE (DEFAULT) ---------- */
:root,
[data-bs-theme="light"] {
    --bg: #ffffff;
    --bg-box: #ffffff;
    --text: #000000;
    --border: #307203;
    --divider: #307203;
    --btn-bg: rgba(48,114,3,0.08);
    --btn-border: rgba(48,114,3,0.25);
    --btn-text: #000000;
    --btn-hover-bg: #307203;
    --btn-hover-text: #ffffff;
}

/* ---------- DARK MODE ---------- */
[data-bs-theme="dark"] {
    --bg: #121212;
    --bg-box: #1e1e1e;
    --text: #ffffff;
    --border: #307203;          /* Marke bleibt grün */
    --divider: #ffffff;
    --btn-bg: rgba(255,255,255,0.15);
    --btn-border: #ffffff;
    --btn-text: #ffffff;
    --btn-hover-bg: #ffffff;
    --btn-hover-text: #000000;
}

/* ---------- GLOBAL ANWENDUNG ---------- */

body {
    background: var(--bg) !important;
    color: var(--text) !important;
}

/* Alle Boxen */
.Startseite_3erBox .tnd-acc-box,
.Startseite_4erBox .tnd-card,
.Startseite_Sommer .tnd-card,
.Startseite_GaesteApp,
.Gaesteapp_mobil,
.Startseite_Mic .mic-wrapper,
.Startseite_Seetaxi .seetaxi-wrapper,
.Footer_Bereich .tnd-footer-box {
    background: var(--bg-box) !important;
    color: var(--text) !important;
    border-color: var(--border) !important;
}

/* Titel-Linien */
.Startseite_3erBox .tnd-acc-title::after,
.Startseite_4erBox .tnd-title::after,
.Startseite_Sommer .tnd-title::after,
.Startseite_GaesteApp h2::after,
.Startseite_Mic .mic-title,
.Startseite_Seetaxi .seetaxi-title,
.Footer_Bereich .tnd-footer-box h3::after {
    background: var(--divider) !important;
}

/* Divider allgemein */
.b-divider,
.tnd-section-divider,
.Footer_Bereich .tnd-divider,
.Startseite_Sommer .tnd-section-divider {
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--divider) 50%,
        transparent 100%
    ) !important;
}

/* Buttons */
.tnd-btn,
.Startseite_GaesteApp .btn,
.Gaesteapp_mobil .btn {
    background: var(--btn-bg) !important;
    border-color: var(--btn-border) !important;
    color: var(--btn-text) !important;
}

.tnd-btn:hover,
.Startseite_GaesteApp .btn:hover,
.Gaesteapp_mobil .btn:hover {
    background: var(--btn-hover-bg) !important;
    border-color: var(--btn-hover-bg) !important;
    color: var(--btn-hover-text) !important;
}

/* Footer */
.Footer_Bereich .tnd-footer {
    background: var(--bg) !important;
}

.Footer_Bereich .tnd-footer-box,
.Footer_Bereich .tnd-footer-box p,
.Footer_Bereich .tnd-footer-box li,
.Footer_Bereich .tnd-footer-box a {
    color: var(--text) !important;
}

.Footer_Bereich .tnd-footer-copy {
    border-top: 1px solid var(--divider) !important;
}

/* Social Icons */
.Footer_Bereich .social-row a svg {
    stroke: var(--text) !important;
}

/* ============================================
   KEIN GEFÜLLTER BALKEN — NUR AUSSENRAHMEN
   Für alle Boxen: MIC / Seetaxi / Gäste‑App
============================================ */

/* Rahmen */
.Startseite_Mic .mic-wrapper,
.Startseite_Seetaxi .seetaxi-wrapper,
.Startseite_GaesteApp,
.Gaesteapp_mobil {
    border: 2px solid #307203 !important;
    background: #ffffff !important; /* innen weiß */
}

/* DARKMODE: innen dunkel, aber nie gefüllt grün */
[data-bs-theme="dark"] 
.Startseite_Mic .mic-wrapper,
[data-bs-theme="dark"] 
.Startseite_Seetaxi .seetaxi-wrapper,
[data-bs-theme="dark"]
.Startseite_GaesteApp,
[data-bs-theme="dark"]
.Gaesteapp_mobil {
    background: #1e1e1e !important;
}

/* Überschriften – KEINE GRÜNE FLÄCHE, nur Text grün */
.Startseite_Mic .mic-title,
.Startseite_Seetaxi .seetaxi-title,
.Startseite_GaesteApp h2,
.Gaesteapp_mobil h2 {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    color: #307203 !important;
}

/* DARKMODE: Titel weiß */
[data-bs-theme="dark"] 
.Startseite_Mic .mic-title,
[data-bs-theme="dark"] 
.Startseite_Seetaxi .seetaxi-title,
[data-bs-theme="dark"] 
.Startseite_GaesteApp h2,
[data-bs-theme="dark"] 
.Gaesteapp_mobil h2 {
    color: #ffffff !important;
}

/* Linien unter Titeln: dünn, ohne Hintergrundfläche */
.Startseite_Mic .mic-title::after,
.Startseite_Seetaxi .seetaxi-title::after,
.Startseite_GaesteApp h2::after,
.Gaesteapp_mobil h2::after {
    background: #307203 !important;
    height: 2px !important;
}

/* DARKMODE Linie */
[data-bs-theme="dark"] 
.Startseite_Mic .mic-title::after,
[data-bs-theme="dark"] 
.Startseite_Seetaxi .seetaxi-title::after,
[data-bs-theme="dark"] 
.Startseite_GaesteApp h2::after,
[data-bs-theme="dark"] 
.Gaesteapp_mobil h2::after {
    background: #ffffff !important;
}


/* ===============================================
   GLOBAL BUTTON STYLE – Einheitlich für ALLE
=============================================== */

.tnd-btn,
.Startseite_GaesteApp .btn,
.Gaesteapp_mobil .btn,
.Startseite_Sommer .tnd-btn,
.Startseite_4erBox .tnd-btn,
.Startseite_3erBox .tnd-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 42px;
    padding: 0 22px;

    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--btn-bg);
    color: var(--btn-text);

    text-decoration: none;
    white-space: nowrap;
    transition: all .25s ease;
}

/* =====================================================
   HOVER — exakt wie von dir gefordert
===================================================== */

/* LIGHT MODE: Bellevue-Grün + weißer Text */
[data-bs-theme="light"] .tnd-btn:hover,
[data-bs-theme="light"] .Startseite_GaesteApp .btn:hover,
[data-bs-theme="light"] .Gaesteapp_mobil .btn:hover {
    background: #307203 !important;
    border-color: #307203 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* DARK MODE: weißer Hintergrund + schwarzer Text */
[data-bs-theme="dark"] .tnd-btn:hover,
[data-bs-theme="dark"] .Startseite_GaesteApp .btn:hover,
[data-bs-theme="dark"] .Gaesteapp_mobil .btn:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-2px);
}