/* Import der Schriften */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Lora:wght@400;600&display=swap');

:root {
    --primary-green: #586454;
    --secondary-green: #8a9a83;
    --warm-bg: #f4f1eb;
    --dark-text: #3c3b39;
    --light-text: #fcfaf8;
    --shadow: rgba(50, 50, 50, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { font-family: 'Lato', sans-serif; line-height: 1.8; color: var(--dark-text); background-color: #ffffff; }

.container { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; text-align: center; }
.container-light { background-color: var(--warm-bg); padding: 6rem 0; }

h1, h2, h3 { font-family: 'Lora', serif; font-weight: 600; margin-bottom: 1.5rem; color: var(--primary-green); line-height: 1.3; }
h2 { font-size: 2.8rem; margin-bottom: 3.5rem; }
.section-title { text-align: center; }
p { margin-bottom: 1.5rem; max-width: 650px; margin-left: auto; margin-right: auto; font-size: 1.1rem; font-weight: 300; }

header { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); box-shadow: 0 2px 10px var(--shadow); position: sticky; top: 0; z-index: 1000; width: 100%; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 1.2rem 2rem; }
nav .logo { font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 600; color: var(--primary-green); text-decoration: none; }
nav ul { display: flex; list-style: none; }
nav ul li a { text-decoration: none; color: var(--dark-text); padding: 0.5rem 1rem; transition: color 0.3s; font-weight: 400; }
nav ul li a:hover { color: var(--primary-green); }
.social-media a { color: var(--secondary-green); font-size: 1.2rem; margin-left: 1.2rem; transition: color 0.3s; }
.social-media a:hover { color: var(--primary-green); }

.hero {
    background: linear-gradient(rgba(20, 30, 25, 0.55), rgba(20, 30, 25, 0.55)), url('https://images.unsplash.com/photo-1511497584788-876760111969?q=80&w=1932&auto-format&fit=crop') center/cover no-repeat;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
}
.hero-text h1 {
    font-size: 4.5rem;
    color: var(--light-text);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light-text);
}

.cta-button { background: var(--primary-green); color: var(--light-text); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; border: none; cursor: pointer; font-family: 'Lato', sans-serif; font-size: 1rem; display: inline-block; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.cta-button:hover { background: var(--secondary-green); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.vorteile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.vorteil-box {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.vorteil-icon { font-size: 2.5rem; color: var(--primary-green); margin-bottom: 1.5rem; }
.vorteil-box h3 { margin-bottom: 1rem; }

.ueber-mich-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; text-align: left; max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.ueber-mich-bilder { text-align: center; }
.portrait-bild-gross {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.ueber-mich-text h2 { text-align: left; }
.ueber-mich-text p { max-width: 100%; }

.angebot-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.angebot-header .section-title { margin-bottom: 0; }
.angebot-header-bild {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.angebot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}
.angebot-karte { background: var(--warm-bg); border-radius: 12px; padding: 2.5rem; text-align: center; box-shadow: 0 8px 30px rgba(0,0,0,0.07); display: flex; flex-direction: column; justify-content: space-between; }
.angebot-karte h3 { color: var(--primary-green); }
.angebot-karte .cta-button { margin-top: 1.5rem; }

/* === ENDGÜLTIGER BEREICH FÜR DEN VIDEO-SLIDER === */
.swiper-feedback {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 50px;
}
.swiper-feedback .swiper-wrapper {
    align-items: center;
}
.swiper-feedback .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.85);
    opacity: 0.6;
    width: 60%;
    max-width: 500px;
}
.swiper-feedback .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 20;
}
.swiper-feedback .video-wrapper {
    pointer-events: none;
}
.swiper-feedback .swiper-slide-active .video-wrapper {
    pointer-events: auto;
    /* KORREKTUR: Zwingt das Element auf eine höhere Rendering-Ebene, um Klicks zu empfangen */
    transform: translateZ(1px);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow);
    background-color: #333;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.swiper-pagination-feedback {
    position: static;
    margin-top: 2rem;
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-green) !important;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-green) !important;
}
/* === ENDE DES BEREICHS === */

form { max-width: 600px; margin: 2rem auto 0 auto; padding: 0 2rem; display: flex; flex-direction: column; gap: 1rem; }
form input, form textarea { width: 100%; padding: 1rem; border: 1px solid #ddd; border-radius: 8px; font-family: 'Lato', sans-serif; font-size: 1rem; background-color: var(--warm-bg); }
form input:focus, form textarea:focus { outline: 2px solid var(--primary-green); border-color: transparent; }

footer { background: var(--primary-green); color: var(--warm-bg); text-align: center; padding: 2.5rem 0; }
footer a { color: var(--light-text); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Responsive Anpassungen */
@media (max-width: 900px) {
    .ueber-mich-layout { grid-template-columns: 1fr; text-align: center; }
    .ueber-mich-text h2 { text-align: center; }
    .ueber-mich-bilder { margin-bottom: 2rem; }
    .portrait-bild-gross { margin: 0 auto; }
}
@media (max-width: 768px) {
    h2 { font-size: 2.2rem; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.3rem; }
    nav ul { display: none; }
    .angebot-grid, .vorteile-grid { grid-template-columns: 1fr; }
    .swiper-feedback .swiper-slide {
        width: 80%;
    }
}
