*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
    background:#fff;
}


.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}



/* HEADER */

header{
    position:fixed;
    top:0;
    width:100%;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    z-index:1000;
}


.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}


.logo{
    width:220px;
}


nav{
    display:flex;
    gap:30px;
}


nav a{
    color:#006633;
    text-decoration:none;
    font-weight:bold;
}


nav a:hover{
    color:#008844;
}



/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    text-align:center;
    padding-top:120px;
    background:#f4f8f4;
}


.hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}


.hero-logo{
    width:420px;
    max-width:90%;
    margin-bottom:40px;
}


.hero h1{
    font-size:48px;
    color:#006633;
    margin-bottom:20px;
}


.hero p{
    font-size:20px;
    margin-bottom:35px;
}



/* BUTTON */

.green-button,
button{

    background:#006633;
    color:white;

    padding:15px 35px;

    border-radius:8px;

    text-decoration:none;

    border:none;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    display:inline-block;

}


.green-button:hover,
button:hover{

    background:#008844;

}



/* SECTIONS */

.section{

    padding:100px 0;

}


.green-bg{

    background:#f0f6f1;

}


.center{

    text-align:center;

}


h2{

    color:#006633;

    text-align:center;

    font-size:38px;

    margin-bottom:35px;

}



/* FORMULAR */

form{

    max-width:650px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:15px;

}


input,
textarea{

    width:100%;

    padding:15px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

}


textarea{

    min-height:130px;

    resize:vertical;

}



/* FOOTER */

footer{

    background:#006633;

    color:white;

    text-align:center;

    padding:30px;

}



/* MOBILE */

@media(max-width:700px){

    .header-inner{

        flex-direction:column;

        gap:20px;

    }


    nav{

        flex-direction:column;

        text-align:center;

        gap:15px;

    }


    .logo{

        width:180px;

    }


    .hero h1{

        font-size:32px;

    }


    .hero-logo{

        width:280px;

    }

}

/* ===========================
   Footer Links
=========================== */

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:white;
    text-decoration:none;
}

.footer-links a:hover{
    text-decoration:underline;
}


@media(max-width:700px){

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

}

/* ===========================
   Abschnitt Bilder
=========================== */

.section-image{

    width:650px;
    max-width:100%;

    margin:60px auto 0;

    overflow:hidden;

    border-radius:12px;

}


.section-image img{

    width:100%;

    display:block;

    transition:transform .4s ease;

}


.section-image:hover img{

    transform:scale(1.1);

}

/* ===========================
   Google Bewertungen
=========================== */

#bewertungen{
    background:#ffffff;
}


.rating-box{

    max-width:650px;

    margin:0 auto;

    padding:40px 30px;

    background:#f0f6f1;

    border-radius:12px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}


.stars{

    color:#006633;

    font-size:42px;

    letter-spacing:5px;

    margin-bottom:20px;

}


.rating-text{

    font-size:20px;

    margin-bottom:15px;

}


.rating-number{

    font-size:18px;

    font-weight:bold;

    color:#006633;

    margin-bottom:30px;

}