/* --- 1. DESIGN VARIABLEN --- */
:root {
    /* Hauptfarben */
    --col-olive: #748E63;
    --col-olive-dark: #5b704d; /* Neuer dunklerer Ton für Hover/Gradient */
    --col-olive-light: #f4f9f4;
    
    /* Text & Hintergrund */
    --col-text: #4a4a4a; 
    --col-bg: #FDFDFB; 
    
    /* Neuer Gradient: Nur noch Grüntöne */
    --gradient: linear-gradient(135deg, var(--col-olive) 0%, var(--col-olive-dark) 100%); 
    
    /* Fonts */
    --font-body: 'Nunito', sans-serif; 
    --font-heading: 'Quicksand', sans-serif; 
    
    /* Formen */
    --radius-soft: 20px; 
    --radius-pill: 50px; 
    --radius-bubble: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }

/* --- 2. TYPOGRAFIE --- */
body {
    font-family: var(--font-body);
    color: var(--col-text);
    background-color: var(--col-bg);
    line-height: 1.6;
    font-size: 19px; /* Von 18px auf 19px erhöht */
    overflow-x: hidden;
}

h1 { font-family: var(--font-heading); font-weight: 700; font-size: 3.5rem; line-height: 1.1; margin-bottom: 1rem; color: #333; }
h2 { font-family: var(--font-heading); font-weight: 700; font-size: 2.2rem; margin-bottom: 1.5rem; color: #333; }

/* H3 und H4 jetzt Olive statt Violett */
h3, h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.5rem; margin-bottom: 1rem; color: var(--col-olive); }

p { margin-bottom: 1.5rem; }
strong { color: var(--col-olive); font-weight: 700; }

.text-small { font-size: 0.9em; opacity: 0.9; }

/* --- 3. GLOBAL STYLES --- */
img { border-radius: var(--radius-soft); width: 100%; height: auto; display: block; } 
.section { padding: 100px 0; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* --- ÄNDERUNG IN DER STYLE.CSS --- */

ul.soft-list { 
    list-style: none; 
    padding: 0; 
}

ul.soft-list li { 
    position: relative; 
    padding-left: 30px; 
    margin-bottom: 10px; 
}

/* Hier wird das Aufzählungszeichen definiert */
ul.soft-list li::before { 
    content: ''; /* Kein Text/Emoji mehr */
    position: absolute; 
    left: 0; 
    top: 8px; /* Positioniert den Kreis auf Höhe der ersten Zeile */
    width: 10px; /* Größe des Kreises */
    height: 10px; 
    border: 2px solid var(--col-olive); /* Der "nicht ausgefüllte" Rand */
    border-radius: 50%; /* Macht aus dem Quadrat einen Kreis */
}

.btn {
    display: inline-block; padding: 15px 40px; 
    background: var(--col-olive); /* Fallback */
    background: var(--gradient); color: white; 
    border-radius: var(--radius-pill); font-weight: 700; text-decoration: none;
    box-shadow: 0 10px 25px rgba(116, 142, 99, 0.3); transition: 0.3s; border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(116, 142, 99, 0.4); background: var(--col-olive-dark); }

/* --- 4. KOMPONENTEN --- */

/* Header & Navigation */
header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 15px 0; transition: 0.4s; }
header.scrolled { background: rgba(255, 255, 255, 0.98); padding: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }

.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 25px; display: flex; justify-content: space-between; align-items: center; position: relative; }

.logo img { height: 60px; transition: 0.3s; filter: brightness(0) invert(1); } 
header.scrolled .logo img { filter: none; opacity: 0.9; }
.logo-text { font-family: 'Allura', cursive; font-size: 2.5rem; color: white; }
header.scrolled .logo-text { color: #444; }

/* Desktop Menu */
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: white; font-weight: 700; text-transform: uppercase; font-size: 0.85em; letter-spacing: 1px; text-decoration: none; }
header.scrolled .nav-links a { color: #555; }
header.scrolled .nav-links a:hover { color: var(--col-olive); }

/* Mobile Menu Button */
.menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: white; }
header.scrolled .menu-toggle { color: #333; }

/* Standard (Desktop) Hero */
.hero { 
    height: 100vh; 
    background-color: var(--col-olive);
    background-image: url(hero.jpg); 
    background-attachment: fixed; 
    background-position: center; 
    background-size: cover; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    position: relative; 
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; color: white; }
.hero h1 { color: white; text-shadow: 0 4px 20px rgba(0,0,0,0.2); margin-bottom: 20px; }
.hero-sub { font-size: 1.1em; display: inline-block; margin-bottom: 40px; font-weight: 700; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); padding: 10px 30px; border-radius: 50px; }

