body{
margin:0;
font-family:'Inter',sans-serif;
background:#0B0B0F;
color:#f5f5f5;
}

/* NAVBAR */

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 50px;
background:#0B0B0F;
}

.logo img{
height:60px;
}

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

.nav-links a{
text-decoration:none;
color:white;
opacity:.8;
font-weight:400;
}

.nav-links a:hover{
opacity:1;
}

/* HERO */

.hero{
height:75vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

background:
linear-gradient(rgba(11,11,15,.85),rgba(11,11,15,.95)),
url("../images/hero-placeholder.jpg");

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

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

.hero h1{
font-size:60px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
opacity:.8;
}

/* BUTTON */

.btn{
display:inline-block;
margin-top:25px;
padding:14px 30px;
background:#1E6FFF;
border:none;
color:white;
font-size:16px;
border-radius:4px;
cursor:pointer;
transition:.25s;
}

.btn:hover{
box-shadow:0 0 20px #1E6FFF;
}

/* FEATURED */

.featured{
padding:80px 60px;
text-align:center;
}

.featured h2{
font-size:32px;
margin-bottom:50px;
}

/* PRODUCT GRID */

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
max-width:1100px;
margin:auto;
}

.product-card{
background:#121218;
padding:20px;
border-radius:6px;
transition:.25s;
}

.product-card img{
width:100%;
border-radius:4px;
}

.product-card:hover{
transform:translateY(-5px);
box-shadow:0 0 25px rgba(30,111,255,.4);
}

/* FOOTER */

footer{
margin-top:80px;
padding:40px;
text-align:center;
opacity:.6;
border-top:1px solid #1a1a1a;
}