/* Globale Stile & Farben */
:root {
    --primary-color: #CCB9AC; /* Dein Haupt-Akzent: Warmes Beige */
    --secondary-color: #5A4E42; /* Dunkleres Braun für Kontraste */
    --background-color: #F5F0E9; /* Sanftes Creme als Hintergrund */
    --light-brown-accent: #D4C5B1; /* Hellerer brauner Akzent */
    --white-color: #fff;
    --text-color-dark: #333;
    --text-color-light: rgba(255, 255, 255, 0.9); /* Leichteres Weiß für Text auf dunklem Grund */
    --cursive-color: #826731; /* Eine etwas dunklere, edlere Farbe für die kursive Schrift */

    /* Schriftarten */
    --font-heading: 'Playfair Display', serif; /* Für Haupt-Überschriften */
    --font-cursive: 'Dancing Script', cursive; /* Für den Willkommens-Titel und den Spruch */
    --font-body: 'Roboto', sans-serif; /* Für den Fließtext */
}

body {
    font-family: var(--font-body);
    line-height: 1.7; /* Leicht erhöhter Zeilenabstand für Lesbarkeit */
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color-dark);
    scroll-behavior: smooth; /* Sanftes Scrollen */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0; /* Mehr Padding für mehr Luft */
}

h1, h2, h3 {
    font-family: var(--font-heading); /* Playfair Display als Standard für Überschriften */
    color: var(--secondary-color);
    margin-bottom: 25px; /* Mehr Abstand */
}

/* Header-spezifisches Styling */
header {
    background-color: var(--white-color);
    padding: 15px 0; /* Weniger Padding als zuvor, damit der Titel besser passt */
    box-shadow: 0 6px 15px rgba(0,0,0,0.1); /* Stärkerer Schatten für mehr Absetzung */
    text-align: center;
    position: sticky; /* Header bleibt beim Scrollen oben */
    top: 0;
    z-index: 1000; /* Stellt sicher, dass der Header über allem liegt */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container für Logo und Titel */
header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Kein zusätzliches Padding im Header-Container */
    width: 90%;
    max-width: 1100px;
}

.logo {
    height: 60px; /* Etwas kleinere Logogröße, um Platz für den Titel zu schaffen */
    margin-right: 20px; /* Abstand zwischen Logo und Titel */
}

.header-title {
    font-family: var(--font-cursive); /* Dancing Script für den Titel */
    font-size: 1.8em; /* Größerer, aber nicht überladener Titel */
    color: var(--cursive-color); /* Deine gewählte Farbe für die kursive Schrift */
    line-height: 1.4; /* Besserer Zeilenabstand für zwei Zeilen */
    text-align: left; /* Titel linksbündig neben dem Logo */
    font-weight: 700; /* Etwas fetter für bessere Lesbarkeit */
}

/* 1. Opener Section mit Portrait und Spruch */
#opener {
    background-color: var(--white-color);
    padding: 10px 0; /* Weniger Padding */
    text-align: center;
    position: relative;
}

.opener-content {
    display: flex;
    flex-direction: column; /* Elemente untereinander auf mobilen Geräten */
    align-items: center;
    gap: 40px; /* Weniger Abstand zwischen Portrait und Text */
    position: relative;
    z-index: 10;
}

.portrait-container {
    width: 27.5%; /* Maximal 27.5% der Seite */
    max-width: 250px; /* Zusätzliche maximale Breite */
    aspect-ratio: 1 / 1; /* Behält das Seitenverhältnis bei (quadratisch) */
    border-radius: 50%; /* Rundes Portrait */
    overflow: hidden;
    border: 5px solid var(--primary-color); /* Etwas dünnerer Rand */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Weniger Schatten */
    transition: transform 0.3s ease-in-out;
}

.portrait-container:hover {
    transform: scale(1.03);
}

.portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    flex: 1;
    max-width: 550px;
}