/* Mobile Override */
@media (max-width: 1300px) {
    .hero {
        background-image: url(hero-mobile.jpg);
        background-attachment: scroll; /* Bessere Performance auf Handy */
    }
}
/* Cards */
.vision-card { background: white; padding: 60px; border-radius: var(--radius-bubble); box-shadow: 0 20px 60px rgba(116, 142, 99, 0.15); position: relative; z-index: 10; }
.intro-card { background: white; padding: 50px; border-radius: var(--radius-bubble); box-shadow: 0 20px 60px rgba(0,0,0,0.1); margin-top: -80px; position: relative; z-index: 10; text-align: center; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.blob-img-container img { box-shadow: 10px 10px 40px rgba(116, 142, 99, 0.3); animation: morph 8s ease-in-out infinite; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
@keyframes morph { 0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } }

.tun-container { display: flex; flex-wrap: wrap; gap: 20px; margin: 30px 0; }
.tun-box { flex: 1 1 100%; background: var(--col-olive-light); padding: 20px; border-radius: 20px; border-left: 4px solid var(--col-olive); }

/* Angebote Grid */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.offer-card-soft { background: white; padding: 40px; border-radius: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 6px solid var(--col-olive); height: 100%; transition: 0.3s; }
.offer-card-soft:hover { transform: translateY(-5px); border-bottom-color: var(--col-olive-dark); }
.offer-icon { display: block; font-size: 3rem; margin-bottom: 10px; text-align: center; line-height: 1; }
.workshop-detail { background: #fcfcfc; padding: 20px; border-radius: 15px; margin-top: 20px; border: 1px solid #eee; }
.workshop-detail h4 { font-size: 1.1em; margin-bottom: 5px; color: var(--col-olive); }

/* Timeline */
.timeline-item { background: white; padding: 20px 30px; border-radius: 20px; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border-left: 5px solid var(--col-olive); }
.year-badge { display: inline-block; background: var(--col-olive); color: white; padding: 2px 10px; border-radius: 10px; font-size: 0.8em; font-weight: 700; margin-bottom: 5px; }

/* Quotes - Jetzt Olive Border */
.kafka-quote { background: white; border-radius: 0 20px 20px 0; border-left: 5px solid var(--col-olive); padding: 30px; margin: 30px 0; font-style: italic; color: #666; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }

footer { background: var(--col-text); color: #aaa; padding: 60px 0; text-align: center; border-radius: 50px 50px 0 0; }
footer a { color: #ccc; text-decoration: none; transition: 0.3s; }
footer a:hover { color: white; }

/* --- 5. MOBILE OPTIMIERUNG --- */
@media (max-width: 768px) {
    body { font-size: 17px; } /* Von 16px auf 17px erhöht */
    .section { padding: 60px 0; } 
    h1 { font-size: 2.5rem; } 
    h2 { font-size: 1.8rem; }
    
    /* MOBILE HERO FIX */
    .hero { 
        background-attachment: scroll !important; 
        background-position: center center !important; 
        height: 100vh; 
    }

    .menu-toggle { display: block; } 
    .nav-links {
        position: fixed; top: 70px; left: 0; width: 100%;
        background: white; flex-direction: column; align-items: center;
        padding: 20px 0; gap: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%); transition: 0.4s; z-index: 999;
    }
    .nav-links.active { transform: translateY(0); }
    .nav-links a { color: #333; font-size: 1.1rem; }

    .about-grid { grid-template-columns: 1fr; } 
    .intro-card, .vision-card { padding: 30px; border-radius: 25px; }
    .intro-card { margin-top: -40px; }
    .vision-card { margin-top: 40px; }
    .offer-card-soft { padding: 25px; border-radius: 25px; }
    .kafka-quote { padding: 20px; margin: 20px 0; }
    .blob-img-container img { max-width: 300px; margin: 0 auto; display: block; }
    .hero-sub { font-size: 0.9rem; padding: 8px 20px; }
}