/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Farben */
    --color-primary: #E07A5F;       /* Terracotta */
    --color-primary-soft: #fff1ec;  /* Ganz zartes Terracotta für Hover */
    --color-text: #2D3436;          /* Dunkles Grau */
    --color-text-light: #636e72;    /* Helles Grau */
    --color-bg-body: #FFFFFF;
    --color-bg-sidebar: #FFFFFF;
    --color-border: rgba(0,0,0,0.06);
    
    /* Maße */
    --sidebar-width: 280px;
    --border-radius: 30px;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Schatten */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.12);

    /* Animationen */
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================================
   2. TYPOGRAPHY (Datenschutz-Optimiert / System Fonts)
   ========================================= */
/* Wir laden KEINE externen Google Fonts mehr, um 100% DSGVO-konform zu sein */

body {
    /* Moderner System-Font-Stack (Sieht auf Mac, Windows & Android jeweils nativ & sauber aus) */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: var(--color-text);
    background-color: var(--color-bg-body);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, .logo {
    /* Für Überschriften nutzen wir ebenfalls eine saubere, serifenlose Schrift oder eine klassische Serifenschrift vom System */
    font-family: "Georgia", "Times New Roman", Times, serif; /* Klassischer, vertrauenswürdiger Look für "Lalu" */
    color: var(--color-text);
    line-height: 1.2;
}

h1 { font-size: 3rem; font-weight: 700; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }

/* Logo Anpassung */
.logo {
    font-family: "Georgia", serif; 
    font-weight: 700;
}
.logo small {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================================
   3. SIDEBAR (Navigation)
   ========================================= */
header {
    background-color: var(--color-bg-sidebar);
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: var(--space-xl) 2.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--color-border);
    z-index: 1000;
}

/* Logo */
.logo {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: var(--space-xl);
    line-height: 1;
}
.logo span { color: var(--color-primary); }
.logo small {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    color: #999;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.nav-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-light);
    min-height: 48px; /* Touch-optimiert */
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav-links a:last-of-type {
    border-bottom: none;
}

.nav-links a:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.nav-links a.active {
    color: var(--color-text);
    font-weight: 600;
}
.nav-links a.active::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    width: 4px;
    height: 20px;
    background-color: var(--color-primary);
    border-radius: 0 4px 4px 0;
}

/* Kontakt Button Sidebar */
.nav-item-contact { 
    margin-top: auto; 
    padding-top: 2rem;
}
.btn-sidebar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    color: white !important;
    text-decoration: none;
    padding: 1rem !important;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(224, 122, 95, 0.2);
    transition: var(--transition);
}
@media (hover: hover) {
    .btn-sidebar:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(224, 122, 95, 0.3);
    }
}

.hamburger { display: none; }

/* =========================================
   4. MAIN CONTENT & LAYOUT
   ========================================= */
