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

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:white;
}


/* HEADER */

header{
    position:fixed;
    top:0;
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(10px);
    z-index:1000;
}


.logo{
    font-size:28px;
    font-weight:700;
    color:#d4af37;
    letter-spacing:2px;
}


.logo span{
    color:white;
    font-weight:300;
}


nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    transition:.3s;
}


nav a:hover{
    color:#d4af37;
}




/* HERO */

.hero{

height:100vh;

display:flex;
align-items:center;
padding:0 8%;

background:
linear-gradient(
rgba(0,0,0,.65),
rgba(0,0,0,.8)
),
url("https://images.unsplash.com/photo-1547887538-e3a2f32cb1cc");

background-size:cover;
background-position:center;

}


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


.hero h1{

font-size:60px;
line-height:1.1;
color:#d4af37;

}


.hero p{

font-size:20px;
margin:25px 0;
color:#ddd;

}


.btn{

display:inline-block;
padding:15px 35px;
background:#d4af37;
color:black;
text-decoration:none;
border-radius:30px;
font-weight:bold;
transition:.3s;

}


.btn:hover{

transform:translateY(-5px);
background:white;

}




/* PRODUCTS */

.products{

padding:90px 8%;

}


h2{

text-align:center;
font-size:40px;
margin-bottom:50px;
color:#d4af37;

}



.product-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}


.card{

background:#111;
border:1px solid #222;
border-radius:20px;
overflow:hidden;
transition:.4s;
padding-bottom:25px;

}


.card:hover{

transform:translateY(-10px);
border-color:#d4af37;

}


.card img{

width:100%;
height:300px;
object-fit:cover;

}


.card h3{

font-size:25px;
margin:20px;

}


.card p{

margin:0 20px;
color:#aaa;

}


.card button{

margin:20px;
padding:10px 25px;
border:none;
border-radius:20px;
background:#d4af37;
cursor:pointer;

}




/* REVIEWS */

.reviews{

padding:90px 8%;
background:#0b0b0b;

}


.review-box{

background:#111;
padding:30px;
margin:20px auto;
max-width:600px;
border-radius:15px;
text-align:center;

}


.review-box h4{

color:#d4af37;
margin-top:15px;

}




/* CONTACT */

.contact{

padding:90px 8%;
text-align:center;

}


.contact p{

margin:20px;
color:#ccc;

}




/* WHATSAPP */

.whatsapp{

position:fixed;
right:25px;
bottom:25px;

background:#25D366;
color:white;

width:60px;
height:60px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:30px;

text-decoration:none;

z-index:1000;

}





footer{

text-align:center;
padding:25px;
background:#000;
color:#777;

}





/* MOBILE */

@media(max-width:800px){


header{

padding:20px;

}


nav{

display:none;

}


.hero h1{

font-size:40px;

}


.product-grid{

grid-template-columns:1fr;

}


}


.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}


.show{
    opacity:1;
    transform:translateY(0);
}
