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


/* GRUNDLAGEN */

:root {
    --header-height: 80px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family: Arial, sans-serif;

    color: #333;
    background-color: #fff;
}

#app {
    min-height: 100vh;
}

.main {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}


/* HEADER */

.main__header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 3rem;

    background-color: #fff8e5;
}

.main__logo {
    font-size: 1.3rem;
    font-weight: bold;

    color: #5f7d4e;
}


/* NAVIGATION */

.main__nav-list {
    display: flex;
    align-items: center;

    gap: 2rem;

    list-style: none;
}

.main__nav-list a {
    color: #333;

    text-decoration: none;

    font-weight: bold;
}

.main__nav-list a:hover {
    color: #5f7d4e;
}


/* BODY */

.main__body {
    width: 100%;

    padding-top: var(--header-height);
}


/* STARTSEITE */

.main__startseite {
    width: 100%;

    min-height: calc(100vh - var(--header-height));

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 4rem 2rem;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.20),
            rgba(0, 0, 0, 0.20)
        ),
        url("./images/background_startseite.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    scroll-margin-top: var(--header-height);
}


/* STARTSEITE INHALT */

.main__startseite-content {
    width: 100%;
    max-width: 850px;

    padding: 3rem;

    text-align: center;

    background-color: rgba(255, 248, 229, 0.88);

    border-radius: 16px;
}

.main__startseite h1 {
    margin-bottom: 1.5rem;

    font-size: 3.5rem;

    color: #4f693f;
}

.main__startseite h2 {
    max-width: 700px;

    margin: 0 auto 1rem;

    font-size: 1.5rem;
    font-weight: normal;

    line-height: 1.5;
}

.main__startseite p {
    margin-top: 1rem;

    font-size: 1.1rem;
}


/* KONTAKT BUTTONS */

.main__kontakt {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 1rem;

    margin-top: 2.5rem;
}

.main__kontakt-button {
    min-width: 140px;

    padding: 1rem 1.5rem;

    border-radius: 8px;

    background-color: #5f7d4e;

    color: #fff;

    text-decoration: none;
    text-align: center;

    font-size: 1rem;
    font-weight: bold;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.main__kontakt-button:hover {
    background-color: #49623c;

    transform: translateY(-2px);
}


/* LEISTUNGEN */

.main__leistungen {
    width: 100%;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5rem 2rem;

    background-color: #fff;

    scroll-margin-top: var(--header-height);
}

.main__leistungen-content {
    width: 100%;
    max-width: 800px;
}

.main__leistungen h2 {
    margin-bottom: 1rem;

    text-align: center;

    font-size: 2.5rem;

    color: #4f693f;
}

.main__leistungen-intro {
    max-width: 650px;

    margin: 0 auto 3rem;

    text-align: center;

    font-size: 1.1rem;

    line-height: 1.6;
}

.main__leistungen ul {
    width: 100%;

    list-style: none;
}

.main__leistungen li {
    padding: 1.2rem 0;

    border-bottom: 1px solid #ddd;

    font-size: 1.1rem;
}

.main__leistungen li::before {
    content: "✿";

    margin-right: 1rem;

    color: #5f7d4e;
}


/* FOOTER */

.main__footer {
    width: 100%;

    display: flex;
    justify-content: center;

    padding: 2rem;

    background-color: #fff8e5;
}

.main__nav--footer .main__nav-list {
    gap: 1.5rem;
}

.main__nav--footer a,
.main__nav--footer span {
    font-size: 0.9rem;
    font-weight: normal;
}


/* MOBILE */

@media (max-width: 768px) {

    :root {
        --header-height: 120px;
    }


    /* HEADER */

    .main__header {
        height: var(--header-height);

        flex-direction: column;
        justify-content: center;

        gap: 1rem;

        padding: 1rem;
    }

    .main__logo {
        font-size: 1.2rem;
    }

    .main__nav-list {
        gap: 1.2rem;
    }


    /* STARTSEITE */

    .main__startseite {
        min-height: calc(100vh - var(--header-height));

        padding: 2rem 1rem;

        background-position: center;
    }

    .main__startseite-content {
        padding: 2rem 1.2rem;

        border-radius: 12px;
    }

    .main__startseite h1 {
        font-size: 2.3rem;
    }

    .main__startseite h2 {
        font-size: 1.2rem;
    }

    .main__startseite p {
        font-size: 1rem;
    }


    /* KONTAKT */

    .main__kontakt {
        flex-direction: column;

        margin-top: 2rem;
    }

    .main__kontakt-button {
        width: 100%;
    }


    /* LEISTUNGEN */

    .main__leistungen {
        min-height: 100vh;

        padding: 4rem 1.5rem;
    }

    .main__leistungen h2 {
        font-size: 2rem;
    }


    /* FOOTER */

    .main__nav--footer .main__nav-list {
        flex-direction: column;

        gap: 0.8rem;
    }
}