.text-container h1 {
    /* "Herzlich Willkommen!" hier entfernt */
}

.opener-spruch {
    font-family: var(--font-cursive); /* Dancing Script für den Spruch */
    font-size: 2.3em; /* Deutlich größer */
    text-align: center;
    color: var(--secondary-color); /* Dunkleres Braun */
    line-height: 1.5;
  }

/* 2. "Herzlich Willkommen!" Abschnitt */
#welcome-info {
    background-color: var(--white-color);
    padding: 10px 0; /* Weniger Padding */
    text-align: center;
}

#welcome-info h2 {
    font-size: 2.8em; /* Größer */
    margin-bottom: 20px; /* Weniger Abstand */
    font-family: var(--font-cursive); /* Dancing Script für die Überschrift */
    color: var(--cursive-color); /* Deine gewählte Farbe */
}

#welcome-info p {
    font-size: 1.15em; /* Größerer Text */
    color: var(--text-color-dark);
    line-height: 1.6; /* Geringerer Zeilenabstand */
    font-family: var(--font-body); /* Moderne, klare Schriftart */
}

/* 3. Drei Kacheln mit Potenzial-Text */
#potential-tiles {
    padding: 50px 0; /* Weniger Padding */
    background-color: var(--light-brown-accent); /* Hellerer Akzent für die Kacheln */
}

.tiles-wrapper {
    display: flex;
    gap: 30px; /* Abstand zwischen den Kacheln */
    justify-content: center; /* Zentriert die Kacheln */
    flex-wrap: wrap; /* Ermöglicht Umbruch auf kleineren Bildschirmen */
}

.tile {
    background-color: var(--white-color);
    padding: 35px; /* Mehr Padding in den Kacheln */
    border-radius: 12px; /* Abgerundet */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* Schatten */
    flex: 0 1 calc(33.333% - 30px); /* Drei Spalten mit Anpassung des Abstands */
    max-width: 300px; /* Maximale Breite pro Kachel */
    text-align: center; /* Schrift in den Kacheln zentrieren */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    font-family: var(--font-body); /* Moderne, klare Schriftart */
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.tile h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-family: var(--font-heading); /* Playfair Display für Kachel-Überschriften */
}

.tile p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 15px; /* Weniger Abstand zwischen Absätzen in Kacheln */
    color: var(--text-color-dark);
}

/* 4. Mittlere Kachel mit Leitfragen */
#clarity-section {
    padding: 60px 0; /* Weniger Padding */
    background-color: var(--background-color); /* Zurück zum Haupt-Hintergrund */
    text-align: center;
}

.clarity-tile {
    background-color: var(--white-color);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    /* Linie unten drunter entfernen: */
    border-bottom: none;
}

.clarity-tile p {
    font-size: 1.15em;
    line-height: 1.6; /* Geringerer Zeilenabstand */
    color: var(--text-color-dark);
    margin-bottom: 15px; /* Geringerer Abstand */
}

.clarity-tile ul {
    list-style: none; /* Keine Aufzählungspunkte */
    padding-left: 0;
    margin-bottom: 20px; /* Geringerer Abstand */
}

.clarity-tile li {
    margin-bottom: 10px; /* Geringerer Abstand */
    font-size: 1.1em;
    color: var(--text-color-dark);
    position: relative;
    padding-left: 30px; /* Platz für das Häkchen */
}

.clarity-tile li::before {
    content: '✔'; /* Das Häkchen-Symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color); /* Farbe des Häkchens */
    font-weight: bold;
    font-size: 1.3em; /* Etwas größer */
}

/* 5. Booking Section mit zusätzlichem Text */
#booking {
    background-color: var(--primary-color); /* Dein warmes Beige als Hintergrund */
    padding: 70px 0; /* Weniger Padding */
    text-align: center;
    position: relative;
}

#booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px); /* Leichtes Punktmuster */
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.booking-layout {
    display: flex;
    flex-direction: column; /* Untereinander auf kleinen Bildschirmen */
    align-items: center;
    gap: 50px; /* Mehr Abstand */
    max-width: 900px; /* Etwas breiter */
    margin: 0 auto;
    text-align: center; /* Schrift zentriert */
    position: relative;
    z-index: 10;
}

.booking-text-content {
    flex: 1;
    max-width: 450px; /* Angepasst für die Breite des Calendly Widgets */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Text zentriert */
}

.booking-text-content h2 { /* H2 im Booking-Bereich */
    font-size: 3.5em; /* Überschrift etwas größer */
    margin-bottom: 10px;
    color: var(--white-color); /* Weißer Text für gute Lesbarkeit auf beige */
    text-align: center; /* H2 zentriert */
}

.booking-text-content p { /* Der eigentliche Text */
    color: var(--white-color);
    font-size: 1.1em; /* Etwas größer */
    text-align: center; /* P zentriert */
    line-height: 1.6; /* Minimaler Zeilenabstand */
}

.booking-text-content ul { /* Liste der Spezialgebiete */
    list-style: disc;
    margin-left: 0; /* Einrücken entfernen */
    margin-bottom: 10px; /* Minimaler Zeilenabstand */
    color: var(--white-color);
    text-align: left; /* Zentriert für konsistente Darstellung */
}

.booking-text-content li {
    margin-bottom: 8px; /* Geringerer Abstand in der Liste */
}

.cta-bold {
    font-weight: bold; /* Text fett */
}

.calendly-wrapper {
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.calendly-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.calendly-inline-widget {
    border-radius: 12px; /* Stärker abgerundet */
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2); /* Stärkerer Schatten */
}

/* 6. FAQ-Bereich */
#faq {
    padding: 60px 0; /* Weniger Padding */
    background-color: var(--background-color);
    text-align: center;
}

#faq h2 {
    font-size: 2.8em;
    margin-bottom: 40px; /* Weniger Abstand */
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    background-color: var(--white-color);
    color: var(--secondary-color);
    border: none;
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1.2em;
    font-family: var(--font-heading); /* Playfair Display */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-brown-accent);
}

.faq-icon {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    background-color: var(--background-color);
    color: var(--text-color-dark);
    padding: 0 30px; /* Nur links/rechts Padding, kein oben/unten */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Animation */
    font-size: 1.05em;
    line-height: 1.7;
}

.faq-answer p {
    padding: 20px 0; /* Padding innerhalb der Antwort */
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Maximal mögliche Höhe für die Antwort */
    padding: 0 30px; /* Wieder Padding hinzufügen */
}

/* 7. Kontaktformular */
#contact {
    padding: 70px 0; /* Weniger Padding */
    text-align: center;
    /* HINTERGRUNDBILD FÜR DIE GESAMTE SECTION */
    background-image: url('7115-2.jpg'); /* Das Bild als Hintergrund */
    background-size: cover; /* Bild deckt den gesamten Bereich ab */
    background-position: center center; /* Bild zentrieren */
    background-repeat: no-repeat;
    position: relative; /* Wichtig für die z-index-Positionierung der Kindelemente */
    background-color: var(--background-color); /* Fallback-Farbe, falls das Bild nicht lädt */
}

/* Der eigentliche Formular-Container mit Padding, Schatten, etc. */
.contact-form-container {
    padding: 50px; /* Padding für den Bereich, wo der Inhalt liegt */
    border-radius: 15px; /* Leichte Rundung für den Container */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Schatten für den Container */
    position: relative; /* Wird für das Overlay und z-index benötigt */‚
    max-width: 700px; /* Begrenzt die Breite des Containers */
    margin: 0 auto; /* Zentriert den Container */
    display: flex; /* Verwendet Flexbox für die innere Struktur */
    flex-direction: column; /* Elemente untereinander */
    align-items: center; /* Zentriert die Elemente innerhalb des Containers */
}

