*{
margin:0;
padding:0;
box-sizing:border-box;
}


body{

font-family:
"Helvetica Neue",
Arial,
sans-serif;

color:#222;

}



.header{

height:90px;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 8%;

background:white;

}



.logo{

font-size:28px;

font-weight:700;

color:#183b22;

}


.logo span{

font-weight:400;

}



nav{

display:flex;

gap:35px;

}



nav a{

text-decoration:none;

color:#333;

font-weight:500;

}




.hero{

height:90vh;

display:flex;

align-items:center;

padding:0 8%;

color:white;


background:

linear-gradient(
90deg,
rgba(0,0,0,.65),
rgba(0,0,0,.25)
),

linear-gradient(
135deg,
#355834,
#8aa96b
);

}



.hero-content{

max-width:800px;

}



.small-title{

letter-spacing:3px;

text-transform:uppercase;

font-size:14px;

margin-bottom:20px;

}


.hero h1{

font-size:70px;

line-height:1.1;

margin-bottom:30px;

}



.hero p{

font-size:22px;

max-width:650px;

margin-bottom:40px;

}



.hero{

height:90vh;

display:flex;

align-items:center;

padding:0 8%;

color:white;

position:relative;


background-image:

linear-gradient(
90deg,
rgba(0,0,0,.65),
rgba(0,0,0,.25)
),

url("images/hero.jpg");


background-size:cover;

background-position:center;

}



.hero-content{

position:relative;

z-index:2;

max-width:850px;

}



.hero h1{

font-size:70px;

line-height:1.08;

margin-bottom:30px;

}



.hero p{

font-size:22px;

max-width:650px;

margin-bottom:40px;

}


.hero a{

display:inline-block;

background:#d8b26e;

color:white;

padding:18px 45px;

border-radius:50px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}


.hero a:hover{

background:#b99352;

transform:translateY(-4px);

}





section{

padding:100px 8%;

text-align:center;

}



.dark{

color:#55734d;

}



h2{

font-size:45px;

margin-bottom:50px;

}




.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

max-width:1200px;

margin:auto;

}



.card{

padding:45px;

background:#fff;

border-radius:20px;

box-shadow:
0 20px 50px rgba(0,0,0,.08);

}



.card h3{

color:#355834;

margin-bottom:20px;

font-size:25px;

}



.about{

background:#f5f2eb;

}



footer{

background:#183b22;

color:white;

text-align:center;

padding:35px;

}





@media(max-width:800px){


.header{

flex-direction:column;

height:auto;

padding:25px;

gap:20px;

}



nav{

gap:15px;

}



.hero h1{

font-size:40px;

}



.cards{

grid-template-columns:1fr;

}


}/* LEISTUNGSKARTEN PREMIUM */


.card{

transition:.4s;

}


.card:hover{

transform:translateY(-12px);

box-shadow:
0 30px 70px rgba(0,0,0,.15);

}



.icon{

width:70px;

height:70px;

margin:0 auto 25px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#f0eadf;

font-size:35px;

}



.card p{

color:#666;

line-height:1.8;

}
.hero-stats{

display:flex;

gap:40px;

margin-top:60px;

flex-wrap:wrap;

}


.hero-stats div{

background:rgba(255,255,255,.15);

padding:20px 30px;

border-radius:15px;

backdrop-filter:blur(10px);

}



.hero-stats strong{

display:block;

font-size:35px;

color:#d8b26e;

}



.hero-stats span{

font-size:14px;

}
/* =================================
   HERO AUSRICHTUNG KORREKTUR
================================= */

.hero-stats{

    width:100%;

    justify-content:center;

}


.hero-stats div{

    text-align:center;

}


/* Mobile */

@media(max-width:800px){

    .hero-stats{

        justify-content:center;

    }

}
/* =================================
   PROJEKTE GALERIE
================================= */


.projects{

background:#f7f5ef;

}



.project-grid{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.project-card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:
0 20px 50px rgba(0,0,0,.1);

transition:.4s;

}



.project-card:hover{

transform:translateY(-10px);

}



.project-card img{

width:100%;

height:300px;

object-fit:cover;

display:block;

}



.project-text{

padding:30px;

}



.project-text h3{

color:#355834;

margin-bottom:15px;

font-size:24px;

}



.project-text p{

color:#666;

}



@media(max-width:900px){


.project-grid{

grid-template-columns:1fr;

}


}
/* =================================
   HERO FIX
================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
}


.hero-content {

    max-width:850px;
    margin:0;

}


.hero-stats {

    display:flex;
    justify-content:center;
    align-items:center;

}


.hero h1,
.hero p,
.hero a {

    transform:none;

}
/* =================================
   PREMIUM PROJEKT GALERIE
================================= */


.projects{
    background:#f5f2eb;
}


.project-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}


.project-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

    transition:.4s;

}


.project-card:hover{

    transform:translateY(-12px);

}


.project-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}


.project-card:hover img{

    transform:scale(1.08);

}



.project-text{

    padding:30px;

}


.project-text h3{

    color:#355834;

    font-size:24px;

    margin-bottom:15px;

}


.project-text p{

    color:#666;

    line-height:1.7;

}



@media(max-width:900px){

.project-grid{

grid-template-columns:1fr;

}

}
/* =================================
   WARUM EINSA GARTENBAU
================================= */


.why{

background:white;

}


.why-grid{

max-width:1100px;

margin:auto;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}



.why-box{

padding:35px 25px;

border-radius:20px;

background:#f7f5ef;

transition:.3s;

}


.why-box:hover{

transform:translateY(-8px);

box-shadow:
0 20px 40px rgba(0,0,0,.1);

}



.why-icon{

font-size:40px;

margin-bottom:20px;

}



.why-box h3{

color:#355834;

margin-bottom:15px;

}



.why-box p{

color:#666;

line-height:1.7;

}



@media(max-width:1000px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.why-grid{

grid-template-columns:1fr;

}

}
/* =================================
   KONTAKT PREMIUM
================================= */


.contact-section{

background:#f5f2eb;

}



.contact-text{

max-width:600px;

margin:0 auto 40px;

color:#666;

font-size:18px;

}



.contact-box{

max-width:1000px;

margin:0 auto 40px;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}



.contact-box div{

background:white;

padding:35px;

border-radius:20px;

box-shadow:
0 15px 40px rgba(0,0,0,.08);

}



.contact-box h3{

color:#355834;

margin-bottom:15px;

}



.contact-box p{

color:#666;

}



.contact-button{

display:inline-block;

background:#355834;

color:white;

padding:18px 45px;

border-radius:40px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}



.contact-button:hover{

background:#d8b26e;

}



@media(max-width:800px){

.contact-box{

grid-template-columns:1fr;

}

}
/* =================================
   FOOTER PREMIUM
================================= */


.footer{

background:#183b22;

color:white;

padding:70px 8% 25px;

}



.footer-grid{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

}



.footer h3{

font-size:28px;

margin-bottom:20px;

}



.footer h4{

font-size:18px;

margin-bottom:20px;

color:#d8b26e;

}



.footer p{

color:rgba(255,255,255,.8);

margin-bottom:10px;

line-height:1.7;

}



.footer-bottom{

border-top:1px solid rgba(255,255,255,.2);

margin-top:50px;

padding-top:25px;

text-align:center;

font-size:14px;

}



@media(max-width:800px){


.footer-grid{

grid-template-columns:1fr;

text-align:center;

}


}