/* --- BASIS EINSTELLUNGEN --- */
:root {
    --primary-color: #7DBA29; /* Dein Herberge-Grün */
    --secondary-color: #6aa123; /* Ein etwas dunkleres Grün für Effekte */
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f9f9f9;
    --white: #ffffff;
}

* {
    box-sizing: border-box; /* Wichtig für korrekte Abstände */
    margin: 0;
    padding: 0;
}

html { overflow-x: hidden; }
body {
    font-family: 'Open Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; /* Moderne Schriftart-Kette */
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6; /* Bessere Lesbarkeit für KIs und Menschen */
    overflow-x: hidden; /* Verhindert seitliches Abschneiden auf Smartphones */
    max-width: 100vw;
}
img { max-width: 100%; height: auto; } /* Bilder nie breiter als Container */

a {
    text-decoration: none;
    transition: all 0.3s ease; /* Weiche Übergänge bei Effekten */
}

ul {
    list-style-type: none;
}

strong {
    color: var(--primary-color); /* Hebt wichtige Wörter grün hervor */
    font-weight: 600;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: var(--white);
    padding: 10px 0;
    position: sticky; 
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

/* Neuer, aufgeteilter Container-Code: */
.container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header img {
    height: 60px; /* Logo Größe */
    width: auto;
    max-height: 60px;
}

nav ul {
    display: flex;
    gap: 30px; /* Abstand zwischen Menüpunkten */
}

nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    padding: 5px 0;
}

nav a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color); /* Grüner Unterstrich beim Drüberfahren */
}

/* HAMBURGER-BUTTON (nur Mobile sichtbar) */
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}
.menu-toggle span {
    display: block;
    height: 3px;
    width: 28px;
    background: var(--text-dark);
    border-radius: 2px;
    margin: 5px auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- HERO BEREICH (Das große Startbild) --- */
.hero {
    /* Die dunkle Maske über dem ganzen Bild wurde hier entfernt! */
    background: url('startbild.webp') no-repeat center center/cover;
    height: 80vh; /* 80% der Bildschirmhöhe */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.3); /* Halbtransparente schwarze Box */
    padding: 20px; /* Platz nach innen */
    border-radius: 30px; /* Schöne abgerundete Ecken */
    max-width: 600px; /* Damit die Box nicht zu riesig wird */
    /* Ein moderner Apple-artiger Unschärfe-Effekt für den Hintergrund: */

}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Schatten für bessere Lesbarkeit auf Bildern */
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Ein moderner Button-Style */
.btn-main {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
}

.btn-main:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px); /* Button hebt sich leicht an */
}

/* --- HAUPTBEREICH (Inhalt) --- */
main {
    padding: 80px 0;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-size: 36px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

/* Kleiner grüner Strich unter den Hauptüberschriften */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}

/* --- HÄUSER / KAPAZITÄTEN (Karten-Layout) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden; /* Damit Ecken abgerundet bleiben */
    box-shadow: 0 5px 25px rgba(0,0,0,0.07); /* Moderner, weicher Schatten */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Neu-Badge auf Karten */
.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFC107, #FF8F00);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255,143,0,0.4);
}
.card-badge i { font-size: 10px; margin-right: 3px; }

.card:hover {
    transform: translateY(-10px); /* Hebt sich beim Drüberfahren an */
    box-shadow: 0 10px 35px rgba(125, 186, 41, 0.2); /* Grüner Schatten-Effekt */
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover; /* Bild füllt den Platz aus ohne zu verzerren */
    flex-shrink: 0;
}

.card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.card ul {
    color: var(--text-light);
}

.card li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    /* KEIN flex hier – sonst frisst CSS die Leerzeichen zwischen <strong> und Text */
}

