*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#0b1220;
color:#f4f4f4;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
top:0;
left:0;
right:0;
background:rgba(11,18,32,.92);
backdrop-filter:blur(10px);
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-family:'Playfair Display',serif;
font-size:2rem;
font-weight:700;
color:#d4af37;
}

.logo span{
color:#ffffff;
font-weight:400;
}

nav a{
color:#fff;
text-decoration:none;
margin-left:30px;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(135deg,#0b1220,#152238);
padding:0 20px;
}

.hero-content{
max-width:800px;
}

.hero h1{
font-family:'Playfair Display',serif;
font-size:4rem;
line-height:1.1;
margin-bottom:25px;
}

.hero p{
font-size:1.2rem;
color:#d8d8d8;
margin-bottom:40px;
}

.button{
display:inline-block;
background:#d4af37;
color:#0b1220;
padding:16px 34px;
border-radius:40px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.button:hover{
transform:translateY(-3px);
box-shadow:0 10px 30px rgba(212,175,55,.35);
}

.section{
padding:100px 0;
}

.section h2{
font-family:'Playfair Display',serif;
font-size:2.6rem;
text-align:center;
margin-bottom:30px;
color:#d4af37;
}

.section p{
max-width:800px;
margin:auto;
text-align:center;
font-size:1.1rem;
}

.dark{
background:#111a2d;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:60px;
}

.card{
background:#1a2742;
padding:35px;
border-radius:16px;
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:15px;
color:#d4af37;
}

footer{
background:#08101d;
padding:35px;
text-align:center;
color:#999;
}

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

nav{
display:none;
}

}