
body {
    font-family: Arial, Helvetica, sans-serif;
}
/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   GRUNDLAYOUT (SIDEBAR + CONTENT)
========================= */
.layout {
    display: flex;
    min-height: 100vh;
}

/* =========================
   SIDEBAR (LINKS)
========================= */
.sidebar {
    width: 260px;
    background: #1f2937;
    color: #d1d5db;
    padding: 30px 20px;
    flex-shrink: 0;
}

.sidebar h3 {
    color: white;
    margin: 15px 0 10px;
}

.sidebar a {
    display: block;
    text-decoration: none;
    color: #d1d5db;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.sidebar a:hover {
    color: white;
}

/* =========================
   CONTENT BEREICH
========================= */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff, #e9eef5);
}

.content-box {
    max-width: 800px;
    width: 100%;
	display: block;
}

.highlight-green {
    color: #166534;
    font-weight: 600;
}

.highlight-logo {
    font-family: Avenir Next, Arial, Helvetica, sans-serif;
    font-weight: 600;
}

/* =========================
   TYPOGRAFIE
========================= */
.content-box h1 {
    margin-top: 0;
    margin-bottom: 10px;
}

.content-box p {
    text-align: left;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-box ul {
    margin: 20px 0;
    padding-left: 60px;
    text-align: left;
}

/* =========================
   FARBEN KIND / im / FOKUS
========================= */
.kind {
    color: #404040;   /* Dunkelgrau */
    font-weight: 700;
	font-family: Montserrat, Arial, Helvetica, sans-serif;
}

.im {
    color: #7c3aed;   /* Lila */
    font-weight: 700;
}

.fokus {
    color: #166534;   /* Dunkelgrün */
    font-weight: 700;
}

/* =========================
   BILDERREIHE
========================= */
.bilderreihe {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.bilderreihe img {
    height: 165px;
    width: auto;
    border-radius: 10px;
}

.float-image {
    float: right;
    width: 220px;
    margin: 0 0 20px 20px;
}

.float-image img {
    width: 220px;   /* WICHTIG: Bildgröße hier begrenzen */
    height: auto;
    display: block;
    border-radius: 10px;
	margin-top: 0;
}

/* =========================
   MAIN LINKS
========================= */
.main-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: left;
}

.main-links a {
    text-decoration: none;
    padding: 14px 28px;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    transition: 0.3s ease;
    font-weight: bold;
}

.main-links a:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {

    .layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .main-content {
        padding: 20px;
    }

    .content-box h1 {
        font-size: 2rem;
    }

    .content-box p {
        font-size: 1rem;
    }

    .bilderreihe img {
        height: 2cm;
    }

    .hero-image {
        margin: 25px 0;
    }

    .hero-image img {
        border-radius: 10px;
    }
	
	.float-image {
        float: none;
        display: block;
        margin: 0 auto 230px auto;
    }

    .float-image img {
        width: 100%;
        max-width: 300px;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.team-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h2 {
    margin-bottom: 5px;
    color: #166534;
}

.team-card .funktion {
    font-weight: bold;
    color: #7c3aed;
    margin-bottom: 10px;
}

.team-card p {
    margin-bottom: 10px;
}

/* =========================
   KONTAKTFORMULAR
========================= */

.honeypot {
    display: none;
}

.kontaktformular {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.kontaktformular button {
    background: #166534;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1rem;
}

.kontaktformular button:hover {
    opacity: 0.9;
}