/* ============================================
   LISA RESATZ WEBSITE - MAIN.CSS
   Konsolidierte CSS-Datei (1:1 Kopie aller bestehenden Regeln)
============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (aus colors.css)
============================================ */
:root {
    /* Hauptfarben */
    --warm-white: #fefcf8;
    --soft-cream: #f7f4ee;
    --sage-green: #9db4a6;
    --forest-green: #6b8471;
    --deep-forest: #4a5d50;
    
    /* Akzentfarben */
    --terracotta: #c67b5c;
    --rust: #a0634a;
    --warm-orange: #e8985d;
    --sunny-yellow: #f2c55c;
    --soft-peach: #f4e4d6;
    
    /* Zusätzliche Nuancen - falls du weitere Farben brauchst */
    --light-sage: #b5c8ba;
    --dark-forest: #3a4940;
    --cream-white: #faf8f3;

    /* Globaler Radius */
    --media-radius: 20px;
}

/* ============================================
   2. GLOBALE TYPOGRAFIE & THEME-SYSTEM (DEINE ERGÄNZUNGEN)
============================================ */
/* Globale Typografie (basierend auf Startseite) */
p { font-size: 1.3rem; margin-bottom: 2rem; }
h1 { font-size: 3.3rem; line-height: 1.2; margin-bottom: 2rem; }
h2 { font-size: 2.3rem; line-height: 1.3; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; line-height: 1.5; margin-bottom: 1.3rem; }
h4 { font-size: 1.5rem; line-height: 1.5; margin-bottom: 1rem; }

/* Theme-System */
.theme-forest { background: var(--forest-green); color: var(--warm-white); }
.theme-deep { background: var(--deep-forest); color: var(--warm-white); }
.theme-sage-dark { background: var(--sage-green); color: var(--deep-forest); }
.theme-sage-light { background: var(--sage-green); color: var(--warm-white); }

/* ============================================
   3. GLOBALE GRUNDLAGEN (aus styles.css)
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: var(--deep-forest);
    background-color: var(--deep-forest);
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   4. NAVIGATION (aus styles.css)
============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--sage-green);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-svg {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-svg {
    transform: scale(1.15);
    opacity: 0.8;
}

.logo-svg-white {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-svg-white {
    transform: scale(1.15);
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-self: flex-end;
    margin-bottom: 0px;
}

.nav-links a {
    text-decoration: none;
    color: var(--warm-white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--warm-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--sage-green);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--warm-white);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   5. BUTTONS (aus styles.css)
============================================ */
.cta-button {
    display: table;
    margin: 4rem auto;
    padding: 12px 24px;
    background: var(--sunny-yellow);
    color: var(--deep-forest);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 197, 92, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 197, 92, 0.4);
    background: #f0b941;
}

.btn-back {
    display: inline-block;
    padding: 12px 24px;
    background: var(--terracotta);
    color: var(--warm-white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(198, 123, 92, 0.3);
    margin-top: 3rem;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 123, 92, 0.4);
    background: var(--rust);
}

/* ============================================
   6. ANIMATIONEN (aus styles.css)
============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   7. HOMEPAGE SECTIONS (aus styles.css)
============================================ */
.hero-homepage {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: var(--deep-forest);
    padding-top: 8rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 93, 80, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

/* Fix: Safari Play-Button soll anklickbar bleiben */
.hero-overlay,
.hero-content {
  pointer-events: none;
}

.hero-content * {
  pointer-events: auto; /* Links und Texte im Content bleiben klickbar */
}

.hero-text {
    color: var(--warm-white);
}

.hero-tagline {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--warm-white);
    margin: 2rem auto 8rem auto;
    letter-spacing: 0.5px;
}

.hero-statement {
    font-size: 1.3rem;
    color: var(--warm-white);
}

.hero-statement .line {
    display: block;
    margin-bottom: 0.4rem;
}

.hero-statement .emphasis {
    margin-bottom: 0.4rem;
}

.hero-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    align-items: flex-end;
    text-align: right;
}