main {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Section Header (Modern-Rustic Refinement) */
.page-header-section {
    background: linear-gradient(135deg, #fffcfb 0%, #fef0eb 100%);
    padding: var(--space-3xl) 0 var(--space-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Wave effect using SVG background */
.page-header-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,165.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 60px;
    background-repeat: no-repeat;
}

.sub-headline {
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding: 0 1rem;
}

.sub-headline::before,
.sub-headline::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: var(--color-primary);
    opacity: 0.4;
}

.sub-headline::before { left: -1.5rem; }
.sub-headline::after { right: -1.5rem; }

.page-header-section h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
    position: relative;
    display: block;
}

/* Paw icon separator */
.page-header-section h1::after {
    content: "🐾";
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0.3;
    color: var(--color-primary);
}

.content-padding {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

/* =========================================
   5. HERO & STARTSEITE (Bild-Fix)
   ========================================= */

.hero-wrapper {
    /* Layout: Text links, Bild rechts */
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; /* Zentriert den Text vertikal zum Bild */
    gap: 5rem; /* Schöner großer Abstand zwischen Text und Bild */

    /* WICHTIG: Begrenzung & Abstand */
    max-width: 1250px;      /* Damit es auf Riesen-Bildschirmen nicht zu breit wird */
    margin: 0 auto;         /* Zentriert den ganzen Block auf der Seite */
    
    /* Hier ist der "Luft"-Fix: */
    padding-top: 160px;     /* Schiebt alles unter dem Header hervor */
    padding-bottom: var(--space-xl);   /* Platz nach unten */
    padding-left: 2rem;     /* Sicherheitsabstand links */
    padding-right: 2rem;    /* Sicherheitsabstand rechts */
}

.hero-content {
    /* Textbereich bleibt sauber und ohne Extra-Rahmen */
    padding: 0; 
}

.hero-image {
    /* Das Bild Design */
    width: 100%;
    height: 550px;          /* Fixe Höhe für einen professionellen Look */
    object-fit: cover;      /* Bild füllt den Platz perfekt aus, ohne Verzerrung */
    
    /* Der "Styling"-Teil nur für das Bild */
    border-radius: var(--border-radius);    /* Schöne runde Ecken (nur beim Bild!) */
    box-shadow: var(--shadow-strong); /* Hochwertiger Schatten, damit es "schwebt" */
    
    /* Optional: Ganz leichte Drehung für Dynamik */
    transform: rotate(2deg); 
    border: 5px solid #fff; /* Weißer Rahmen macht es edler */
}

.trust-badges {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}
.badge { font-size: 0.85rem; color: #666; display: flex; align-items: center; gap: 0.5rem; }

section { padding: var(--space-2xl) 0; }
.bg-light { background-color: #FAFAFA; }

/* =========================================
   6. CARDS & GRIDS (Allgemein)
   ========================================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-soft);
}
@media (hover: hover) {
    .card:hover {
        border-color: var(--color-border);
        box-shadow: var(--shadow-medium);
        transform: translateY(-5px);
    }
}

/* =========================================
   7. SEITEN-SPEZIFISCHE STYLES
   ========================================= */

/* Über Uns Split */
.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.img-enhanced {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.quote-box {
    font-style: italic;
    color: var(--color-primary);
    font-size: 1.1rem;
    border-left: 3px solid var(--color-primary);
    padding-left: 1rem;
    margin-top: 1.5rem;
}

.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 0.8rem; font-size: 1.05rem; }

/* Preise */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: start;
    gap: var(--space-xl);
}
.price-category-title { margin-bottom: 1.5rem; color: var(--color-primary); }
.price-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    opacity: 0.8;
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table td { padding: 0.8rem 0; border-bottom: 1px solid var(--color-border); }
.price-tag { text-align: right; font-weight: 600; color: var(--color-text); }

.flex-between { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.border-dashed-bottom { border-bottom: 1px dashed var(--color-border); padding-bottom: 0.2rem; }

/* Buchung & Download */
.download-card {
    background-color: var(--color-primary);
    color: white;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(224, 122, 95, 0.2);
    transition: var(--transition);
}
@media (hover: hover) {
    .download-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(224, 122, 95, 0.4); }
}
.download-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.btn-white {
    background-color: white; color: var(--color-primary); margin-top: 1.5rem;
    border: 2px solid transparent; display: inline-block; padding: 0.8rem 1.5rem; text-decoration: none; border-radius: 50px; font-weight: 600;
}
.btn-white:hover { background-color: transparent; border-color: white; color: white; }

.packing-list { list-style: none; padding: 0; }
.packing-list li { padding: 0.8rem 0; border-bottom: 1px dashed #eee; display: flex; align-items: flex-start; gap: 10px; }
.packing-list li:last-child { border-bottom: none; }
.icon-check { color: var(--color-primary); margin-top: 2px; display: inline-flex; }
.icon-cross { color: #95a5a6; margin-top: 2px; display: inline-flex; }
.label-info { background-color: #eef2f3; padding: 1.5rem; border-radius: 8px; margin-top: 1rem; font-size: 0.9rem; color: #555; }

/* =========================================
   8. NEUES KONTAKT GRID & DETAILS
   ========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
    gap: var(--space-xl);
    align-items: start;
}

/* Linke Spalte Texte */
.headline-small {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-text);
}

.text-intro {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.divider {
    height: 1px;
    background-color: #eee;
    margin: var(--space-lg) 0;
    border: none;
}

.text-muted { color: #636e72; margin-bottom: 0.5rem; }

/* Kontakt Liste (Icons) */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--color-primary-soft);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.15);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-text address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--color-text);
}

.contact-link-big {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link {
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover, .contact-link-big:hover { color: var(--color-primary); }

.link-small {
    font-size: 0.9rem;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: 0.5rem;
    display: inline-block;
    font-weight: 600;
}
.link-small:hover { text-decoration: underline; }

/* =========================================
   9. ÖFFNUNGSZEITEN (MODERN CARD)
   ========================================= */
.hours-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden; /* Damit Ecken rund bleiben */
    margin-top: 1rem;
}

/* Kopfbereich (Grau hinterlegt) */
.hours-header {
    background-color: #F8F9FA;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.hours-header .icon {
    font-size: 1.8rem;
}

.hours-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: "Georgia", serif;
    color: var(--color-text);
}

.hours-header small {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* Innenbereich */
.hours-body {
    padding: 1.5rem;
}

.time-row {
    display: flex;
    justify-content: space-between; /* Schiebt Text nach links & rechts */
    align-items: center;
    padding: 0.5rem 0;
}

.day-label {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-value {
    font-weight: 700;
    color: var(--color-primary); /* Terracotta für Wichtigkeit */
    font-size: 1.1rem;
    background: var(--color-primary-soft);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
}

.time-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 0.8rem 0;
    width: 100%;
}

/* Fußzeile (Warnhinweis integriert) */
.hours-footer {
    background-color: #fff5f5;
    color: #c0392b;
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
    text-align: center;
    font-weight: 600;
    border-top: 1px solid #ffebe6;
}

/* Responsive Anpassung für Handys */

/* =========================================
   10. WARNHINWEISE & FORMULAR
   ========================================= */
.strict-alert {
    background-color: #fff5f5;
    border-left: 5px solid #c0392b;
    padding: 1.5rem;
    margin-top: var(--space-lg);
    border-radius: 0 8px 8px 0;
}
.strict-alert h3 {
    color: #c0392b; font-size: 1rem; text-transform: uppercase;
    margin-bottom: 1rem; display: flex; align-items: center; gap: 10px;
}
.strict-alert p { font-size: 0.9rem; color: #2c3e50; line-height: 1.6; margin-bottom: 1rem; }
.strict-alert p:last-child { margin-bottom: 0; }

/* Formular */
.form-card {
    background: #ffffff;
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0,0,0,0.03);
    position: sticky; top: 2rem;
}

.form-header { margin-bottom: 2rem; }
.form-header h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-header p { color: #888; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.input-group { margin-bottom: 1.5rem; }
.input-group label {
    display: block; margin-bottom: 0.5rem; font-weight: 600;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text);
}
.modern-input {
    width: 100%; padding: 1rem; background-color: #F8F9FA;
    border: 1px solid #e1e1e1; border-radius: 12px; font-family: inherit; font-size: 1rem; color: var(--color-text);
    transition: var(--transition);
}
.modern-input:focus {
    outline: none; background-color: #fff; border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}

.btn-submit {
    width: 100%; padding: 1.2rem; background-color: var(--color-text); color: white;
    border: none; border-radius: 12px; font-weight: 600; font-size: 1rem; cursor: pointer;
    transition: var(--transition); display: flex; justify-content: center; align-items: center; gap: 10px;
}
@media (hover: hover) {
    .btn-submit:hover {
        background-color: var(--color-primary); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(224, 122, 95, 0.3);
    }
}
.form-disclaimer { margin-top: 1rem; font-size: 0.75rem; color: #aaa; text-align: center; line-height: 1.4; }

/* Map & Responsive */
.map-container {
    width: 100%; height: 450px; margin-top: 5rem; border-top: 1px solid var(--color-border);
}
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%); }


/* =========================================
   MAP & DATENSCHUTZ WRAPPER
   ========================================= */

/* Abstand nach unten für den Container */
.content-padding-bottom {
    padding-bottom: var(--space-2xl);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    background-color: #F8F9FA; /* Platzhalter Farbe */
    border-radius: var(--border-radius); /* Abgerundete Ecken */
    overflow: hidden; /* Damit der Inhalt nicht über die runden Ecken ragt */
    box-shadow: var(--shadow-medium); /* Schöner Schatten */
    border: 1px solid rgba(0,0,0,0.05);
}

/* Das Overlay Design */
.map-privacy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f2f6;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.map-disclaimer-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    box-shadow: var(--shadow-medium);
}

.map-disclaimer-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.map-disclaimer-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-disclaimer-content small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #999;
}

/* Der Iframe Container */
.map-frame-container {
    width: 100%;
    height: 100%;
}

.map-frame-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%); /* Lässt die Karte etwas ruhiger wirken */
}

