/* Farben */
:root {
    --dark-green: #B53632;
    --light-green: #7aa87a;
    --beige: #ffffff;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--beige);
    color: var(--dark-green);
}

/* Header */
.hero {
    position: relative;
    text-align: center;
    padding-top: 20px;
}

.logo {
    width: 600px;
    max-width: 60%;
    height: auto;
    z-index: 10;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 220px;
    background-image: url("assets/header.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center ;
}

/* Intro */
.intro {
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* ----------------------------- */
/* 📱 RESPONSIVE BREAKPOINTS     */
/* ----------------------------- */

/* Tablets */
@media (max-width: 900px) {
    .hero-image {
        height: 320px;
    }

    .logo {
        width: 150px;
    }
}

/* Smartphones */
@media (max-width: 600px) {
    .hero {
        padding-top: 10px;
    }

    .logo {
        width: 220px;
        max-width: 70%;
    }

    .hero-image {
        height: 220px;
        background-position: center top;
    }

    .intro {
        padding: 20px 15px;
    }

    footer {
        padding: 15px;
        font-size: 0.9rem;
    }
}