/* Styling für die neuen Font Awesome Icons in den Karten */
.card li i {
    color: var(--primary-color); /* Macht die Icons in deinem Grün */
    font-size: 18px;
    width: 30px; /* Einheitliche Breite, damit der Text immer bündig auf einer Linie anfängt */
    text-align: center;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* Styling für die Icons in der Ausstattungs-Liste unten */
.feature-list li i {
    color: var(--primary-color);
    font-size: 22px;
}

/* --- AUSSTATTUNG MIT BILD (50/50 Layout) --- */
.feature-split {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.feature-image, .feature-text {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-list li {
    background: var(--bg-light);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    /* Kein flex – damit Leerzeichen zwischen <strong> und Folgetext erhalten bleiben */
}
.feature-list li i {
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
}

/* --- FOOTER --- */
footer {
    background-color: var(--text-dark);
    color: #a0a0a0;
    text-align: center;
    padding: 30px;
}

/* --- RESPONSIVE DESIGN (Für Handys/Tablets) --- */
@media (max-width: 992px) {
    .feature-split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    /* Header bleibt horizontal: Logo links, Hamburger rechts */
    header .container {
        flex-direction: row;
        gap: 0;
        padding: 0 15px;
    }

    header img { height: 48px; }

    .menu-toggle { display: block; }

    /* Mobile-Menü: Schiebe-Dropdown */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, box-shadow 0.4s ease;
        box-shadow: none;
    }
    nav.open {
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }
    nav li {
        border-bottom: 1px solid #f0f0f0;
    }
    nav li:last-child { border-bottom: none; }
    nav a {
        display: block;
        padding: 16px 24px;
        font-size: 17px;
        font-weight: 600;
    }
    nav a:hover, nav a.active {
        background: var(--bg-light);
        border-bottom: 1px solid #f0f0f0;
        color: var(--primary-color);
    }
}

/* Falls Container an anderer Stelle column hat - Header NICHT betreffen */
@media (max-width: 600px) {
    main.container, .anfahrt-grid, .lp-lead-grid, .lp-teacher-grid {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* --- KONTAKTFORMULAR --- */
.contact-form-container {
    max-width: 700px; /* Etwas breiter gemacht, damit alles gut reinpasst */
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-heading {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.form-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 30px 0;
}

/* NEU: Felder nebeneinander anordnen */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1; /* Alle Felder in einer Reihe sind gleich breit */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label.sub-label {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-light);
}

/* Alle Eingabefelder im gleichen Design */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(125, 186, 41, 0.3);
}

.form-hinweis {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

button[type="submit"] {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Damit die Felder auf dem Handy wieder untereinander rutschen */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* Spezielles Design für das Datumsfeld (Kalender) */
input[type="date"] {
    cursor: pointer;
    text-transform: uppercase; /* Macht das Datumsformat sauberer */
    color: var(--text-dark);
}

/* Damit das Kalender-Icon auf der rechten Seite auch in deinem Grün erscheint (Chrome/Edge) */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(56%) sepia(85%) saturate(362%) hue-rotate(44deg) brightness(95%) contrast(88%); 
    /* Dieser Filter nähert sich deinem Grün #7DBA29 an */
}
/* --- PROFIE COOKIE MANAGER --- */
.cookie-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}
.cookie-overlay.show { display: block; }

.cookie-manager {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: #2c3e50; /* Dein dunkles Blau/Anthrazit */
    color: white;
    padding: 30px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-size: 14px;
}
.cookie-manager.show { transform: translateY(0); }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.cookie-main-text { flex: 2; min-width: 300px; }
.cookie-options { flex: 1; min-width: 250px; display: flex; flex-direction: column; gap: 10px; }
.cookie-actions { flex: 0.5; min-width: 150px; }

.cookie-link-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    border: 1px solid white;
    color: white;
    font-weight: bold;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-full {
    background: #ff2d55; /* Das auffällige Pink/Rot aus deinem Bild oder dein --primary-color */
    color: white;
    border: none;
    padding: 15px 25px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

/* Der kleine schwebende Button zum Korrigieren */
#cookie-settings-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9997;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; }
}

/* --- HAUS-KARTEN INHALT (Liste oben, Buttons unten) --- */
.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 30px;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
    flex: 1;
}

.card-body ul {
    flex: 1;
    margin: 0;
    padding: 0;
}

.card-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.btn-house {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-house:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Auf Smartphones Buttons untereinander stapeln */
@media (max-width: 480px) {
    .card-buttons {
        flex-direction: column;
    }
}
/* --- MODERNES BILDER MODAL --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px); /* Moderner Unschärfe-Effekt */
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 1100px;
    border-radius: 20px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* --- BILDER VERGRÖSSERN (ZOOM) --- */
img.zoomed {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    height: auto !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    z-index: 9999 !important;
    /* Macht den Hintergrund dunkel: */
    box-shadow: 0 0 0 100vmax rgba(0,0,0,0.85) !important;
    border-radius: 10px !important;
    cursor: zoom-out !important;
    object-fit: contain !important;
}
/* --- AUSFLUGSZIELE & UMGEBUNG --- */
.ausflugs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ausflugs-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden; /* Wichtig: Schneidet die Ecken der Bilder oben rund ab */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--primary-color); /* Grüner Balken jetzt unten, sieht edler aus */
}

.ausflugs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(125, 186, 41, 0.2); 
}