.hero-location {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: var(--warm-white);
    margin-top: 2rem;
}

.lisa-section {
    background: var(--sage-green);
    padding: 8rem 0;
}

.lisa-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.lisa-content h2 {
    font-size: 1.8rem;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 2rem;
    color: var(--deep-forest);
}

.lisa-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--deep-forest);
}

.work-separator {
    width: 120px;
    height: 4px;
    background: var(--terracotta);
    margin: 6rem auto;
}

.phases-section {
    background: var(--forest-green);
    padding: 8rem 0;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.phase-card {
    text-align: center;
    color: var(--warm-white);
}

.phase-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
}

.phase-card h3 {
    font-size: 1.5rem;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 1rem;
    color: var(--warm-white);
}

.phase-subtitle {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--warm-white);
}

.phase-card p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--warm-white);
}

.ready-section {
    background: var(--sage-green);
    padding: 10rem 0;
}

.ready-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ready-content h2 {
    font-size: 2.5rem;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 2rem;
    color: var(--deep-forest);
}

.ready-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--deep-forest);
}

.meeting-section {
    background: var(--forest-green);
    padding: 10rem 0;
    text-align: center;
}

.meeting-content {
    max-width: 700px;
    margin: 0 auto;
}

.meeting-content h3 {
    font-size: 1.8rem;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--warm-white);
}

.meeting-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--warm-white);
}

.belief {
    font-size: 1.3rem;
    color: var(--warm-white);
    font-weight: 600;
}

.meeting-content .nav-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    align-self: center;
    margin-bottom: 0;
}

.meeting-content .nav-links a {
    color: var(--warm-white);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    transition: opacity 0.3s ease;
}

.meeting-content .nav-links a:hover {
    opacity: 1;
    color: var(--sunny-yellow);
}

/* ============================================
   8. ANDERE SEITEN - STANDARD HERO (aus styles.css)
============================================ */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--forest-green);
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.hero .hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: var(--warm-white);
}

.hero .hero-text .subtitle {
    font-size: 1.3rem;
    color: var(--warm-white);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--warm-white);
}

.hero-booking {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--sage-green);
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-booking-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-booking-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: var(--deep-forest);
}

.hero-booking-text .subtitle {
    font-size: 1.3rem;
    color: var(--deep-forest);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-booking-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--deep-forest);
}

.about {
    padding: 6rem 0;
    background: var(--forest-green);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    border-radius: var(--media-radius);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--warm-white);
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--warm-white);
    opacity: 0.9;
}

.values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    color: var(--warm-white);
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: var(--media-radius);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h4 {
    color: var(--warm-white);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--warm-white);
    font-size: 1.2rem;
}

.services {
    padding: 6rem 0;
    background: var(--sage-green);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--deep-forest);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: transparent;
    padding: 3rem;
    border-radius: var(--media-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--deep-forest);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-forest);
}

.service-card p {
    color: var(--deep-forest);
    line-height: 1.8;
    opacity: 0.8;
}

.contact {
    padding: 8rem 0;
    background: var(--forest-green);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--warm-white);
}

.contact p {
    font-size: 1.2rem;
    color: var(--warm-white);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-content {
    padding: 8rem 0;
    background: var(--sage-green);
}

footer {
    background: var(--deep-forest);
    color: var(--warm-white);
    padding: 3rem 0;
    text-align: center;
}

footer p {
    font-family: 'Quicksand', sans-serif;
}

/* ============================================
   9. KOMPONENTEN (aus components.css)
============================================ */
.btn {
    display: table;
    margin: 4rem auto;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--sunny-yellow);
    color: var(--forest-green);
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: none;
    background: #f0b941;
}

.-secondary {
    background: var(--sage-green);
    color: var(--warm-white);
    box-shadow: none;
}

.-secondary:hover {
    transform: translateY(-2px);
    box-shadow: none;
    background: var(--forest-green);
}

.-outline {
    background: transparent;
    color: var(--deep-forest);
    border: 2px solid var(--sage-green);
}

