/* Google Fonts werden per <link> im HTML geladen – kein @import mehr */

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 1.5rem;
    white-space: nowrap;
}
.lang-switch a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.lang-switch a:hover { color: #fff; }
.lang-switch .lang-active {
    color: #fff;
    font-weight: 700;
}
.lang-switch .lang-sep {
    color: rgba(255,255,255,0.4);
}

/* Hero image variants */
.hero-1 { background-image: linear-gradient(135deg, rgba(90,143,110,0.65) 0%, rgba(154,184,122,0.55) 100%), url('../images/1.jpg') center center / cover no-repeat; }
.hero-2 { background-image: linear-gradient(135deg, rgba(90,143,110,0.65) 0%, rgba(154,184,122,0.55) 100%), url('../images/2.jpg') center center / cover no-repeat; }
.hero-3 { background-image: linear-gradient(135deg, rgba(90,143,110,0.65) 0%, rgba(154,184,122,0.55) 100%), url('../images/3.jpg') center center / cover no-repeat; }
.hero-4 { background-image: linear-gradient(135deg, rgba(90,143,110,0.65) 0%, rgba(154,184,122,0.55) 100%), url('../images/4.jpg') center center / cover no-repeat; }
.hero-5 { background-image: linear-gradient(135deg, rgba(90,143,110,0.65) 0%, rgba(154,184,122,0.55) 100%), url('../images/5.jpg') center center / cover no-repeat; }
.hero-6 { background-image: linear-gradient(135deg, rgba(90,143,110,0.65) 0%, rgba(154,184,122,0.55) 100%), url('../images/6.jpg') center center / cover no-repeat; }
.hero-7 { background-image: linear-gradient(135deg, rgba(90,143,110,0.65) 0%, rgba(154,184,122,0.55) 100%), url('../images/7.jpg') center center / cover no-repeat; }

.hero-8 { background-image: linear-gradient(135deg, rgba(90,143,110,0.65) 0%, rgba(154,184,122,0.55) 100%), url('../images/8.jpg') center center / cover no-repeat; }

/* Same classes but relative from en/ subfolder */
.hero-1-en { background-image: linear-gradient(135deg, rgba(90,143,110,0.65) 0%, rgba(154,184,122,0.55) 100%), url('../images/1.jpg') center center / cover no-repeat; }

/* Organic scene image */
.scene-image {
    width: 100%;
    position: relative;
}

.scene-image img {
    width: 100%;
    height: auto;
    display: block;
}

.scene-image::before,
.scene-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1;
    pointer-events: none;
}

.scene-image::before {
    top: 0;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

.scene-image::after {
    bottom: 0;
    background: linear-gradient(to top, #ffffff, transparent);
}

/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5c8f58;
    --secondary-color: #c5d9b0;
    --accent-color: #eef3e8;
    --dark-color: #5c8f58;
    --light-color: #f5f8f1;
    --text-color: #4a4a4a;
    --light-text: #7a7a7a;
    --border-color: #d0dfc4;
    --spacing-unit: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header und Navigation */
.header {
    background: #5c8f58;
    color: #4a4a4a;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    flex: 1;
}

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.logo h1 a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo h1 a:hover {
    opacity: 0.9;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #e8f2e0;
}

.tagline-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #ffffff;
    margin-top: 0.1rem;
}

/* Navigation */
.main-nav {
    flex: 1;
    text-align: right;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.3s;
    position: relative;
}

.nav-list a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #5a8f6e;
    list-style: none;
    min-width: 180px;
    flex-direction: column;
    padding: 0.5rem 0;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.6rem 1.5rem;
    display: block;
    color: #ffffff;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: 0.6rem 1.5rem;
    margin: 0;
    opacity: 1;
}

.dropdown-menu a::after {
    display: none;
}

