
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root{
--bg:#050505;
--card:#101010;
--gold:#c9a227;
--text:#f2f2f2;
--muted:#9f9f9f;
--border:rgba(255,255,255,.08);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 6%;
background:rgba(0,0,0,.75);
backdrop-filter:blur(14px);
z-index:999;
border-bottom:1px solid var(--border);
}

.logo{
font-family:'Space Grotesk',sans-serif;
font-size:2rem;
font-weight:700;
letter-spacing:4px;
color:var(--gold);
}

nav a{
margin-left:30px;
text-decoration:none;
color:white;
font-size:.95rem;
transition:.3s;
}

nav a:hover{
color:var(--gold);
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 7% 60px;
background:
radial-gradient(circle at top, rgba(201,162,39,.15), transparent 30%),
linear-gradient(to bottom,#060606,#000);
}

.hero-content{
max-width:900px;
}

.hero h1{
font-size:5rem;
line-height:1.05;
margin-bottom:20px;
font-family:'Space Grotesk',sans-serif;
}

.hero p{
font-size:1.2rem;
color:var(--muted);
max-width:700px;
margin:auto;
line-height:1.8;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 32px;
border-radius:50px;
background:var(--gold);
color:black;
font-weight:700;
text-decoration:none;
margin-top:30px;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.section{
padding:110px 7%;
}

.section-title{
font-size:2.8rem;
margin-bottom:18px;
font-family:'Space Grotesk',sans-serif;
}

.section-sub{
color:var(--muted);
max-width:700px;
line-height:1.8;
margin-bottom:45px;
}

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

.card{
background:linear-gradient(180deg,#121212,#090909);
border:1px solid var(--border);
border-radius:24px;
overflow:hidden;
transition:.4s;
position:relative;
}

.card:hover{
transform:translateY(-8px);
border-color:rgba(201,162,39,.4);
}

.card img{
width:100%;
height:320px;
object-fit:cover;
}

.card-content{
padding:25px;
}

.card h3{
font-size:1.2rem;
margin-bottom:10px;
}

.card p{
color:var(--muted);
font-size:.95rem;
line-height:1.7;
}

.price{
color:var(--gold);
font-size:1.25rem;
margin:16px 0;
font-weight:700;
}

.collections{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.collection{
position:relative;
border-radius:24px;
overflow:hidden;
min-height:380px;
border:1px solid var(--border);
}

.collection img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.55);
}

.collection .overlay{
position:absolute;
inset:0;
display:flex;
flex-direction:column;
justify-content:flex-end;
padding:35px;
}

.collection h3{
font-size:2rem;
font-family:'Space Grotesk',sans-serif;
margin-bottom:10px;
}

.feature{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.feature img{
width:100%;
border-radius:30px;
border:1px solid var(--border);
}

.feature h2{
font-size:3rem;
margin-bottom:20px;
font-family:'Space Grotesk',sans-serif;
}

.feature p{
color:var(--muted);
line-height:1.9;
}

footer{
padding:60px 7%;
border-top:1px solid var(--border);
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
}

footer p,a{
color:var(--muted);
text-decoration:none;
}

.whatsapp{
position:fixed;
right:24px;
bottom:24px;
background:#25d366;
width:62px;
height:62px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:1.7rem;
text-decoration:none;
color:white;
z-index:999;
}

@media(max-width:900px){

.hero h1{
font-size:3rem;
}

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

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

nav{
display:none;
}
}
