/* Grundlayout & Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f5f5f7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    margin-top: 0;
    color: #111;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e1e1e1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.logo img {
    height: 40px;
}

.nav a {
    margin: 0 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.nav a:hover {
    color: #c29200;
}

/* WhatsApp-Button im Header */
.whatsapp-btn {
    padding: 8px 14px;
    border-radius: 20px;
    background: #25d366;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: #1dae52;
}

/* Buttons allgemein */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    background: #f0b400;
    color: #111;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: #c89200;
    color: #111;
}

.btn.outline {
    background: transparent;
    border: 2px solid #f0b400;
    color: #333;
}

.btn.outline:hover {
    background: #f0b400;
    color: #111;
}

/* HERO-Bereich */
.hero {
    background: #ffffff;
    padding: 50px 0 40px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-text {
    max-width: 680px;
}

.hero h1 {
    font-size: 2.3rem;
    margin-bottom: 16px;
}

.hero p {
    margin-bottom: 12px;
    max-width: 620px;
}

.hero ul {
    padding-left: 18px;
    margin: 10px 0 20px;
}

.hero ul li {
    margin-bottom: 4px;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

/* Sektionen allgemein */
.section {
    padding: 70px 0 60px;
    background: #f5f5f7;
}

.section.light {
    background: #ffffff;
}

.section h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

/* Leistungen – Karten */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
}

.card-icon {
    margin-bottom: 10px;
}

.card-icon svg {
    width: 60px;
    height: 60px;
    display: block;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.card p {
    font-size: 0.95rem;
    color: #444;
}

/* Über uns */
.about-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1.4;
}

.about-image {
    flex: 1;
    text-align: right;
}

.about-text ul {
    padding-left: 18px;
    margin-top: 10px;
}

.about-text li {
    margin-bottom: 5px;
}

/* Kontaktbereich */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 24px;
    margin-top: 20px;
}

.contact-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px 20px;
    border: 1px solid #dcdcdc;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* Formular */
form label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: #333;
}

form input,
form textarea {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font: inherit;
}

form textarea {
    resize: vertical;
}

/* Footer */
.site-footer {
    background: #111111;
    color: #dddddd;
    padding: 18px 0;
    font-size: 0.85rem;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-left img {
    height: 32px;
}

.footer-right a {
    color: #f0b400;
    margin-right: 8px;
    font-weight: 500;
}

.footer-right p {
    margin: 4px 0 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero-inner,
    .about-inner {
        flex-direction: column;
        text-align: left;
    }

    .site-footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .cta {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}