/* Menu Toggle für Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
.main-content {
    min-height: 60vh;
}

/* Abstand nach Hero */
.hero + section,
.hero + .container {
    margin-top: 4rem;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(122, 155, 95, 0.72) 0%, rgba(154, 184, 122, 0.60) 50%, rgba(238, 243, 232, 0.55) 100%),
        url('../images/jorge-vasconez-LCaKuYefLQk-unsplash.jpg') center 40% / cover no-repeat;
    background-attachment: scroll;
    color: #4a4a4a;
    padding: 4rem var(--spacing-unit) 5rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-einzeltherapie {
    background: linear-gradient(135deg, rgba(90,143,110,0.40) 0%, rgba(154,184,122,0.30) 60%, rgba(238,243,232,0.20) 100%), url('../images/7.jpg') center 40% / cover no-repeat;
    min-height: 85vh;
    filter: brightness(1.1);
}
.hero-einzeltherapie h1 {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-einzeltherapie .subtitle {
    color: #fff;
    text-shadow: 0 2px 14px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.6);
}

.hero-startseite {
    background: linear-gradient(135deg, rgba(92,143,88,0.60) 0%, rgba(130,175,90,0.45) 60%, rgba(238,243,232,0.30) 100%), url('../images/1.jpg') 30% 0% / cover no-repeat;
    min-height: 85vh;
}
.hero-startseite h1,
.hero-startseite p {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.65);
}