.-outline:hover {
    background: var(--sage-green);
    color: var(--warm-white);
    transform: translateY(-2px);
}

.card {
    background: var(--sage-green);
    border-radius: var(--media-radius);
    padding: 2rem;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: none;
    box-shadow: none;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: var(--deep-forest);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--sage-green);
    font-size: 1rem;
    font-weight: 500;
}

.card-body {
    margin-bottom: 1.5rem;
}

.card-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--soft-cream);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: var(--deep-forest);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--soft-cream);
    border-radius: 10px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    background: var(--warm-white);
    transition: border-color 0.3s ease, box-shadow none;
}

.form-input:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: none;
}

.form-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 16px;
    border: 2px solid var(--soft-cream);
    border-radius: 10px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    background: var(--warm-white);
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow none;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: none;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--soft-cream);
    border-radius: 10px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    background: var(--warm-white);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--sage-green);
}

.page-header {
    padding: 120px 0 60px;
    background: var(--forest-green);
    text-align: center;
    color: var(--warm-white);
}

.page-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Brevo-Widget: Container schmal & zentriert; iFrame füllt den Container */
.brevo-container {
    max-width: 640px;
    margin: 0 auto 2rem;    /* zentriert */
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: auto;
    overflow: visible;
}

.brevo-container iframe {
    width: 100%;            /* statt fixer 640px → Container bestimmt die Breite */
    height: 900px;         /* Zahl nach Bedarf 1000/1300/1400 anpassen */
    border: 0;
    border-radius: 0;
    display: block;
}

@media (max-width: 768px) {
    .brevo-container { max-width: 100%; }   /* mobil wieder vollbreit */
    .brevo-container iframe { height: 1300px; }
}

.service-svg {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-svg {
    filter: brightness(0) saturate(100%) invert(64%) sepia(33%) saturate(432%) hue-rotate(10deg) brightness(94%) contrast(87%);
    transform: scale(1.1);
}

.service-card {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.7;
    max-width: 100%;
}

.service-card h3 {
    word-wrap: break-word;
    max-width: 100%;
}

.hero-booking {
    min-height: 50vh;
    background: var(--sage-green);
    padding: 8rem 0 4rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-intro {
    padding: 12rem 0 6rem 0;
    background: var(--sage-green);
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h1 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    color: var(--warm-white);
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--warm-white);
    opacity: 0.95;
    margin-bottom: 2rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.begleitung-bereiche {
    background: var(--forest-green);
}

.bereich {
    padding: 8rem 0;
    text-align: left;
}

.begleitung-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bereich-header {
    position: relative;
    margin-bottom: 3rem;
}

.begleitung-content h2 {
    font-size: 2.5rem;
    color: var(--warm-white);
    line-height: 1.2;
    text-align: left;
    margin: 0;
}

.bereich-icon {
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.bereich-icon img {
    width: 80px;
    height: 80px;
}

.begleitung-content .subtitle {
    font-size: 1.8rem;
    color: var(--warm-white);
    font-weight: 400;
}

.begleitung-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--warm-white);
    text-align: left;
}

.begleitung-content h3 {
    color: var(--warm-white);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-size: 1.3rem;
    text-align: left;
}

.begleitung-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    text-align: left;
}

.begleitung-content li {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--warm-white);
}

.begleitung-content .btn {
    display: table;
    margin: 4rem auto;
}

.gemeinsamer-weg {
    padding: 8rem 0;
    background: var(--sage-green);
}

.weg-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.weg-content h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--deep-forest);
}

.weg-prinzipien {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.prinzip {
    background: rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    border-radius: var(--media-radius);
}

.prinzip h3 {
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.prinzip p {
    color: var(--deep-forest);
    font-size: 1.1rem;
    line-height: 1.6;
}

.pakete-section {
    padding: 0 0 6rem 0;
    background: var(--sage-green);
}

.pakete-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.pakete-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--deep-forest);
    margin-bottom: 2.5rem;
}