/* Button Anpassung für das Overlay */
    .map-disclaimer-content .btn-sidebar {
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

/* Responsive */


/* =========================================   STARTSEITE ERWEITERUNGEN (FIXED)
   ========================================= */

/* 1. News / Hinweis Box */
.news-section {
    margin-top: var(--space-xl);    /* Luft nach oben zur Philosophie */
    margin-bottom: 0;               /* Kein extra Abstand unten, da im selben Block */
    position: relative;
    z-index: 10;
}

.news-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    
    /* Ein sanfter Schatten sorgt für Tiefe */
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border); 
    
    border-left: 5px solid var(--color-primary); /* Der rote Balken links */
    
    display: flex;
    gap: 2rem;
    align-items: center; /* Vertikal zentriert */
}

.news-icon {
    font-size: 2.5rem;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    width: 70px;     /* Etwas größerer Kreis */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0; 
}

.news-content {
    width: 100%;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
    font-family: "Georgia", serif;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.news-list li:last-child {
    margin-bottom: 0;
}

.news-list strong {
    color: var(--color-text); /* Wichtige Wörter dunkler */
    font-weight: 600;
}

/* News-Section Responsive is handled in the main 900px media query */

/* 2. Willkommens-Sektion (Split Layout) */
.welcome-section {
    padding: var(--space-xl) 0 var(--space-2xl) 0;
}

.grid-welcome {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% Text, 50% Bild */
    gap: var(--space-xl);
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.welcome-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.welcome-body {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.welcome-signature {
    margin-top: 2rem;
    font-family: "Georgia", serif;
    font-style: italic;
    color: var(--color-primary);
    font-size: 1.2rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    display: inline-block;
}

/* Bild-Wrapper mit "Badge" */
.image-wrapper-decorated {
    position: relative;
}

.welcome-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
    border: 1px solid var(--color-border);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    font-family: "Georgia", serif;
}

.experience-badge .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-top: 5px;
    display: block;
}

/* 3. CTA Section unten */
.cta-section {
    text-align: center;
    padding: var(--space-2xl) 0;
    background-color: #fff;
    border-top: 1px solid var(--color-border);
}

.cta-max-width {
    max-width: 600px;
    margin: 0 auto;
}


/* =========================================
   RECHTSTEXTE (Impressum & Datenschutz)
   ========================================= */

.legal-content {
    max-width: 800px; /* Rechtstexte sollten nicht zu breit laufen für Lesbarkeit */
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-highlight-box {
    background-color: #f9f9f9;
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}


/* =========================================
   FOOTER (Rechtstexte & Copyright)
   ========================================= */

.site-footer {
    border-top: 1px solid var(--color-border); /* Feine Trennlinie */
    padding: var(--space-lg) var(--space-md);            /* Viel Luft */
    margin-top: var(--space-xl);              /* Abstand zum restlichen Inhalt */
    text-align: center;            /* Alles zentriert */
    background-color: #fff;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem; /* Abstand zwischen den Links */
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary); /* Wird Terracotta beim Drüberfahren */
    text-decoration: underline;
}

/* Damit das Copyright kleiner wirkt */
.copyright {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0.5rem;
    display: block;
}

/* =========================================
   GALERIE PRO-UPGRADE
   ========================================= */

/* Intro Bereich */
.header-teaser {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 1.5rem auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gallery-section {
    padding: 6rem 0;
}

.section-header-inline {
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.section-header-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header-inline p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: white;
}

/* Hide filtered items */
.gallery-item.hidden {
    display: none;
}

/* Animation for filtering */
.gallery-item {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Das Mosaik-Grid - Modernisiert */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 20px; /* Eleganterer, schmalerer Abstand */
}

.gallery-item {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px; /* Etwas eckiger für einen moderneren Foto-Look */
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    background-color: #000; /* Schwarzer Hintergrund für den Hover-Fade-Effekt */
    cursor: zoom-in; /* Zeigt an, dass man klicken kann */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

/* Hover-Effekt: Bild wird dunkler und zoomt leicht rein, Plus-Icon erscheint */
.gallery-item::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: white;
    font-size: 3rem;
    font-weight: 300;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

@media (hover: hover) {
    .gallery-item:hover img {
        transform: scale(1.08);
        opacity: 0.6; /* Macht das Bild dunkler */
    }
    
    .gallery-item:hover::after {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Spezial-Klassen für Profi-Fotos */
.item-tall {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.item-big {
    grid-column: span 2;
    grid-row: span 2;
}

/* =========================================
   LIGHTBOX GALERIE CSS
   ========================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover {
    color: white;
    transform: scale(1.1);
}

/* CTA Sektion am Ende der Galerie - Modernisiert */
.gallery-cta {
    position: relative;
    text-align: center;
    margin-top: 4rem;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #c9654b 100%);
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 40px rgba(224, 122, 95, 0.25);
    overflow: hidden;
}

/* Dezentes Hintergrundmuster für die CTA */
.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 20% 150%, rgba(255,255,255,0.1) 10%, transparent 50%),
                      radial-gradient(circle at 80% -50%, rgba(255,255,255,0.15) 15%, transparent 60%);
    pointer-events: none;
}

.gallery-cta p {
    position: relative;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: white;
    font-family: "Georgia", serif;
    line-height: 1.4;
    z-index: 2;
}

.gallery-cta .btn-sidebar {
    position: relative;
    background-color: white !important;
    color: var(--color-primary) !important;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
}

@media (hover: hover) {
    .gallery-cta .btn-sidebar:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
}

/* =========================================
   12. ICONS & TESTIMONIALS
   ========================================= */

.icon-svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.header-decoration {
    margin-top: 1rem;
    opacity: 0.2;
    color: var(--color-primary);
}

.testimonials-section {
    padding: 6rem 0;
}

.testimonial-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (hover: hover) {
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }
}

.quote-icon {
    color: var(--color-primary);
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-primary);
    font-family: "Georgia", serif;
    font-size: 1.1rem;
}

/* =========================================
   14. RESPONSIVE (MEDIA QUERIES)
   ========================================= */

/* --- TABLET & SMALL DESKTOP (1024px) --- */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        padding-top: 100px;
        padding-bottom: 3rem;
        gap: 2rem;
        text-align: center;
    }
    .hero-image {
        height: 350px;
        transform: none;
        margin-bottom: 1rem;
        border-radius: 20px;
        border-width: 3px;
        order: 1;
    }
    .hero-content {
        padding: 0;
        order: 2;
    }
}