.hero-meinansatz3 {
    background: linear-gradient(135deg, rgba(90,143,110,0.45) 0%, rgba(154,184,122,0.35) 60%, rgba(238,243,232,0.25) 100%), url('../images/3.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
}
.hero-meinansatz3 h1,
.hero-meinansatz3 .subtitle {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-meinerangebot {
    background: linear-gradient(135deg, rgba(90,143,110,0.45) 0%, rgba(154,184,122,0.35) 60%, rgba(238,243,232,0.25) 100%), url('../images/5.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
}
.hero-meinerangebot h1,
.hero-meinerangebot .subtitle {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-gruppentherapie {
    background: linear-gradient(135deg, rgba(90,143,110,0.40) 0%, rgba(154,184,122,0.30) 60%, rgba(238,243,232,0.20) 100%), url('../images/2.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
    filter: brightness(1.1);
}
.hero-gruppentherapie h1,
.hero-gruppentherapie .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-coaching {
    background: linear-gradient(to bottom, rgba(80,55,20,0.15) 0%, rgba(80,55,20,0.35) 45%, rgba(80,55,20,0.2) 100%), url('../images/8.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
    filter: brightness(1.1);
}
.hero-coaching h1,
.hero-coaching .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-faq {
    background: linear-gradient(135deg, rgba(90,143,110,0.40) 0%, rgba(154,184,122,0.30) 60%, rgba(238,243,232,0.20) 100%), url('../images/5.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
    filter: brightness(1.1);
}
.hero-faq h1,
.hero-faq .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-meinangebot6 {
    background: linear-gradient(135deg, rgba(90,143,110,0.40) 0%, rgba(154,184,122,0.30) 60%, rgba(238,243,232,0.20) 100%), url('../images/6.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
    filter: brightness(1.1);
}
.hero-meinangebot6 h1,
.hero-meinangebot6 .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-uebermich {
    background: linear-gradient(to bottom, rgba(80,55,20,0.15) 0%, rgba(80,55,20,0.35) 45%, rgba(80,55,20,0.2) 100%), url('../images/4.jpg') center 75% / cover no-repeat;
    min-height: 85vh;
    filter: brightness(1.1);
}

.hero-kontakt {
    background: linear-gradient(135deg, rgba(90,143,110,0.55) 0%, rgba(154,184,122,0.4) 60%, rgba(238,243,232,0.25) 100%), url('../images/12.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
}
.hero-kontakt h1,
.hero-kontakt .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-paartherapie {
    background: linear-gradient(to bottom, rgba(80,55,20,0.05) 0%, rgba(80,55,20,0.15) 45%, rgba(80,55,20,0.05) 100%), url('../images/10.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
    filter: brightness(1.35);
}
.hero-paartherapie h1,
.hero-paartherapie .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-adhs {
    background: linear-gradient(135deg, rgba(92,143,88,0.70) 0%, rgba(130,175,90,0.60) 55%, rgba(154,184,122,0.45) 100%), url('../images/photo_2026-05-11_16-16-19.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
    filter: brightness(1.0);
}
.hero-adhs h1,
.hero-adhs .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.45);
}

.hero-rechtliches {
    background: linear-gradient(135deg, rgba(90,143,110,0.45) 0%, rgba(154,184,122,0.35) 60%, rgba(238,243,232,0.25) 100%), url('../images/13.jpg') center 50% / cover no-repeat;
    min-height: 85vh;
}
.hero-rechtliches h1,
.hero-rechtliches .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

/* ── Englische Hero-Klassen (Pfad: ../images/) ── */
.hero-startseite-en    { background: linear-gradient(135deg, rgba(92,143,88,0.60) 0%, rgba(130,175,90,0.45) 60%, rgba(238,243,232,0.30) 100%), url('../images/1.jpg') 30% 0% / cover no-repeat; min-height: 85vh; }
.hero-einzeltherapie-en { background: linear-gradient(135deg, rgba(90,143,110,0.40) 0%, rgba(154,184,122,0.30) 60%, rgba(238,243,232,0.20) 100%), url('../images/7.jpg') center 40% / cover no-repeat; min-height: 85vh; filter: brightness(1.1); }
.hero-gruppentherapie-en { background: linear-gradient(135deg, rgba(90,143,110,0.40) 0%, rgba(154,184,122,0.30) 60%, rgba(238,243,232,0.20) 100%), url('../images/2.jpg') center 50% / cover no-repeat; min-height: 85vh; filter: brightness(1.1); }
.hero-paartherapie-en  { background: linear-gradient(to bottom, rgba(80,55,20,0.15) 0%, rgba(80,55,20,0.35) 45%, rgba(80,55,20,0.2) 100%), url('../images/10.jpg') center 50% / cover no-repeat; min-height: 85vh; filter: brightness(1.1); }
.hero-coaching-en      { background: linear-gradient(to bottom, rgba(80,55,20,0.15) 0%, rgba(80,55,20,0.35) 45%, rgba(80,55,20,0.2) 100%), url('../images/8.jpg') center 50% / cover no-repeat; min-height: 85vh; filter: brightness(1.1); }
.hero-meinansatz3-en   { background: linear-gradient(135deg, rgba(90,143,110,0.45) 0%, rgba(154,184,122,0.35) 60%, rgba(238,243,232,0.25) 100%), url('../images/3.jpg') center 50% / cover no-repeat; min-height: 85vh; }
.hero-uebermich-en     { background: linear-gradient(to bottom, rgba(80,55,20,0.15) 0%, rgba(80,55,20,0.35) 45%, rgba(80,55,20,0.2) 100%), url('../images/4.jpg') center 75% / cover no-repeat; min-height: 85vh; filter: brightness(1.1); }
.hero-faq-en           { background: linear-gradient(135deg, rgba(90,143,110,0.40) 0%, rgba(154,184,122,0.30) 60%, rgba(238,243,232,0.20) 100%), url('../images/5.jpg') center 50% / cover no-repeat; min-height: 85vh; filter: brightness(1.1); }
.hero-kontakt-en       { background: linear-gradient(135deg, rgba(90,143,110,0.55) 0%, rgba(154,184,122,0.4) 60%, rgba(238,243,232,0.25) 100%), url('../images/12.jpg') center 50% / cover no-repeat; min-height: 85vh; }
.hero-rechtliches-en   { background: linear-gradient(135deg, rgba(90,143,110,0.45) 0%, rgba(154,184,122,0.35) 60%, rgba(238,243,232,0.25) 100%), url('../images/13.jpg') center 50% / cover no-repeat; min-height: 85vh; }

.hero-startseite-en h1, .hero-startseite-en p,
.hero-einzeltherapie-en h1, .hero-einzeltherapie-en .subtitle,
.hero-gruppentherapie-en h1, .hero-gruppentherapie-en .subtitle,
.hero-paartherapie-en h1, .hero-paartherapie-en .subtitle,
.hero-coaching-en h1, .hero-coaching-en .subtitle,
.hero-meinansatz3-en h1, .hero-meinansatz3-en .subtitle,
.hero-uebermich-en h1, .hero-uebermich-en .subtitle,
.hero-faq-en h1, .hero-faq-en .subtitle,
.hero-kontakt-en h1, .hero-kontakt-en .subtitle,
.hero-rechtliches-en h1, .hero-rechtliches-en .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}
.hero-uebermich h1,
.hero-uebermich .subtitle {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 1px 6px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.18);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero strong {
    font-weight: 600;
}

/* Angebot Section */
.angebot {
    background-color: var(--light-color);
    padding: 3rem var(--spacing-unit);
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.angebot h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.angebot-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.angebot-item {
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #5a8f6e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: white;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

a:has(.angebot-item):hover .angebot-item,
.angebot-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.angebot-item p {
    color: #1a1a1a !important;
    font-weight: 600;
}

.angebot-item h3 {
    color: #5a8f6e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.angebot-item p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #5a8f6e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid #5a8f6e;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #5a8f6e;
    border-color: #5a8f6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 155, 95, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Content Sections */
section {
    padding: 5rem var(--spacing-unit);
}

section h2 {
    font-size: 2rem;
    color: #5a8f6e;
    margin-bottom: 2rem;
    text-align: center;
}

section h3 {
    font-size: 1.5rem;
    color: #5a8f6e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

section p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Info Boxes */
.info-box {
    background-color: #eef3e8;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 5px solid #5a8f6e;
}

.info-box h3 {
    margin-top: 0;
    color: #5a8f6e;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.grid-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.grid-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.grid-item h3 {
    color: #5a8f6e;
    margin-top: 0;
}

/* Footer */
.footer {
    background-color: #5c8f58;
    color: white;
    padding: 3rem var(--spacing-unit) 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #c5d9b0;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: auto;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(122, 155, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Navigation */
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--dark-color);
        padding: 1rem;
        gap: 0;
        z-index: 999;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        padding: 0.75rem 0;
    }

    .nav-list a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
    }

    .nav-dropdown.active .dropdown-menu {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .header .container {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .main-nav {
        width: 100%;
        text-align: left;
        margin-top: 0.5rem;
        position: relative;
    }

    .lang-switch {
        margin-left: auto;
    }

    /* Hero */
    .hero {
        min-height: 60vh;
        padding: 3rem 1rem 4rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 1rem;
        padding: 0.25rem 0.75rem;
    }

    /* Sections */
    section {
        padding: 3rem 1rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    /* Grids → einspaltig */
    .angebot-items,
    .grid {
        grid-template-columns: 1fr;
    }

    /* Kontakt: 2-Spalten → 1-Spalte */
    .kontakt-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Über-mich Grid */
    .ueber-mich-grid {
        grid-template-columns: 1fr !important;
    }

    .ueber-mich-grid img {
        max-width: 220px;
        margin: 0 auto 1.5rem !important;
    }

    /* Kontakt-Buttons */
    #btn-erstgespraech,
    #btn-sonstiges {
        font-size: 0.9rem !important;
        padding: 0.9rem 0.75rem !important;
    }

    /* Info-Box */
    .info-box {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }

    .hero {
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero .subtitle {
        font-size: 0.95rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .btn {
        display: block;
        text-align: center;
        width: 100%;
    }

    /* Kontakt-Buttons untereinander */
    div[style*="display: flex; gap: 1rem"] {
        flex-direction: column !important;
    }

    /* Zeitliche Verfügbarkeit Tabelle */
    div[style*="grid-template-columns: 100px 1fr 1fr"] {
        grid-template-columns: 80px 1fr 1fr !important;
        font-size: 0.85rem;
    }

    /* Maps Placeholder */
    #maps-placeholder {
        height: 160px !important;
    }

    /* Footer unten */
    .footer-bottom p {
        font-size: 0.8rem;
        text-align: center;
    }
}