/* NEU: Das Bild in der Ausflugskarte */
.ausflugs-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* NEU: Ein Container für den Text, damit er Abstand zum Rand hat */
.ausflugs-content {
    padding: 25px;
}

.ausflugs-card h3 {
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ausflugs-card h3 i {
    color: var(--primary-color);
    font-size: 24px;
}

.ausflugs-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
}

.ausflugs-card ul li::before {
    content: '\2713';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* NEU: Klickbare Links unten in der Karte */
.ausflugs-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 15px;
}

.ausflugs-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
/* Styling für die Links in der Ausflugs-Liste */
.ausflugs-card ul li a {
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-color);
    transition: color 0.3s ease;
}

.ausflugs-card ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
/* --- KOSTENLOSES FREIBAD BANNER --- */
.freibad-promo {
    display: flex;
    background-color: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 60px 0;
}

.freibad-image {
    flex: 1;
    min-height: 400px;
    /* Dein eigenes Freibad-Bild wird geladen: */
    background: url('freibad.webp') no-repeat center center/cover;
}

.freibad-text {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.freibad-badge {
    align-self: flex-start;
    background-color: #ff2d55; /* Auffälliges Rot für Geschenke/Aktionen */
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 20px;
}

.freibad-text h2 {
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.freibad-text h2::after {
    display: none; /* Den grünen Strich unter der Überschrift hier ausblenden */
}

.freibad-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Auf dem Handy das Bild nach oben und den Text nach unten schieben */
@media (max-width: 768px) {
    .freibad-promo {
        flex-direction: column;
    }
    .freibad-image {
        min-height: 250px;
    }
    .freibad-text {
        padding: 30px 20px;
    }
}

/* =====================================================
   ANFAHRT, ADRESSE, KARTE & SCHNELLKONTAKT
   ===================================================== */
.anfahrt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.anfahrt-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adresse-card {
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    padding: 25px 30px;
    border-radius: 12px;
    font-style: normal;
    font-size: 17px;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.adresse-icon {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
    line-height: 1;
}

.adresse-card strong {
    color: var(--text-dark);
    font-size: 20px;
    display: inline-block;
    margin-bottom: 4px;
}

.kontakt-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.kontakt-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: var(--primary-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    min-height: 56px;
}

.kontakt-btn i {
    font-size: 20px;
    width: 28px;
    text-align: center;
}

.kontakt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(125, 186, 41, 0.35);
}

.kontakt-btn-call   { background-color: #2c3e50; }
.kontakt-btn-call:hover { background-color: #1f2d3d; box-shadow: 0 6px 18px rgba(44,62,80,0.35); }
.kontakt-btn-mail   { background-color: #4a90e2; }
.kontakt-btn-mail:hover { background-color: #357ab8; box-shadow: 0 6px 18px rgba(74,144,226,0.35); }

.anfahrt-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    min-height: 380px;
    background: var(--bg-light);
}

.anfahrt-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

@media (max-width: 768px) {
    .anfahrt-grid {
        grid-template-columns: 1fr;
    }
    .anfahrt-map {
        min-height: 280px;
    }
    .anfahrt-map iframe {
        min-height: 280px;
    }
    .adresse-card {
        font-size: 16px;
        padding: 20px;
    }
}

/* =====================================================
   STICKY MOBILE ACTION BAR (nur auf Smartphone sichtbar)
   ===================================================== */
.mobile-action-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
        z-index: 9000;
        padding: 6px 4px calc(6px + env(safe-area-inset-bottom)) 4px;
        justify-content: space-around;
    }
    .mab-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 8px 4px;
        color: var(--text-dark);
        font-size: 11px;
        font-weight: 700;
        border-radius: 10px;
        min-height: 54px;
    }
    .mab-btn i { font-size: 20px; color: var(--primary-color); }
    .mab-btn-primary { background: var(--primary-color); color: var(--white); }
    .mab-btn-primary i { color: var(--white); }

    /* Platz, damit Footer/Inhalte nicht verdeckt werden */
    body { padding-bottom: 76px; }
    #cookie-settings-trigger { bottom: 86px; }
}

/* =====================================================
   GALERIE: bessere Smartphone-Ansicht + Vollbild-Lightbox
   ===================================================== */
.modal-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: -5px;
    margin-bottom: 15px;
}
.modal-hint i { color: var(--primary-color); margin-right: 6px; }

.gallery-caption {
    text-align: center;
    margin-top: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

@media (max-width: 768px) {
    .modal {
        background-color: rgba(0,0,0,0.95);
    }
    .modal-content {
        margin: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
        padding: 60px 15px 100px 15px !important;
        min-height: 100vh;
        box-sizing: border-box;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    .gallery-grid img {
        height: 140px;
        border-radius: 8px;
    }
    .close-modal {
        position: fixed !important;
        top: 12px;
        right: 12px;
        background: rgba(0,0,0,0.7);
        color: white;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        line-height: 40px;
        text-align: center;
        font-size: 28px;
        z-index: 2100;
        border: 2px solid rgba(255,255,255,0.35);
    }
    #modalTitle { font-size: 22px; padding-right: 50px; }
}

/* Lightbox – Vollbild */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    padding: 0;
}

.lightbox img {
    max-width: 95vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    -webkit-user-drag: none;
    pointer-events: none;
}

.lb-close {
    position: absolute;
    top: calc(12px + env(safe-area-inset-top));
    right: 12px;
    background: rgba(0,0,0,0.55);
    color: white;
    border: 2px solid rgba(255,255,255,0.35);
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    z-index: 10010;
    backdrop-filter: blur(8px);
}
.lb-close:hover { background: rgba(255,255,255,0.25); }

.lb-counter {
    position: absolute;
    top: calc(20px + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: 700;
    background: rgba(0,0,0,0.6);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(8px);
    z-index: 10010;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: white;
    border: 2px solid rgba(255,255,255,0.35);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10010;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease;
}
.lb-nav:hover { background: rgba(255,255,255,0.3); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

.lb-caption {
    position: absolute;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    padding: 8px 18px;
    font-size: 16px;
    max-width: 92vw;
    font-weight: 500;
    background: rgba(0,0,0,0.55);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    z-index: 10010;
}
.lb-caption:empty { display: none; }

@media (max-width: 600px) {
    .lightbox img { max-width: 100vw; max-height: 80vh; border-radius: 0; padding: 0 4px; }
    .lb-nav { width: 46px; height: 46px; font-size: 18px; }
    .lb-prev { left: 6px; } .lb-next { right: 6px; }
    .lb-close { width: 44px; height: 44px; font-size: 24px; right: 8px; }
    .lb-caption { font-size: 13px; padding: 6px 14px; max-width: 88vw; }
}

/* Footer-Adresszeile lesbarer */
footer p { margin: 4px 0; line-height: 1.5; }
footer p:first-child { color: #c7c7c7; }
@media (max-width: 600px) {
    footer { padding: 25px 15px; font-size: 14px; }
}

/* =====================================================
   LANDING PAGE: Klassenfahrt-Spezifische Elemente
   ===================================================== */

/* HERO – mit Hintergrundbild und Overlay */
.lp-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 80px 20px;
}
.lp-hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: 1;
}
.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(125,186,41,0.45) 100%);
    z-index: 2;
}
.lp-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}
.lp-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.lp-badge i { margin-right: 6px; }
.lp-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.lp-hero-content p {
    font-size: 20px;
    margin: 0 auto 35px;
    max-width: 650px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}