/* DAS LEICHTE TRANSPARENTE GRAUE OVERLAY FÜR DEN FORMULARBEREICH */
.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Leicht transparentes Grau (RGBA: 200, 200, 200 für Grau, 0.15 für 15% Opazität) */
    background-color: rgba(200, 200, 200, 0.15); /* Sehr dezentes Grau */
    border-radius: 15px; /* Gleiche Rundung wie der Container */
    z-index: 2; /* Das Overlay liegt über dem Container-Hintergrund, aber unter dem eigentlichen Inhalt */
}

/* Die eigentlichen Inhalte (H2, P, FORM) werden über dem Overlay platziert */
.contact-form-container h2,
.contact-form-container p,
#contact form,
.contact-form-container .form-message {
    position: relative; /* Notwendig, damit z-index wirkt */
    z-index: 3;       /* Platziert diese Elemente über dem Overlay (z-index: 2) */
}

/* ANPASSUNG: Neue Farbe für die Überschrift (h2) und den Absatz (p) auf WEISS */
.contact-form-container h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--white-color); /* TEXTFARBE AUF WEISS GEÄNDERT */
    text-align: center;
    /* SCHATTEN IST BEREITS SCHWARZ (rgba(0,0,0,...)), aber mit leichter Transparenz */
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Dezenter schwarzer Schatten für die Überschrift */
}

.contact-form-container p {
    font-size: 1.1em;
    color: var(--white-color); /* TEXTFARBE AUF WEISS GEÄNDERT */
    margin-bottom: 40px;
    text-align: center;
    /* SCHATTEN IST BEREITS SCHWARZ (rgba(0,0,0,...)), aber mit leichter Transparenz */
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15); /* Etwas dezenterer schwarzer Schatten für den Absatz */
}

/* Formularfelder und Button */
.form-group {
    margin-bottom: 20px; /* Mehr Abstand zwischen Formularfeldern */
    width: 100%;
    max-width: 450px; /* Begrenzt die Breite der Formularfelder */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #D4C5B1; /* Hellerer Braunrand */
    border-radius: 8px;
    box-sizing: border-box;
    font-family: var(--font-body); /* Roboto für Formularfelder */
    font-size: 1.1em; /* Größere Schrift in den Feldern */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color-dark); /* Dunklere Schriftfarbe für die Eingabefelder */
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 185, 172, 0.3); /* Sanfter Focus-Schatten */
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px; /* Mindesthöhe für Textarea */
}

#contact button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 16px 35px; /* Größerer Button */
    border: none;
    border-radius: 8px; /* Stärkere Rundung */
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 700; /* Fetter */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: auto;
    margin-top: 25px; /* Mehr Abstand */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Leichter Schatten für den Button */
}

#contact button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px); /* Stärkere Bewegung beim Hover */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Stärkerer Schatten */
}

.form-message {
    display: none; /* Standardmäßig ausgeblendet */
    margin-top: 25px; /* Mehr Abstand */
    font-weight: bold;
    padding: 15px; /* Mehr Padding */
    border-radius: 8px; /* Stärkere Rundung */
    text-align: center;
    width: 100%;
    max-width: 450px; /* Angepasst für Zentrierung des Formulars */
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05em;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1); /* Leichter Schatten */
}

.form-message.success,
.form-message.error {
    display: block; /* Hier wird es sichtbar gemacht */
}

.form-message.success {
    background-color: #e0f2e9;
    color: #0f5a23;
    border: 1px solid #a5d8b1;
}

.form-message.error {
    background-color: #fce7e8;
    color: #8f1d27;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background-color: var(--secondary-color); /* Dunkleres Braun für den Footer */
    color: var(--white-color);
    text-align: center;
    padding: 50px 0; /* Mehr Padding */
    font-size: 1em; /* Größerer Text */
}

