/* -------------------------------------------------------
   Google Fonts
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');


/* -------------------------------------------------------
   Designsystem
------------------------------------------------------- */
:root {
    --font-inter: 'Inter', sans-serif;
    --font-playfair: 'Playfair Display', serif;

    --background: hsl(40, 20%, 98%);
    --foreground: hsl(200, 10%, 15%);
    --card: hsl(40, 20%, 99%);
    --primary: hsl(152, 25%, 36%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(40, 15%, 94%);
    --muted: hsl(40, 12%, 93%);
    --accent: hsl(152, 18%, 90%);
    --border: hsl(40, 12%, 88%);
    --radius: 12px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 48px;
    --space-xl: 80px;

    --text-width: 70ch;
}


/* -------------------------------------------------------
   Dark Mode
------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
    :root {
        --background: hsl(200, 10%, 8%);
        --foreground: hsl(40, 15%, 95%);
        --card: hsl(200, 10%, 10%);
        --primary: hsl(152, 30%, 50%);
        --secondary: hsl(200, 8%, 16%);
        --muted: hsl(200, 8%, 16%);
        --accent: hsl(152, 15%, 18%);
        --border: hsl(200, 8%, 18%);
    }
}


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


/* -------------------------------------------------------
   Body & Typografie
------------------------------------------------------- */
body {
    font-family: var(--font-inter);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.75;
    padding-top: 70px;
}

h1, h2, h3, h4 {
    font-family: var(--font-playfair);
    color: var(--foreground);
    line-height: 1.3;
    letter-spacing: 0.3px;
}

h1 { font-size: 2.6rem; margin-bottom: var(--space-sm); }
h2 { font-size: 2rem; margin-bottom: var(--space-sm); }
h3 { font-size: 1.4rem; margin-bottom: var(--space-xs); }
h4 { font-size: 1.2rem; margin-bottom: var(--space-xs); }

p {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    max-width: var(--text-width);
}


/* -------------------------------------------------------
   Navigation
------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--card);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
}

.menu {
    list-style: none;
    display: flex;
    gap: var(--space-md);
}

.menu a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
}

.menu a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}


/* -------------------------------------------------------
   Hero
------------------------------------------------------- */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    color: var(--primary-foreground);
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 1.2rem;
    margin: 0 auto;
}


/* -------------------------------------------------------
   Sektionen
------------------------------------------------------- */
section {
    max-width: 900px;
    margin: var(--space-xl) auto;
    padding: var(--space-xl) var(--space-md);
}

section + section {
    border-top: 1px solid var(--border);
}


/* -------------------------------------------------------
   Über mich
------------------------------------------------------- */
.about {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.about-image img {
    width: 280px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
/* Qualifikationen */
.qualifikationen {
    margin-top: var(--space-xl);
}

.qualifikationen-list {
    list-style: none;
    padding-left: 0;
    margin-top: var(--space-sm);
}

.qualifikationen-list li {
    margin-bottom: var(--space-xs);
    font-size: 1.05rem;
    line-height: 1.6;
    padding-left: 1.2rem;
    position: relative;
}

.qualifikationen-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
}


/* -------------------------------------------------------
   Angebot
------------------------------------------------------- */
.angebot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.angebot-card {
    background: var(--card);
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: 0.2s ease;
}

.angebot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
/* Angebot – Textblöcke */
.angebot-text {
    margin-top: var(--space-xl);
}

.angebot-block {
    background: var(--card);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: var(--space-xl);
}

.angebot-block h3 {
    font-family: var(--font-playfair);
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
}

.angebot-block h4 {
    font-size: 1.2rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.angebot-block ul {
    margin-left: 1.2rem;
    margin-bottom: var(--space-md);
}

.angebot-block ul li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}


/* -------------------------------------------------------
   Arbeitsweise
------------------------------------------------------- */
.arbeitsweise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.arbeitsweise-item {
    background: var(--secondary);
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: 0.2s ease;
}

.arbeitsweise-item:hover {
    transform: translateY(-4px);
}


/* -------------------------------------------------------
   Kontakt
------------------------------------------------------- */
.kontakt {
    text-align: center;
}

.kontakt-box {
    background: var(--card);
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.kontakt-box a {
    color: var(--primary);
    text-decoration: none;
}


/* -------------------------------------------------------
   Impressum
------------------------------------------------------- */
.impressum {
    line-height: 1.7;
}


/* -------------------------------------------------------
   Footer
------------------------------------------------------- */
.footer {
    text-align: center;
    padding: var(--space-md);
    background: var(--card);
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
}


/* -------------------------------------------------------
   Mobile Styles
------------------------------------------------------- */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--card);
        width: 100%;
        flex-direction: column;
        border-top: 1px solid var(--border);
    }

    .menu.active {
        display: flex;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .angebot-grid,
    .arbeitsweise-grid {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.25rem; }

    section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }
}
:root {
    /* Moderne serifenfreie Schriften */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Work Sans', sans-serif;

    /* Sehr helles, modernes Grau */
    --background: #f7f7f7;
    --foreground: #2a2a2a;

    /* Karten & Flächen */
    --card: #ffffff;
    --secondary: #efefef;

    /* Modernes, ruhiges Grün als Akzent */
    --primary: #3a7d5d;
    --primary-foreground: #ffffff;

    /* Linien & Rahmen */
    --border: #e3e3e3;

    /* Abstände & Radius */
    --radius: 12px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 48px;
    --space-xl: 80px;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Work+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: var(--font-sans);
    color: var(--foreground);
    background: var(--background);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--foreground);
}
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
}h1 {
    font-size: 2.6rem;
    margin-bottom: var(--space-sm);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}
:root {
    /* Schriften */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Work Sans', sans-serif;

    /* Sehr hell / weiß gehalten */
    --background: #ffffff;
    --foreground: #2a2a2a;

    /* Karten & Flächen */
    --card: #ffffff;
    --secondary: #f3f3f3;

    /* Modernes, dezentes Grün */
    --primary: #3a7d5d;
    --primary-foreground: #ffffff;

    /* Linien & Rahmen */
    --border: #e3e3e3;

    /* Abstände & Radius */
    --radius: 12px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 48px;
    --space-xl: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.3px;
}
.deep-indent {
    margin-left: 24px;   /* weiter eingerückt */
    padding-left: 4px;   /* sorgt dafür, dass der Bullet sauber sitzt */
}
.arbeitsweise-image img {
    width: 100%;
    max-width: 1200px; /* gleiche Breite wie dein Hero */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius);
}
body {
    background-color: #f5f5f5; /* dezentes, modernes Grau */
    color: #2a2a2a;
}.section-box {
    background: #ffffff;              /* weiße Box */
    padding: 40px;                    /* großzügige Innenabstände */
    border-radius: 12px;              /* moderne Rundung */
    margin: 40px auto;                /* Abstand nach außen */
    max-width: 1200px;                /* gleiche Breite wie Hero */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* dezenter Schatten */
}

.about-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.about-image {
    width: 260px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0; /* verhindert, dass das Bild gequetscht wird */
}

.about-text {
    flex: 1; /* Text nimmt den restlichen Platz ein */
}
.section-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