.lp-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .lp-hero { min-height: 65vh; padding: 60px 20px; }
    .lp-hero-content h1 { font-size: 36px; }
    .lp-hero-content p { font-size: 17px; }
    .btn-secondary { padding: 10px 22px; font-size: 15px; }
}

/* LEAD INTRO – 50/50 mit Schlüssel-Fakten */
.lp-lead { margin: 60px 0 80px; }
.lp-lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.lp-lead-text h2 {
    text-align: left;
    margin-bottom: 20px;
}
.lp-lead-text h2::after {
    left: 0;
    transform: none;
}
.lp-lead-text p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.lp-key-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 0;
    padding: 0;
}
.lp-key-facts li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}
.lp-key-facts li i {
    color: var(--primary-color);
    font-size: 20px;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}
.lp-lead-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.lp-lead-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.lp-image-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}
.lp-image-caption i { margin-right: 6px; color: var(--primary-color); }

@media (max-width: 768px) {
    .lp-lead-grid { grid-template-columns: 1fr; gap: 30px; }
    .lp-key-facts { grid-template-columns: 1fr; }
    .lp-lead-image img { height: 320px; }
}

/* BILDERGALERIE im Mosaik-Stil */
.lp-gallery-section { margin: 80px 0; }
.lp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 40px;
}
.lp-gallery-item {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.lp-gallery-item.span-2 { grid-column: span 2; }
.lp-gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    z-index: 2;
}
.lp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.lp-gallery-item:hover img { transform: scale(1.08); }
.lp-gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}
.lp-gallery-item figcaption i {
    color: var(--primary-color);
    margin-right: 8px;
}

