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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7faf9;
    color: #26352f;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

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


/* HEADER */

.header {
    min-height: 85px;

    display: flex;
    align-items: center;

    padding: 10px 24%;

    background: #ffffff;

    border-bottom: 1px solid #e3ebe7;

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.04);
}


/* LOGO */

.brand {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-right: 50px;

    color: #17382e;
}

.brand img {
    width: 180px;
    height: 60px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 20px;

    color: #187757;
}

.brand-text span {
    color: #71827a;

    font-size: 12px;
}


/* NAVIGATION */

.navigation {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 5px;
}

.navigation a {
    padding: 10px 14px;

    color: #52625b;

    border-radius: 7px;

    transition: 0.2s;
}

.navigation a:hover,
.navigation a.active {
    color: #187757;

    background: #eef8f4;
}


/* LOGIN */

.login-area {
    margin-left: 20px;
}

.login-button {
    display: inline-block;

    padding: 11px 20px;

    background: #187757;

    color: white;

    border-radius: 7px;

    font-weight: bold;

    transition: 0.2s;
}

.login-button:hover {
    background: #105c43;
}


/* HERO */

.hero {
    min-height: 600px;

    display: flex;
    align-items: center;

    padding: 80px 7%;

    background:
        linear-gradient(
            90deg,
            rgba(13, 63, 48, 0.9),
            rgba(13, 63, 48, 0.45)
        ),
        url("images/header.jpg");

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;

    color: white;
}

.hero-small {
    display: inline-block;

    margin-bottom: 15px;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 13px;

    color: #b9e9d7;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 68px);

    line-height: 1.1;

    margin-bottom: 22px;
}

