/* Grundkonfiguration */
:root {
    --primary-color: #f37b21; /* Das Orange aus dem Logo */
    --text-color: #333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --max-width: 1100px;
  scroll-padding-top: 130px; /* Headerhöhe */
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 160px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #fbd4b8 100%);
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #111;
}

.lead-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Sektionen */
.content-section {
    padding: 80px 0;
}

/* NEU: Genereller Absatzabstand im Content-Bereich */
.content-section p, .content-section ul {
    margin-bottom: 1.5em;
}

.alt-bg {
    background-color: #fbd4b8;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 40px; /* Etwas mehr Abstand nach oben */
}

.text-center {
    text-align: center;
}

/* Vorstand / Team */
.image-wrapper {
    margin: 20px 0;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.margin-top {
    margin-top: 25px;
}

.members-list {
    color: #666;
}

/* Footer */
footer {
    background: #222;
    color: #eee;
    padding: 40px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav a {
    color: #eee;
    margin-left: 20px;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* NEU: Impressum Box Styling - Ohne Balken, mit mehr Abstand */
.impressum-box {
    background: #fdfdfd;
    padding: 25px;
    border: 1px solid #eee; /* Dezenter Rahmen statt Balken */
    border-radius: 8px;
    margin-bottom: 1.5em;
    line-height: 1.8;
}

#impressum h2 {
    margin-bottom: 30px;
}

/* Barrierefreiheit & Mobil */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

html {
  scroll-behavior: smooth; /* optional */
}