/* Grundeinstellungen */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --pale-yellow: #FFFEF0;
    --grey-text: #5C5C5C;
    --orange-accent: #FF7F50;
    --white: #FFFFFF;
}

body {
    background-color: var(--pale-yellow);
    color: var(--grey-text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--grey-text);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.orange { color: var(--orange-accent); }
.orange-bold { color: var(--orange-accent); font-weight: bold; }
.italic { font-style: italic; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(92, 92, 92, 0.1);
    padding: 15px 0;
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: relative;
}

.logo { font-size: 1.5rem; font-weight: bold; }
.grey { color: var(--grey-text); }

.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--grey-text); font-weight: 500; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--orange-accent); }

/* Handy Menü Button */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--grey-text);
    order: 2; /* Positioniert den Button zwischen Logo und Buchungs-Button */
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--orange-accent);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--orange-accent);
    cursor: pointer;
}
.btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 127, 80, 0.2); }
.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-outline { background: transparent; border: 2px solid var(--orange-accent); color: var(--orange-accent); }
.btn-full { width: 100%; text-align: center; margin-top: 20px; }

/* Hero */
.hero { padding: 180px 0 100px; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-weight: bold; font-size: 1.4rem; margin-bottom: 25px; }
.main-description { font-size: 1.15rem; line-height: 1.8; margin-bottom: 40px; }
.hero-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 8px solid white; }
.relative { position: relative; }

/* Badge */
.badge-experience {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 10;
}
.stars { color: #FACC15; margin-bottom: 5px; font-size: 1.2rem; }
.badge-experience span { font-weight: bold; font-size: 0.85rem; color: var(--grey-text); }

/* Sektionen */
section { padding: 120px 0; }
.section-title { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.subtitle { color: rgba(92, 92, 92, 0.6); margin-bottom: 70px; font-size: 1.2rem; }
.max-800 { max-width: 800px; margin: 0 auto; }
.bg-white-30 { background-color: rgba(255, 255, 255, 0.3); }

/* Grids & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.card, .card-service, .contact-item { background: white; padding: 50px 40px; border-radius: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); display: flex; flex-direction: column; align-items: center; }
.card.highlight { border: 2px solid var(--orange-accent); }
.icon { width: 48px; height: 48px; color: var(--orange-accent); margin-bottom: 30px; }
.icon-small { width: 32px; height: 32px; color: var(--orange-accent); margin-bottom: 20px; }
.card-title { font-size: 2rem; margin-bottom: 25px; }

/* Testimonials */
.testimonial-card { background: white; padding: 40px; border-radius: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); text-align: left; }
.testimonial-card .quote { font-style: italic; font-size: 1.1rem; margin-bottom: 25px; line-height: 1.7; color: var(--grey-text); }
.testimonial-card .author { font-weight: bold; color: var(--grey-text); }
.testimonial-card .age { font-weight: normal; opacity: 0.6; }

/* Über mich Seite */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-image img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 15px solid white; box-shadow: 0 15px 45px rgba(0,0,0,0.06); }
.label { color: var(--orange-accent); text-transform: uppercase; font-weight: bold; letter-spacing: 3px; font-size: 0.8rem; display: block; margin-bottom: 20px; }
.about h2 { font-size: 3.2rem; margin-bottom: 35px; }
.about .intro { font-size: 1.3rem; margin-bottom: 25px; }
.about p { margin-bottom: 25px; font-size: 1.15rem; }

.story-content p { margin-bottom: 25px; font-size: 1.15rem; line-height: 1.8; }
.story-highlight { margin: 40px 0; padding-top: 20px; }
.story-highlight h3 { font-size: 2.2rem; font-style: italic; margin-bottom: 15px; }
.card-expertise { background: white; padding: 40px 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.card-expertise h3 { font-size: 1.6rem; margin-bottom: 15px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.timeline { position: relative; max-width: 800px; margin: 60px auto 0; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 2px; background: var(--orange-accent); opacity: 0.3; }
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-item::before { content: ''; position: absolute; left: -45px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange-accent); }
.timeline-year { font-weight: bold; color: var(--orange-accent); font-size: 1.2rem; }
.timeline-content h3 { font-size: 1.8rem; margin-bottom: 10px; }

/* Mutmacher Seite */
.pt-150 { padding-top: 150px; }
.mutmacher-hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.story-card { background: white; border-radius: 30px; padding: 50px; margin-bottom: 50px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.02); text-align: left; }
.story-header h2 { font-size: 2.5rem; margin-bottom: 5px; }
.story-header p { font-size: 1.4rem; margin-bottom: 35px; }
.story-section { margin-bottom: 30px; }
.label-small { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(92, 92, 92, 0.4); font-weight: bold; margin-bottom: 10px; }
.story-result { background-color: rgba(255, 127, 80, 0.05); padding: 30px; border-radius: 20px; border: 1px solid rgba(255, 127, 80, 0.1); }
.label-orange { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--orange-accent); font-weight: bold; margin-bottom: 10px; }

/* Für Zuhause / Plan Seite */
.plan-hero { padding: 180px 0 100px; }
.plan-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; margin-top: 60px; }
.steps-column { display: flex; flex-direction: column; gap: 30px; }
.step-card-horizontal { background: white; padding: 40px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; gap: 25px; align-items: flex-start; text-align: left; }
.step-number-badge { background: var(--orange-accent); color: white; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; flex-shrink: 0; }
.step-card-horizontal h3 { font-size: 1.8rem; margin-bottom: 15px; }
.sticky-sidebar { position: sticky; top: 120px; }
.course-box-dark { background: #5C5C5C; color: white; padding: 50px 40px; border-radius: 30px; text-align: left; }
.course-box-dark h3 { color: var(--orange-accent); font-size: 2.22rem; margin-bottom: 20px; }
.course-checklist { list-style: none; margin-bottom: 40px; }
.course-checklist li { margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.course-checklist li i { color: var(--orange-accent); }
.course-intro-styled { background: rgba(255, 255, 255, 0.4); padding: 60px; border-radius: 30px; margin-top: 40px; text-align: left; }
.course-intro-styled p { font-size: 1.25rem; margin-bottom: 25px; }

/* Footer */
footer { background-color: var(--grey-text); color: white; padding: 100px 0 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px; margin-bottom: 60px; }
footer h4 { color: white; margin-bottom: 30px; font-size: 1.5rem; }
footer p { color: rgba(255,255,255,0.8); margin-bottom: 5px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 18px; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
footer a:hover { color: var(--orange-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; margin-top: 20px; }

/* Handy Optimierungen */
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
        gap: 20px;
    }

    .nav-links.active { display: flex; }

    .hero-grid, .about-grid, .grid-3, .grid-4, .footer-grid, .plan-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .hero h1, .section-title { font-size: 2.5rem; }
    .hero { padding-top: 120px; }
    .about-image img { max-width: 300px; margin: 0 auto; }
    .sticky-sidebar { position: static; margin-top: 40px; }
    .step-card-horizontal { flex-direction: column; align-items: center; text-align: center; }
}