/* --- MOBILE NAVIGATION & GENERAL (900px) --- */
@media (max-width: 900px) {
    /* Header & Nav */
    header {
        width: 100%; height: 70px; position: sticky; top: 0; z-index: 1000; flex-direction: row;
        justify-content: space-between; align-items: center; padding: 0 1.5rem;
        border-right: none; border-bottom: 1px solid var(--color-border);
        background-color: #ffffff;
    }
    .logo { margin: 0; font-size: 1.2rem; } .logo small { display: none; }
    .nav-links {
        position: fixed; 
        top: 70px; 
        right: -100%; 
        width: 100%; 
        height: calc(100vh - 70px);
        background: white; 
        padding: 3rem 2rem; 
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid var(--color-border);
    }
    .nav-links a.active::before {
        left: 0;
        width: 100%;
        height: 2px;
        bottom: 0;
        top: auto;
        border-radius: 0;
    }
    .hamburger { 
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-primary-soft); 
        color: var(--color-primary);
        border: none; 
        font-size: 1.8rem; 
        width: 48px;
        height: 48px;
        border-radius: 12px;
        cursor: pointer;
        transition: var(--transition);
    }
    .hamburger.active {
        background: var(--color-primary);
        color: white;
    }
    main { margin-left: 0; width: 100%; }
    .site-footer { margin-left: 0; width: 100%; }
    .nav-item-contact { 
        margin-top: 2rem; 
        width: 100%;
        padding-top: 0;
    }
    .btn-sidebar {
        width: 100%;
        padding: 1.2rem !important;
    }
    
    .container { padding: 0 1.5rem; }
    section { padding: 4rem 0; }
    .page-header-section { padding: 5rem 0 3rem 0; }
    .page-header-section h1 { font-size: 2.5rem; }
    .page-header-section::after { height: 40px; }
    .sub-headline::before { left: -1rem; width: 15px; }
    .sub-headline::after { right: -1rem; width: 15px; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* Welcome & News */
    .grid-welcome {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .news-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .news-icon { margin: 0 auto; }
    .news-section {
        transform: none;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 2rem;
        display: inline-block;
    }
    .welcome-section { padding: 2rem 0 4rem 0; }
    .welcome-text h2 { font-size: 1.8rem; }
    .cta-section { padding: 4rem 1.5rem; }

    /* Gallery */
    .gallery-section { padding: 4rem 0; }
    .section-header-inline { margin-bottom: 2.5rem; }
    .section-header-inline h2 { font-size: 2rem; }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        grid-auto-rows: 240px;
        gap: 15px;
    }
    .item-wide, .item-big { grid-column: span 1; }
    .item-tall, .item-big { grid-row: span 1; }
    .gallery-item { border-radius: 20px; }
}

/* --- MOBILE LANDSCAPE (600px) --- */
@media (max-width: 600px) {
    .map-wrapper {
        height: 350px;
    }
    .map-disclaimer-content {
        width: 90%;
        padding: 1.5rem;
    }
}

/* --- MOBILE PORTRAIT (500px) --- */
@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
}

/* --- SMALL MOBILE (400px) --- */
@media (max-width: 400px) {
    .time-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .time-value {
        width: 100%;
        text-align: center;
    }
}
/* Spacing Utilities */
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.pt-xs { padding-top: var(--space-xs); }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }
.pt-2xl { padding-top: var(--space-2xl); }
.pt-3xl { padding-top: var(--space-3xl); }

.pb-xs { padding-bottom: var(--space-xs); }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }
.pb-2xl { padding-bottom: var(--space-2xl); }
.pb-3xl { padding-bottom: var(--space-3xl); }

.py-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

/* =========================================
   15. FAQ ACCORDION
   ========================================= */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer strong {
    color: var(--color-text);
}