.cta-final {
    margin-top: 0;
    padding: 12rem 0 8rem;
    background: var(--forest-green);
    text-align: center;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--warm-white);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .btn {
    margin: 4rem auto;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.bereich-content p:last-of-type {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.forest-bg {
    background: var(--forest-green);
}

.forest-bg .bereich-content h2,
.forest-bg .bereich-content p {
    color: var(--warm-white);
}

.sage-bg {
    background: var(--sage-green);
}

.sage-bg .bereich-content h2,
.sage-bg .bereich-content p {
    color: var(--deep-forest);
}

.abschluss {
    padding: 6rem 0;
    background: var(--sage-green);
}

.abschluss-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.abschluss h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--deep-forest);
}

.abschluss p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--deep-forest);
}

.abschluss .info-text {
    margin-bottom: 3rem;
    font-size: 1rem;
}

.abschluss .kostenlos {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.about-hero-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 8rem;
    max-width: 1000px;
    margin: 0 auto 8rem auto;
}

.about-hero-photo img {
    width: 100%;
    height: auto;
    border-radius: var(--media-radius);
}

.about-hero-text {
    font-size: 1.2rem;
    color: var(--forest-green);
}

.about-hero-text p {
    margin-bottom: 1.5rem;
}

.about-story-paragraph {
    margin-bottom: 4rem;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.about-nature-photo {
    max-width: 1000px; 
    margin: 8rem 0;
    text-align: center;
}

.about-nature-photo img {
    width: 100%;
    max-width: 900px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--media-radius);
}

.about-nature-video {
    max-width: 1000px; 
    margin: 6rem auto;
    text-align: center;
    overflow: hidden;
}

.about-nature-video video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--media-radius);
    display: block;
}

.about-icon-paragraph {
    position: relative;
    margin-bottom: 4.5rem;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 4.5rem auto;
}

.about-paragraph-icon {
    width: 70px;
    height: 70px;
    float: left;
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.about-paragraph-icon[alt*="Kamera"] {
    width: 80px;
    height: 80px;
    margin-left: 2rem;
    margin-right: 2rem;
}

.about-icon-paragraph {
    position: relative;
    margin-bottom: 4.5rem;
    font-size: 1.3rem;
    line-height: 1.8;
    padding-right: 120px;
}

.about-butterfly-separator {
    text-align: center;
    margin: 6rem auto;
}

.about-butterfly-separator img {
    width: 80px;
    height: 80px;
    opacity: 1;
}

.about-sun-highlight {
    position: relative;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 1000px; 
    margin: 0 auto 3rem auto;
}

.about-sun-highlight .about-paragraph-icon[alt*="Sonne"] {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 120px;
    height: 120px;
    float: none;
    margin: 0;
    opacity: 1;
    z-index: 1;
}

.about-sun-highlight .about-icon-text {
    margin-right: 140px;
}

.about-visual-separator {
    width: 120px;
    height: 4px;
    background: var(--terracotta);
    margin: 4rem auto;
    opacity: 0.8;
}

.about-quote-highlight {
    font-style: italic;
    font-size: 1.35rem;
    color: var(--forest-green);
    max-width: 1000px; 
    margin: 3rem auto;
    padding-left: 2rem;
    border-left: 3px solid var(--terracotta);
}

.about-highlight-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 5rem auto;
}

.about-highlight-box {
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: var(--media-radius);
    backdrop-filter: blur(5px);
}