.footer-links a {
    color: var(--white-color);
    margin: 0 15px; /* Mehr Abstand zwischen Links */
    font-weight: 500; /* Etwas fetter */
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    margin-top: 20px; /* Mehr Abstand */
}

.footer-contact p {
    margin: 0;
    line-height: 2.0; /* Noch mehr Zeilenabstand */
    font-size: 0.95em; /* Etwas kleiner als Haupttext, aber gut lesbar */
}

.footer-contact a {
    color: var(--white-color);
}

.footer-contact a:hover {
    color: var(--primary-color);
}


/* Responsivität */
@media (min-width: 768px) {
    /* Header Anpassungen für größere Bildschirme */
    header .container {
        justify-content: space-between; /* Logo links, Titel rechts */
    }
    .logo {
        margin-right: 30px; /* Mehr Abstand */
    }
    .header-title {
        font-size: 2.2em; /* Etwas größer */
        text-align: left; /* Sicherstellen, dass der Titel links ist */
    }

    .opener-content {
        flex-direction: row; /* Elemente nebeneinander */
        justify-content: space-between; /* Mehr gleichmäßige Verteilung */
        gap: 60px; /* Mehr Abstand */
        align-items: flex-start; /* Elemente am oberen Rand ausrichten */
    }

    .portrait-container {
        width: 250px; /* Feste Breite */
        height: 250px;
        flex-shrink: 0; /* Verhindert, dass das Portrait schrumpft */
        margin-right: 0; /* Kein zusätzlicher rechter Rand mehr nötig */
    }

    .text-container {
        text-align: left;
    }

    .text-container h1 {
        text-align: left;
    }
    .opener-spruch {
        text-align: left;
    }

    /* Kacheln nebeneinander */
    .tiles-wrapper {
        flex-wrap: nowrap; /* Verhindert Umbruch auf großen Bildschirmen */
        justify-content: center; /* Zentriert die Kacheln */
    }
    .tile {
        flex: 0 1 calc(33.333% - 30px); /* Drei Spalten mit Anpassung des Abstands */
        max-width: 300px; /* Maximale Breite */
    }

    /* Clarity Tile bleibt zentriert */
    .clarity-tile {
        max-width: 700px; /* Behält seine Breite */
        margin: 0 auto; /* Bleibt zentriert */
    }

    /* Booking Layout für größere Bildschirme */
    .booking-layout {
        flex-direction: row;
        justify-content: center;
        gap: 70px;
        align-items: flex-start; /* Elemente oben ausrichten */
    }

    .booking-text-content {
        flex-basis: 450px; /* Feste Breite für den Text-Bereich */
        flex-shrink: 0; /* Verhindert Schrumpfen */
    }
    .booking-text-content h2,
    .booking-text-content p {
        text-align: left; /* Text linksbündig */
    }

    .calendly-wrapper {
        flex-grow: 1; /* Erlaubt dem Calendly-Widget, den restlichen Platz einzunehmen */
        max-width: 450px; /* Feste Breite */
    }

    /* Kontakt Layout auf größeren Screens */
    .contact-form-container {
        flex-direction: column; /* Inhalt wieder untereinander */
        align-items: center;
        max-width: 700px; /* Begrenzt die Breite */
        padding: 50px 20px; /* Angepasstes Padding für den Inhaltsbereich */
    }

    .contact-form-container h2,
    .contact-form-container p {
        text-align: center; /* Titel und Text zentrieren */
    }

    #contact form {
        margin: 0 auto; /* Formular innerhalb des Containers zentriert */
        max-width: 450px; /* Begrenzt die Formularbreite */
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 2em;
    }

    /* Header Anpassungen für kleine Bildschirme */
    header {
        padding: 15px 0; /* Weniger Padding */
        flex-direction: column; /* Logo und Titel untereinander */
        align-items: center; /* Zentriert ausrichten */
    }
    header .container {
        flex-direction: column; /* Logo und Titel untereinander */
        align-items: center; /* Zentriert ausrichten */
    }
    .logo {
        margin-right: 0; /* Kein Abstand nach rechts */
        margin-bottom: 10px; /* Abstand nach unten */
        height: 50px; /* Kleinere Logo-Größe */
    }
    .header-title {
        font-size: 1.5em; /* Kleinere Schriftgröße */
        text-align: center; /* Titel zentrieren */
    }

    /* Opener Anpassungen */
    #opener {
        padding: 50px 0;
    }
    .opener-content {
        flex-direction: column;
        align-items: center;
        gap: 30px; /* Weniger Abstand */
    }
    .portrait-container {
        width: 50%; /* Portrait wird größer auf kleinen Screens */
        max-width: 200px; /* Maximale Breite */
        margin-bottom: 20px;
    }
    .text-container {
        text-align: center;
    }
    .text-container h1 {
        font-size: 3em; /* Titel etwas größer */
        text-align: center;
    }
    .opener-spruch {
        font-size: 1.4em; /* Spruch etwas größer */
        text-align: center;
    }

    /* Welcome Info */
    #welcome-info {
        padding: 40px 0;
    }
    #welcome-info h2 {
        font-size: 2.2em;
    }
    #welcome-info p {
        font-size: 1.05em;
    }

    /* Kacheln untereinander */
    .tiles-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    .tile {
        max-width: 100%; /* Nimmt volle Breite ein */
        flex-basis: 100%; /* Stellt sicher, dass sie die volle Breite einnehmen */
    }

    /* Clarity Tile */
    #clarity-section {
        padding: 50px 0;
    }
    .clarity-tile {
        padding: 30px;
    }
    .clarity-tile p {
        font-size: 1.05em;
    }
    .clarity-tile li {
        font-size: 1em;
    }

    /* Booking Anpassungen */
    #booking {
        padding: 60px 0;
    }
    .booking-layout {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .booking-text-content {
        max-width: 100%; /* Nimmt volle Breite ein */
        text-align: center; /* Text zentriert */
    }
    .booking-text-content h2,
    .booking-text-content p {
        text-align: center; /* H2 und P zentriert */
    }
    .booking-text-content ul {
        text-align: left; /* Liste wieder linksbündig */
        margin-left: 15px;
    }
    .calendly-wrapper {
        max-width: 100%; /* Nimmt volle Breite ein */
        width: 100%;
    }
    .calendly-inline-widget {
        height: 500px; /* Kleinere Höhe auf Mobilgeräten */
    }

    /* FAQ Anpassungen */
    #faq {
        padding: 60px 0;
    }
    #faq h2 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }
    .faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        max-height: 300px;
    }

    /* Kontakt Anpassungen */
    #contact {
        padding: 60px 0;
    }
    .contact-form-container {
        flex-direction: column; /* Elemente untereinander */
        align-items: center;
        max-width: 90%; /* Volle Breite auf kleinen Screens */
        padding: 30px 20px; /* Angepasstes Padding */
    }
    .contact-form-container h2,
    .contact-form-container p {
        text-align: center; /* Überschriften und Text zentrieren */
    }
    #contact form {
        padding: 30px 20px; /* Angepasstes Padding für das Formular */
        align-items: center;
    }
    .form-group {
        max-width: 100%; /* Formularfelder volle Breite */
    }
    .form-message {
        max-width: 100%;
    }

    footer {
        padding: 40px 0;
    }
}
/* === Booking Section === */
.booking {
    position: relative;
    /* z-index entfernt, da unnötig und blockierend */
}

/* === Kontaktformular / iframe === */
iframe {
    position: relative;
    z-index: 9999;   /* liegt über allen anderen Elementen */
    pointer-events: auto; /* Klicks sind möglich */
}
.contact-form-container::before {
  pointer-events: none !important;
}