@media (max-width: 992px) {
    .lp-gallery { grid-template-columns: repeat(3, 1fr); }
    .lp-gallery-item.span-2 { grid-column: span 2; }
}
@media (max-width: 600px) {
    .lp-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .lp-gallery-item.span-2 { grid-column: span 2; }
    .lp-gallery-item figcaption { font-size: 12px; padding: 10px 12px; }
}

/* HIGHLIGHTS – Karten mit Bild oben */
.lp-highlights { margin: 80px 0; }
.lp-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.lp-highlight-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.lp-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(125,186,41,0.2);
}
.lp-highlight-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.lp-highlight-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3) 100%);
}
.lp-highlight-body {
    padding: 25px 22px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.lp-highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-top: -50px;
    margin-bottom: 16px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 12px rgba(125,186,41,0.4);
    position: relative;
    z-index: 2;
}
.lp-highlight-card h3 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.lp-highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* RAEUME – Wechselseitig Bild/Text */
.lp-rooms { margin: 80px 0; }
.lp-rooms h2 { text-align: center; }
.lp-room-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
}
.lp-room-row.reverse .lp-room-img { order: 2; }
.lp-room-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.lp-room-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.lp-room-img:hover img { transform: scale(1.04); }
.lp-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.lp-room-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.lp-room-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

@media (max-width: 768px) {
    .lp-room-row { grid-template-columns: 1fr; gap: 25px; margin: 40px 0; }
    .lp-room-row.reverse .lp-room-img { order: 0; }
    .lp-room-img img { height: 240px; }
    .lp-room-text h3 { font-size: 22px; }
}

/* LEHRER-INFO – 60/40 mit Bild */
.lp-teacher { margin: 80px 0; }
.lp-teacher h2 { text-align: center; }
.lp-teacher-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}
.lp-teacher-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.lp-teacher-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .lp-teacher-grid { grid-template-columns: 1fr; gap: 30px; }
    .lp-teacher-image img { height: 240px; }
}

/* Note unter Tabellen */
.lp-note {
    margin-top: 25px;
    padding: 18px 22px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
}
.lp-note i { color: var(--primary-color); margin-right: 6px; }

/* Active Link in Navigation */
nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* =====================================================
   RAUMAUFTEILUNG MODAL (Iframe-Popup)
   ===================================================== */
.raum-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}
.raum-modal.open {
    display: flex;
    animation: raumFadeIn 0.25s ease;
}
@keyframes raumFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.raum-modal-box {
    background: var(--white);
    width: 100%;
    max-width: 1100px;
    height: 100%;
    max-height: 92vh;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: raumSlideUp 0.3s ease;
}
@keyframes raumSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.raum-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    flex-shrink: 0;
}
.raum-modal-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}
.raum-modal-close {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.raum-modal-close:hover {
    background: rgba(255,255,255,0.35);
}
.raum-modal-body {
    flex: 1;
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}
.raum-modal-body iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.raum-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
    background: #f5f5f5;
    z-index: 1;
}
.raum-loading i {
    margin-right: 10px;
    font-size: 22px;
    color: var(--primary-color);
}

/* Mobil: Modal füllt komplett aus */
@media (max-width: 768px) {
    .raum-modal {
        padding: 0;
    }
    .raum-modal-box {
        max-width: 100%;
        max-height: 100%;
        height: 100vh;
        border-radius: 0;
    }
    .raum-modal-head {
        padding: 12px 16px;
    }
    .raum-modal-head h3 {
        font-size: 16px;
    }
}

/* =====================================================
   BEWERTUNGEN SEITE
   ===================================================== */