.about-highlight-box h5 {
    color: var(--forest-green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.about-highlight-box p {
    color: var(--forest-green);
    font-size: 1.2rem;
    margin: 0;
}

/* ============================================
   WP Block-Editor Medien (globale Rundung)
============================================ */
.wp-block-image img { border-radius: var(--media-radius); }
.wp-block-video video { border-radius: var(--media-radius); }

/* Vollbreite/Hero in WP ohne Rundung (Ausnahmen) */
.wp-block-image.alignfull img,
.wp-block-video.alignfull video,
.wp-block-cover {
  border-radius: 0 !important;
}


/* ============================================
   10. RESPONSIVE DESIGN (aus responsive.css)
============================================ */
@media (max-width: 768px) {
    /* About-Lisa Hero optimieren */
    .about-hero-intro {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .about-hero-text {
        order: 2;
        text-align: left !important;
    }
    
    .about-hero-photo {
        order: 1;
    }
    
    /* ALLE Texte einheitlich */
    .about-story-paragraph,
    .about-icon-text,
    .about-sun-highlight .about-icon-text,
    .about-highlight-box p {
        font-size: 1.2rem !important;
        text-align: left !important;
    }
    
    /* About-Lisa Icon-Paragraphen */
    .about-icon-paragraph {
        display: block !important;
        padding-right: 0 !important;
    }
    
    .about-paragraph-icon {
        display: block !important;
        margin: 0 auto 1.5rem auto !important;
        float: none !important;
    }
    
    /* About-Lisa Sonne komplett zurücksetzen */
    .about-sun-highlight {
        position: relative !important;
        padding-right: 0 !important;
        margin-right: 0 !important;
        display: block !important;
    }
    
    .about-sun-highlight .about-paragraph-icon[alt*="Sonne"] {
        position: static !important;
        display: block !important;
        margin: 0 auto 1.5rem auto !important;
        right: auto !important;
        width: 80px !important;
        height: 80px !important;
    }
    
    .about-sun-highlight .about-icon-text {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        display: block !important;
    }
    
    /* Highlight-Boxen */
    .about-highlight-boxes {
        grid-template-columns: 1fr !important;
    }
    
    /* Video auf Mobile */
    .about-nature-video {
        margin: 4rem 0;
    }
    
    .about-nature-video video {
        height: 300px;
    }
    
    /* Begleitung-Seite Mobile */
    .kaertchen-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-begleitung {
        padding: 10rem 0 4rem 0;
    }
    
    .hero-begleitung h1 {
        font-size: 2.5rem;
    }
    
    .bereich-grid.links,
    .bereich-grid.rechts {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .bereich-content.rechts {
        text-align: left !important;
    }
    
    .bereich-icon {
        position: static !important;
        order: -1 !important;
        text-align: center !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .bereich-content h2 {
        font-size: 2rem !important;
    }
    
    .bereich-content p {
        font-size: 1.1rem !important;
    }
    
    /* Bereich Header Mobile - Icons über Überschriften zentriert */
    .bereich-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }

    .begleitung-content h2 {
     text-align: center !important;
    }

    /* Weg-Prinzipien - alle untereinander */
    .weg-prinzipien {
     grid-template-columns: 1fr !important;
    }

    /* ============================================
       11. RESPONSIVE DESIGN (aus styles.css)
    ============================================ */

    /* Navigation Mobile */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        background: var(--sage-green);
    }
     
    nav ul:not(.mobile-menu ul) {
        display: none !important;
    }
    
    .logo-svg {
        height: 50px;
    }
    
    nav {
        padding: 15px 0;
    }

    /* Homepage Mobile */
    .hero-homepage {
        padding: 6rem 1.5rem 2rem;
    }
    
    .hero-video {
        object-position: 75% center; /* Video rechts positionieren */
    }
    
    .hero-tagline {
        margin-bottom: 2rem; /* Statt 8rem */
        font-size: 1.3rem;   /* Statt 1.8rem */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-location {
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-statement {
        font-size: 1.2rem;
    }
    
    .phases-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .meeting-content .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Andere Seiten Mobile */
    .hero {
        padding-top: 80px;
    }
    
    .hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-svg {
        height: 45px;
    }
}

/* ===============================
   BLOG ÜBERSICHT (home.php)
=============================== */

.blog-overview {
  background: var(--forest-green);
  padding: 8rem 0;
}

.blog-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: block;
  height: 480px; /* alle gleich hoch */
  backdrop-filter: blur(5px);
}

.blog-card:hover { transform: translateY(-5px); }

.blog-thumb { height: 40%; overflow: hidden; }
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.blog-card-content {
  height: 60%;
  padding: 1rem;
  display: flex; flex-direction: column; justify-content: flex-start;
}

.blog-meta {
  font-size: 0.9rem;          /* meta = ok als kleine Skala */
  font-style: italic;
  font-family: 'Quicksand', sans-serif;
  text-align: right;
  margin-bottom: 0.5rem;
  color: var(--warm-white);
}

.blog-card h2 {               /* h2 zieht globale Heading-Regeln */
  margin: 0 0 0.5rem 0;
  color: var(--warm-white);
}

.post-subheadline {
  /* REMOVE: font-size: 1.2rem;  -> wir nutzen globale Skalen im Content */
  font-weight: 400;
  color: var(--warm-white);
}

/* ====== Blogpost: Kopfbereich ====== */
.post-head .post-category {
  font-size: 1rem;         /* meta: klein + kursiv, wie gewünscht */
  font-style: italic;
  color: var(--warm-white);
  opacity: 0.9;
  margin: 1rem 0 .75rem;
  text-align: center;         
}

/* H1/Unterzeile/Lesezeit: nur Farbe, keine neuen Größen */
.post-head .post-title,
.post-head .post-subtitle,
.post-head .reading-time {
  color: var(--warm-white);
}

/* REMOVE: .post-subtitle { font-size: 1.3rem; opacity: 0.95; } 
   -> keine neue Größe setzen; Skala kommt (optional) über h2/h3-Markup, s.u.  */
.post-subtitle { opacity: 0.95; } /* nur leichte Betonung, keine Größe */

/* Lesezeit typografisch angleichen & zentrieren, keine neue Größe */
.reading-time  {
  font-family: 'Quicksand', sans-serif;
  /* REMOVE: font-size: 0.95rem; */
  display: block;
  text-align: center;         /* CHANGE */
}

/* ====== Beitragsbild & Inline-Bilder (wie About Lisa) ====== */
.post-hero img {
  width: 100%;
  max-width: 900px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--media-radius);
  display: block;
  margin: 2rem auto 3rem;
}
.entry-content img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--media-radius);
  display: block;
  margin: 2rem auto;
}

/* === NEU: Textbreite wie Bild (~900px), zentriert === */
.post-head,
.post-content,
.post-bottom,
.comment-respond {
  max-width: 900px;           /* CHANGE: konsistent zur Bildbreite */
  margin-left: auto;          /* CHANGE */
  margin-right: auto;         /* CHANGE */
}

/* Formular-Layout als Grid (links Name/E-Mail, rechts Kommentar) */
.comment-respond .comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.comment-form-author,
.comment-form-email { grid-column: 1; }
.comment-form-comment { grid-column: 2 / span 1; }
.form-submit,
.comment-form-cookies-consent { grid-column: 1 / -1; }

/* Labels visuell zurücknehmen (Platzhalter nutzen) */
.comment-respond label { position: absolute; width: 1px; height: 1px; margin: -1px; clip: rect(0,0,0,0); overflow: hidden; }

/* Inputs/Textarea in deinem Look (Rundungen, keine dunklen Ränder) */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  font-family: 'Lora', serif;
  line-height: 1.6;
  padding: .75rem 1rem;
  border-radius: var(--media-radius);
  background: var(--warm-white);
  color: var(--deep-forest);
}
.comment-form textarea { min-height: 200px; }

