/* Grundlayout */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: #f2f5ee;
    color: #243424;
    line-height: 1.6;
}

/* Container */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header & Navigation */
header {
    background: #e5f1dc;
    border-bottom: 1px solid #a5ec87;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

header img.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #7fbf7f;
}

.site-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f3b1f;
}

.site-subtitle {
    font-size: 0.85rem;
    color: #567356;
}

/* Navigation */
nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav a {
    color: #325532;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 0.9rem;
}

nav a:hover {
    background: #184718;
    color: #ffffff;
}

/* Hero-Bereich */
.hero {
    background: radial-gradient(circle at top left, #63a557 0, #f5f7f2 55%);
    padding: 60px 0 50px 0;
}

.hero-inner {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #1f3b1f;
}

.hero p {
    margin-bottom: 18px;
    color: #486248;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.badge {
    background: #fcfcfc;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.8rem;
    border: 1px solid #65a84a;
    color: #325532;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-primary,
.btn-secondary {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #3f6b3f;
    color: #ffffff;
}

.btn-primary:hover {
    background: #6aa96a;
}

.btn-secondary {
    background: transparent;
    color: #325532;
    border: 1px solid #7fbf7f;
}

.btn-secondary:hover {
    background: #284e16;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* Standard-Sections */
.section {
    padding: 50px 0;
}

.section h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #1f3b1f;
}

.section-subtitle {
    color: #556b55;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Cards Layout */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.card {
    background: #f4f5f3;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #88c97a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #243424;
}

/* Highlight-Box */
.highlight {
    background: #daecd1;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #d5e3cf;
}

/* Kontaktbereich / Formular */
.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 30px;
}

.contact-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #e0ecdd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-details p {
    margin: 6px 0;
}

/* Formulare */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #344834;
}

input,
textarea {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #c9d9c4;
    font: inherit;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #7fbf7f;
    box-shadow: 0 0 0 2px rgba(127, 191, 127, 0.2);
}

textarea {
    min-height: 120px;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
}

.privacy-check input {
    margin-top: 3px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    filter: grayscale(10%);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icons a:hover img {
    transform: translateY(-2px);
    filter: none;
}

/* Footer */
footer {
    background: #1f3b1f;
    color: #e8f2e4;
    padding: 16px 0 10px 0;
    margin-top: 40px;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 14px;
}

.footer-links a {
    color: #cfe3cd;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    nav {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .header-inner {
        align-items: stretch;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    nav a {
        padding: 6px 12px;
    }

    .hero {
        padding: 40px 0 30px 0;
    }

    .hero h1 {
        font-size: 1.7rem;
    }
}