.bw-hero {
    background: linear-gradient(135deg, #7DBA29 0%, #5a8a1d 100%);
    color: white;
    padding: 80px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bw-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.bw-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.bw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.bw-hero h1 {
    font-size: 44px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
}

.bw-gesamt {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    padding: 25px 40px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.3);
}
.bw-gesamt-zahl {
    font-size: 78px;
    font-weight: 900;
    line-height: 1;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
}
.bw-gesamt-info { text-align: left; }
.bw-gesamt-text {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Sterne-Render */
.bw-sterne {
    color: #FFC107;
    font-size: 18px;
    letter-spacing: 2px;
    display: inline-block;
}
.bw-sterne.gross {
    font-size: 30px;
    color: #FFD54F;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    .bw-hero h1 { font-size: 30px; }
    .bw-gesamt {
        flex-direction: column;
        gap: 12px;
        padding: 20px 25px;
    }
    .bw-gesamt-zahl { font-size: 60px; }
    .bw-gesamt-info { text-align: center; }
    .bw-sterne.gross { font-size: 24px; }
}

/* PLATTFORM-KARTEN */
.bw-platforms-section { margin: 60px 0 80px; }
.bw-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.bw-platform-card {
    background: white;
    border-radius: 18px;
    padding: 30px 22px 22px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bw-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(125,186,41,0.18);
}
.bw-platform-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.bw-platform-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    word-break: break-word;
}
.bw-platform-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.bw-platform-zahl {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}
.bw-platform-count {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 14px;
}
.bw-platform-link {
    margin-top: auto;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}
.bw-platform-link i { margin-left: 6px; font-size: 12px; }
.bw-platform-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* BEWERTUNGS-LISTE */
.bw-list-section { margin: 80px 0; }
.bw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 40px;
}
.bw-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bw-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(125,186,41,0.16);
}
.bw-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.bw-card .bw-sterne { font-size: 18px; }
.bw-datum {
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 12px;
}
.bw-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
    font-size: 15px;
}
.bw-card-foot {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
    font-size: 13px;
    color: var(--text-light);
}
.bw-author {
    color: var(--text-dark);
    font-weight: 600;
}
.bw-author i { color: var(--primary-color); margin-right: 6px; }
.bw-haus i { color: var(--primary-color); margin-right: 6px; }

/* Empty-State */
.bw-empty {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-light);
    border-radius: 16px;
    color: var(--text-light);
    margin-top: 30px;
}
.bw-empty i {
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 15px;
}

/* Kurz-Bewertungsbereich auf Startseite */
.bw-preview-section {
    margin: 80px 0;
}
.bw-preview-summary {
    text-align: center;
    margin-bottom: 30px;
}
.bw-preview-summary .bw-sterne {
    font-size: 28px;
    margin-bottom: 8px;
}
.bw-preview-summary strong {
    font-size: 20px;
    color: var(--text-dark);
}

/* Brotkrumen-Navigation */
.breadcrumb {
    margin: 30px 0 20px;
    font-size: 14px;
    color: var(--text-light);
}
.breadcrumb a {
    color: var(--primary-color);
    font-weight: 600;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: var(--text-light); }

/* Tagesablauf-Kacheln */
.tagesplan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.tag-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border-top: 4px solid var(--primary-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(125, 186, 41, 0.2);
}
.tag-nummer {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.tag-card h3 {
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 10px;
}
.tag-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Anreise-Tabelle */
.anreise-tabelle {
    margin-top: 40px;
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}
.anreise-tabelle table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    overflow: hidden;
}
.anreise-tabelle thead {
    background: var(--primary-color);
    color: white;
}
.anreise-tabelle th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}
.anreise-tabelle td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: var(--text-dark);
}
.anreise-tabelle tbody tr:hover {
    background: var(--bg-light);
}
.anreise-tabelle tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ – Aufklappbar */
.faq-list {
    max-width: 850px;
    margin: 40px auto 0;
}
.faq-list details {
    background: var(--white);
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}
.faq-list details[open] {
    box-shadow: 0 5px 20px rgba(125, 186, 41, 0.15);
}
.faq-list summary {
    padding: 18px 22px;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.faq-list details[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}
.faq-list details p {
    padding: 0 22px 20px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* CTA-Sektion */
.kontakt-cta {
    background: linear-gradient(135deg, #f5f9ee 0%, #ffffff 100%);
    padding: 60px 30px;
    border-radius: 20px;
    margin: 60px 0;
    text-align: center;
}
.kontakt-cta h2 {
    color: var(--primary-color);
}

/* Feature-Liste mit Check-Icons */
.feature-list li i.fa-check {
    color: var(--primary-color);
    background: rgba(125,186,41,0.15);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .anreise-tabelle th, .anreise-tabelle td {
        padding: 10px 12px;
        font-size: 14px;
    }
    .faq-list summary { font-size: 15px; padding: 15px 18px; padding-right: 45px; }
    .faq-list details p { padding: 0 18px 18px; font-size: 14px; }
    .tag-card { padding: 20px; }
    .tag-card h3 { font-size: 18px; }
    .kontakt-cta { padding: 40px 20px; }
}