/* Titel im Kommentarbereich */
.comment-respond h3 {
  font-family: 'Quicksand', sans-serif;
  margin: 0 0 .75rem 0;
}

/* Submit-Button:  hier nur Fallback (optional) */
.comment-respond .submit.cta-button { /* falls du cta-button global hast */
}
@media (max-width: 800px){
  .comment-respond .comment-form { grid-template-columns: 1fr; }
  .comment-form-author, .comment-form-email, .comment-form-comment { grid-column: 1; }
}

/* ====== Autorenbox (Gast) ====== */
.guest-author-box{
  max-width: 700px;
  margin: 3rem auto;
  display: flex; gap: 1rem; align-items: center;
  background: rgba(255,255,255,0.25);
  padding: 1.5rem; border-radius: var(--media-radius);
}
@media (max-width: 640px){
  .guest-author-box{ flex-direction: column; align-items: flex-start; }
}
.guest-author-photo{
  width: 64px; height: 64px; object-fit: cover; border-radius: 50%;
}
.guest-author-name { color: var(--deep-forest); display: block; margin-bottom: .25rem; }
.guest-author-bio  { color: var(--deep-forest); margin: 0; }

/* ====== Newsletter-Hülle unten ====== */
.post-newsletter {
  max-width: 700px; margin: 4rem auto 0;   /* hat jetzt Luft nach oben */
  text-align: left;
  background: rgba(255,255,255,0.15); padding: 2rem;
  border-radius: var(--media-radius); backdrop-filter: blur(5px);
}

