*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#111;
color:#fff;
line-height:1.6;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.7);
backdrop-filter:blur(10px);
z-index:999;
}

.logo img{
height:70px;
}

.navbar ul{
display:flex;
list-style:none;
gap:30px;
}

.navbar a{
color:#fff;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.navbar a:hover{
color:#d4af37;
}

.hero{
height:100vh;
position:relative;
overflow:hidden;
}

.hero-image{
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
width:90%;
}

.hero-content h1{
font-size:60px;
margin-bottom:15px;
}

.hero-content p{
font-size:22px;
margin-bottom:30px;
}

.buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.buttons a{
padding:15px 35px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.gold{
background:#d4af37;
color:#111;
}

.green{
background:#25D366;
color:white;
}

.dark{
background:#333;
color:white;
}

.buttons a:hover{
transform:translateY(-5px);
}
section{
padding:90px 8%;
}

h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:#d4af37;
}

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

.card{
background:#1b1b1b;
padding:35px;
border-radius:15px;
text-align:center;
transition:.4s;
border:1px solid #333;
}

.card:hover{
transform:translateY(-10px);
border-color:#d4af37;
}

.card i{
font-size:55px;
color:#d4af37;
margin-bottom:20px;
}

.card h3{
margin-bottom:15px;
font-size:28px;
}

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

.gallery img{
width:100%;
height:260px;
object-fit:cover;
border-radius:15px;
transition:.4s;
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.05);
}

#kontakt{
text-align:center;
background:#1a1a1a;
}

#kontakt p{
margin:15px 0;
font-size:20px;
}

footer{
background:#000;
padding:30px;
text-align:center;
color:#aaa;
}

@media(max-width:768px){

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:18px;
}

.navbar{
flex-direction:column;
padding:15px;
}

.navbar ul{
margin-top:15px;
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

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

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

.buttons{
flex-direction:column;
}

.buttons a{
width:100%;
max-width:280px;
text-align:center;
}

}
