html{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#f8f8f8;
}

header{
    position: sticky;
    top: 0;
    background:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 8%;
    height:110px;
    z-index:1000;
}
.logo img{
    height:110px;
    width:auto;
    display:block;
}

nav{
    display:flex;
    gap:55px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#d4af37;
}

.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    padding:70px 8%;
    background:white;
}
.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
}
.hero p{
    font-size:22px;
    line-height:1.7;
    color:#444;
    margin-bottom:35px;
}

.button{
    display:inline-block;
    background:#d4af37;
    color:white;
    padding:16px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.button:hover{
    transform:translateY(-2px);
}
.hero-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.leistungen,
.galerie,
.kontakt{
    padding:70px 8%;
    text-align:center;
}

.leistungen h2,
.galerie h2,
.kontakt h2{
    font-size:36px;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card h3{
    margin:15px 0;
}

.card p{
    line-height:1.6;
}

.bilder{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.bilder img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
}

.kontakt p{
    margin:12px 0;
    font-size:18px;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
}

@media(max-width:800px){

.hero{
    grid-template-columns:1fr;
}

header{
    flex-direction:column;
    gap:15px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:36px;
}

}
footer{
    background:#111;
    color:white;
    padding:35px 8%;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#d4af37;
}
.map{
    margin-top:40px;
}

.map iframe{
    width:100%;
    height:400px;
    border:0;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.anfrage{
    padding:70px 8%;
    background:#fff;
    text-align:center;
}

.anfrage h2{
    font-size:36px;
    margin-bottom:15px;
}

.anfrage p{
    max-width:700px;
    margin:0 auto 40px;
    line-height:1.7;
    color:#555;
}

.anfrage form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.anfrage input,
.anfrage textarea{
    padding:16px;
    border:1px solid #ccc;
    border-radius:10px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

.anfrage textarea{
    resize:vertical;
}

.anfrage button{
    background:#d4af37;
    color:white;
    border:none;
    padding:18px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.anfrage button:hover{
    background:#bf9c2f;
}
.datenschutz-hinweis{
    max-width:700px;
    margin:25px auto 0;
    font-size:14px;
    color:#666;
    line-height:1.7;
    text-align:center;
}

.datenschutz-hinweis a{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.datenschutz-hinweis a:hover{
    text-decoration:underline;
}
.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    z-index:9999;
}

.whatsapp:hover{
    transform:scale(1.1);
}

.whatsapp img{
    width:34px;
    height:34px;
    filter:invert(1);
}