.hero p {
    max-width: 620px;

    font-size: 18px;

    color: #e4f2ed;

    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.button-primary,
.button-secondary,
.button-light {
    display: inline-block;

    padding: 13px 24px;

    border-radius: 7px;

    font-weight: bold;

    transition: 0.2s;
}

.button-primary {
    background: #ffffff;

    color: #176c50;
}

.button-primary:hover {
    background: #dcf2ea;
}

.button-secondary {
    color: white;

    border: 1px solid rgba(255, 255, 255, 0.65);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* INTRO */

.intro {
    width: min(800px, 90%);

    margin: auto;

    padding: 90px 0 55px;

    text-align: center;
}

.section-label {
    color: #238565;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 3px;
}

.intro h2,
.section-heading h2 {
    font-size: 36px;

    color: #193b30;

    margin: 8px 0 15px;
}

.intro p,
.section-heading p {
    color: #6f7f78;
}


/* LEISTUNGEN */

.services {
    width: min(1200px, 92%);

    margin: 0 auto 100px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    padding: 35px;

    background: white;

    border-radius: 14px;

    border: 1px solid #e1ebe7;

    box-shadow: 0 10px 30px rgba(20, 60, 48, 0.06);

    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 40px rgba(20, 60, 48, 0.12);
}

.service-icon {
    width: 55px;
    height: 55px;

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

    margin-bottom: 20px;

    background: #e8f6f1;

    color: #187757;

    border-radius: 50%;

    font-size: 27px;
}

.service-card h3 {
    margin-bottom: 10px;

    color: #1c4638;
}

.service-card p {
    color: #718078;
}


/* CONTENT */

.content-row {
    width: min(1200px, 92%);

    margin: 0 auto 110px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.content-image {
    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.content-text h2 {
    margin: 8px 0 18px;

    font-size: 37px;

    line-height: 1.2;

    color: #183d31;
}

.content-text p {
    margin-bottom: 16px;

    color: #687971;
}

.text-button {
    display: inline-block;

    margin-top: 10px;

    color: #177355;

    font-weight: bold;
}

.content-row.reverse .content-image {
    order: 2;
}

.content-row.reverse .content-text {
    order: 1;
}


/* TEAM */

.team-section {
    padding: 90px 4%;

    background: #edf7f3;
}

.section-heading {
    max-width: 750px;

    margin: 0 auto 50px;

    text-align: center;
}

.team-grid {
    width: min(1200px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.team-card {
    overflow: hidden;

    background: white;

    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.team-card img {
    width: 100%;

    height: 260px;

    object-fit: cover;
}

.team-content {
    padding: 24px;
}

.team-content h3 {
    color: #1b4939;

    margin-bottom: 8px;
}

.team-content p {
    color: #718078;
}


/* HILFE */

.help-section {
    width: min(1100px, 92%);

    margin: 90px auto;

    padding: 45px 50px;

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

    gap: 30px;

    background: #187757;

    color: white;

    border-radius: 16px;
}

.help-section span {
    font-size: 12px;

    letter-spacing: 3px;

    color: #c6eee0;
}

.help-section h2 {
    margin: 6px 0;

    font-size: 32px;
}

.help-section p {
    color: #ddf1ea;
}

.button-light {
    flex-shrink: 0;

    background: white;

    color: #187757;
}


/* KONTAKT */

.contact-section {
    padding: 80px 4%;

    background: white;
}

.contact-grid {
    width: min(1100px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1.3fr;

    gap: 50px;
}

.contact-box {
    padding: 30px;

    background: #edf7f3;

    border-radius: 14px;
}

.contact-box h3 {
    margin-bottom: 20px;

    color: #175b43;
}

.contact-box p {
    margin-bottom: 15px;

    color: #617168;
}

.contact-form {
    display: grid;

    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 14px;

    border: 1px solid #d7e4df;

    border-radius: 8px;

    font-family: inherit;

    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: #1d8763;

    box-shadow: 0 0 0 3px rgba(29, 135, 99, 0.08);
}

.contact-form button {
    border: none;

    padding: 14px;

    background: #187757;

    color: white;

    border-radius: 8px;

    font-weight: bold;

    cursor: pointer;
}

.contact-form button:hover {
    background: #105f45;
}


/* FOOTER */

.footer {
    padding: 45px 5%;

    background: #102d24;

    text-align: center;

    color: white;
}

.footer-brand strong {
    font-size: 23px;
}

.footer-brand p {
    color: #a8c3b9;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    margin: 0 10px;

    color: #c3d7cf;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #78978b;

    font-size: 12px;
}


/* TABLET */

@media (max-width: 950px) {

    .header {
        flex-wrap: wrap;
    }

    .brand {
        margin-right: auto;
    }

    .navigation {
        order: 3;

        width: 100%;

        margin-top: 10px;

        justify-content: center;
    }

    .services,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-row {
        grid-template-columns: 1fr;
    }

    .content-row.reverse .content-image,
    .content-row.reverse .content-text {
        order: initial;
    }

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


/* HANDY */

@media (max-width: 650px) {

    .header {
        padding: 12px 18px;
    }

    .brand-text span {
        display: none;
    }

    .navigation {
        overflow-x: auto;

        justify-content: flex-start;
    }

    .navigation a {
        white-space: nowrap;
    }

    .login-button {
        padding: 9px 12px;

        font-size: 13px;
    }

    .hero {
        min-height: 520px;

        padding: 60px 6%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .services,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .content-image img {
        height: 300px;
    }

    .content-text h2 {
        font-size: 29px;
    }

    .help-section {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }

    .intro h2,
    .section-heading h2 {
        font-size: 29px;
    }
}

/* =========================================
   Öffnungszeiten Und Adresse START
   Zum Entfernen diesen kompletten Block löschen
========================================= */

.opening-note {
    display: none;
}

.opening-note {
    display: block;
}

.opening-note {
    position: fixed;
    top: 100px;
    right: 25px;

    width: 180px;
    padding: 20px 15px 15px;

    background: #f8f8f5;
    color: #000e09;

    text-align: center;

    border: 1px solid #080808;
    border-radius: 6px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);

    transform: rotate(2deg);

    z-index: 9999;
}

.opening-note strong {
    display: block;
    font-size: 18px;
}

.opening-note span {
    display: block;
    margin-top: 4px;

    font-size: 13px;
    color: #687971;
}

.opening-clip {
    position: absolute;

    top: -18px;
    right: 12px;

    font-size: 28px;

    transform: rotate(15deg);
}

/* Öffnungszeiten Und Adresse ENDE */
.contact-section{max-width:900px;margin:60px auto;padding:35px;background:#fff;border-radius:18px}.contact-form{display:grid;gap:14px}.contact-form input,.contact-form textarea{padding:14px;border:1px solid #cbd5e1;border-radius:10px;font:inherit}.contact-form textarea{min-height:150px}.contact-form button{border:0;cursor:pointer}
