*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
background:#0b0b0b;
color:#f5f5f5;
font-family:'Poppins',sans-serif;
}

/* NAVBAR */
.nav{
position:fixed;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
background:rgba(0,0,0,0.75);
backdrop-filter:blur(10px);
z-index:1000;
}

.brand{
display:flex;
align-items:center;
gap:10px;
font-family:'Playfair Display',serif;
font-size:20px;
letter-spacing:1px;
}

.brand img{
width:42px;
height:42px;
border-radius:50%;
object-fit:cover;
}

.menu{
display:flex;
gap:30px;
list-style:none;
}

.menu a{
color:#ddd;
text-decoration:none;
font-size:14px;
letter-spacing:1px;
transition:0.3s;
}

.menu a:hover{
color:gold;
}

.hamburger{
display:none;
font-size:28px;
color:gold;
cursor:pointer;
}

#menu-toggle{
display:none;
}

/* HERO */
.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
padding:20px;
}

.bg-logo{
position:absolute;
width:350px;
opacity:0.04;
}

.hero h1{
font-family:'Playfair Display',serif;
font-size:3rem;
letter-spacing:2px;
}

.hero p{
margin-top:10px;
opacity:0.7;
}

.btn{
display:inline-block;
margin-top:25px;
padding:12px 30px;
background:gold;
color:black;
text-decoration:none;
font-weight:500;
border-radius:5px;
transition:0.3s;
}

.btn:hover{
transform:scale(1.05);
box-shadow:0 0 15px gold;
}

/* SECTION */
.section{
padding:110px 20px;
text-align:center;
}

.top-space{
padding-top:150px;
}

.section h2,
.collection-preview h2,
.about h2,
.reviews h2,
.crafted h2{
font-family:'Playfair Display',serif;
margin-bottom:30px;
letter-spacing:2px;
font-size:2.4rem;
}

/* COLLECTION */
.collection-preview{
padding:100px 20px;
text-align:center;
background:#111;
}

.collection-preview p{
max-width:700px;
margin:auto;
opacity:0.7;
margin-bottom:30px;
line-height:1.8;
}

/* ABOUT */
.about{
padding:100px 20px;
text-align:center;
}

.about p{
max-width:800px;
margin:auto;
opacity:0.7;
line-height:1.9;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
}

/* CARD */
.card{
background:#141414;
padding:18px;
border-radius:12px;
transition:0.3s;
border:1px solid rgba(255,215,0,0.08);
}

.card:hover{
transform:translateY(-8px);
border-color:rgba(255,215,0,0.5);
box-shadow:0 10px 25px rgba(0,0,0,0.6);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
}

.card h3{
margin-top:12px;
font-size:16px;
}

.card p{
color:gold;
margin:8px 0;
}

.card a{
display:block;
margin-top:12px;
padding:11px;
background:gold;
color:black;
text-decoration:none;
border-radius:6px;
transition:0.3s;
font-weight:500;
}

.card a:hover{
background:#e6c200;
}

.dark{
background:#111;
}

/* CRAFTED */
.crafted{
padding:100px 20px;
text-align:center;
background:#0f0f0f;
}

.crafted p{
max-width:700px;
margin:auto;
opacity:0.7;
line-height:1.8;
}

/* REVIEWS */
.reviews{
padding:100px 20px;
background:#111;
text-align:center;
}

.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1000px;
margin:auto;
}

.review-card{
background:#151515;
padding:30px;
border-radius:12px;
border:1px solid rgba(255,215,0,0.1);
}

.review-card p{
opacity:0.8;
margin-bottom:15px;
line-height:1.8;
}

.review-card span{
color:gold;
font-size:14px;
}

/* FOOTER */
footer{
background:#000;
padding:60px 20px;
text-align:center;
}

footer h2{
font-family:'Playfair Display',serif;
margin-bottom:10px;
}

footer p{
margin:5px 0;
font-size:14px;
}

footer a{
color:gold;
text-decoration:none;
}

.social{
margin-top:20px;
}

.social a{
margin:0 10px;
font-size:20px;
color:#aaa;
transition:0.3s;
}

.social a:hover{
color:gold;
}

/* MOBILE */
@media(max-width:768px){

.nav{
padding:18px 20px;
}

.hamburger{
display:block;
}

.menu{
display:none;
position:absolute;
top:70px;
right:20px;
flex-direction:column;
background:black;
padding:20px;
border:1px solid gold;
border-radius:10px;
}

#menu-toggle:checked + .hamburger + .menu{
display:flex;
}

.hero h1{
font-size:2rem;
}

.section h2,
.collection-preview h2,
.about h2,
.reviews h2,
.crafted h2{
font-size:2rem;
}

}

