body{
margin:0;
font-family:Arial, sans-serif;
background:#f4f4f4;
color:#333;
}

.hero{
height:90vh;
background:url("bilder/garten.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-content{
background:rgba(0,0,0,0.5);
padding:50px;
border-radius:10px;
}

.hero h1{
font-size:48px;
margin:0;
}

.cta{
display:inline-block;
margin-top:20px;
padding:15px 30px;
background:#4CAF50;
color:white;
text-decoration:none;
border-radius:5px;
}

nav{
background:#222;
padding:15px;
text-align:center;
}

nav a{
color:white;
margin:20px;
text-decoration:none;
font-weight:bold;
}

section{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
border-radius:10px;
}

form{
display:grid;
gap:15px;
max-width:500px;
}

input, textarea{
padding:12px;
border:1px solid #ccc;
border-radius:5px;
}

button{
background:#4CAF50;
color:white;
padding:14px;
border:none;
border-radius:5px;
font-size:16px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:16px 22px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

@media(max-width:768px){
.hero h1{
font-size:32px;
}
.hero{
height:70vh;
}
}