/* ====== Gutenberg Block-Stile – Line-Familie ====== */
/* Separator: gleiche Optik wie About */
.about-visual-separator,
.wp-block-separator.is-style-separator-line {
  width: 120px;
  height: 4px;
  background: var(--terracotta);
  margin: 4rem auto;
  opacity: 0.8;
}

/* Zitat: Linie links */
.wp-block-quote.is-style-quote-line {
  border-left: 3px solid var(--terracotta);
  padding-left: 1rem;
  font-style: italic;
}

/* Absatz/Gruppe: Linie links */
.wp-block-group.is-style-left-line,
.wp-block-paragraph.is-style-left-line {
  border-left: 3px solid var(--terracotta);
  padding-left: 1rem;
}

/* Kommentar-Honeypot verbergen */
.comment-form-aunhp { display: none !important; }

/* ===== GLOBAL (WP): Headings in Quicksand =====
   -> schützt gegen WP-Theme-Überschreibungen, ohne Skalen zu ändern */
h1, h2, h3, h4, h5, h6,
.wp-block-post-title {
  font-family: 'Quicksand', sans-serif;
}

/* ===== Testimonials (global, wiederverwendbar) ===== */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1rem;
  scroll-behavior: smooth;
}

@media (min-width: 640px) {
  .testimonial-track { grid-auto-columns: 50%; }
}
@media (min-width: 1024px) {
  .testimonial-track { grid-auto-columns: 33.3333%; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius, 12px);
  background: rgba(255, 255, 255, 0.08);           /* milchglas-heller als Hintergrund */
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

/* Medienbereich oben: Querfoto oder Video */
.testimonial-media {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
}
.testimonial-media img,
.testimonial-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Body: fester Bereich mit internem Scroll für lange Zitate */
.testimonial-body {
  padding: 1rem 1rem 0.5rem;
  line-height: 1.5;
  max-height: 8.5rem;             /* fixierte Höhe für Ruhe im Layout */
  overflow: auto;                  /* langer Text scrollt intern */
  scrollbar-width: thin;
}

/* Hinweis "mehr…" nur sichtbar, wenn gescrollt wird (per JS) */
.testimonial-more {
  display: none;
  font-size: 0.9em;
  opacity: 0.8;
  padding: 0 1rem 0.5rem;
}

.testimonial-name {
  padding: 0 1rem 1rem;
  margin-top: auto;
  font-weight: 600;
}

/* Pfeile: große, transparente Buttons, nur wenn nötig */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: currentColor;
  opacity: 0.6;                    /* Start ~60% */
  font-size: 2rem;                 /* groß genug, aber nicht schreiend */
  line-height: 1;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}
.testimonial-arrow[disabled] { opacity: 0.2; cursor: default; }
.testimonial-arrow:hover { opacity: 0.85; }

.testimonial-arrow.prev { left: 0; }
.testimonial-arrow.next { right: 0; }

/* Videovariante: Vollkarte bespielt, Name bleibt unten */
.testimonial-card.is-video .testimonial-media { aspect-ratio: 16 / 9; }
.testimonial-card.is-video .testimonial-body { display: none; }
