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

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

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 0;
background:rgba(0,0,0,.8);
backdrop-filter:blur(10px);
z-index:1000;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
height:80px;
}

.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:#d4af37;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.6),
rgba(0,0,0,.6)),
url('../images/hero.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
}

.hero-content h1{
font-size:4rem;
margin-bottom:20px;
}

.gold{
color:#d4af37;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#d4af37;
color:#000;
text-decoration:none;
border-radius:5px;
font-weight:600;
margin-top:20px;
}

.section{
padding:100px 0;
}

.section-title{
text-align:center;
font-size:3rem;
margin-bottom:60px;
color:#d4af37;
}

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

.card{
background:#1c1c1c;
padding:30px;
border-radius:15px;
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
color:#d4af37;
margin-bottom:15px;
}

footer{
background:#000;
padding:30px;
text-align:center;
margin-top:80px;
}