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

body{
  background:#060606;
  color:#e5e5e5;
  font-family:'Inter',sans-serif;
  line-height:1.6;
}

h1,h2,h3,.logo{
  font-family:'Cinzel',serif;
  letter-spacing:2px;
}

.topbar{
  text-align:center;
  padding:12px;
  border-bottom:1px solid #444;
  background:#0b0b0b;
  color:#bdbdbd;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 8%;
  border-bottom:1px solid #2f2f2f;
  position:sticky;
  top:0;
  background:rgba(0,0,0,.95);
  backdrop-filter:blur(8px);
  z-index:10;
}

.logo{
  font-size:2rem;
  font-weight:800;
  color:#d8d8d8;
}

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

.nav-links a{
  text-decoration:none;
  color:#d0d0d0;
  transition:.3s;
}

.nav-links a:hover{
  color:#ffffff;
}

.hero{
  min-height:85vh;
  position:relative;
  background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.85)),
    url('https://images.unsplash.com/photo-1515879218367-8466d910aaa4?q=80&w=1400&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.hero-content{
  max-width:700px;
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:24px;
  color:#f2f2f2;
}

.hero p{
  font-size:1.1rem;
  color:#c0c0c0;
  margin-bottom:32px;
}

.btn{
  display:inline-block;
  padding:14px 34px;
  border:1px solid #9f9f9f;
  color:white;
  text-decoration:none;
  transition:.3s;
  background:rgba(255,255,255,.04);
}

.btn:hover{
  background:#d0d0d0;
  color:black;
}

.categories,
.featured,
.about,
.newsletter{
  padding:90px 8%;
}

.categories h2,
.featured h2,
.about h2,
.newsletter h2{
  text-align:center;
  margin-bottom:50px;
  font-size:2.4rem;
}

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

.card{
  border:1px solid #333;
  padding:30px;
  background:linear-gradient(180deg,#111,#090909);
  transition:.3s;
}

.card:hover{
  transform:translateY(-5px);
  border-color:#8d8d8d;
}

.card h3{
  margin-bottom:14px;
}

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

.product{
  border:1px solid #333;
  padding:40px 25px;
  text-align:center;
  background:#0d0d0d;
}

.product h3{
  margin-bottom:15px;
}

.product span{
  color:#d4d4d4;
}

.about-box{
  max-width:900px;
  margin:auto;
  border:1px solid #333;
  padding:50px;
  background:#0d0d0d;
}

.about p{
  margin-top:18px;
  color:#c0c0c0;
}

.newsletter{
  text-align:center;
}

form{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

input{
  padding:14px;
  width:320px;
  background:#101010;
  border:1px solid #444;
  color:white;
}

button{
  padding:14px 28px;
  border:none;
  cursor:pointer;
  background:#d0d0d0;
  color:black;
  font-weight:600;
}

footer{
  border-top:1px solid #2f2f2f;
  padding:60px 8%;
  background:#050505;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
  margin-bottom:40px;
}

.footer-grid h3{
  margin-bottom:15px;
}

.copyright{
  text-align:center;
  color:#7e7e7e;
}

@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

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