body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #fff;
}

.hero {
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #eee;
}

.product-list {
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  background: #1e1e1e;
}

.product {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product h2 i {
  margin-right: 10px;
  color: #ff4d4d;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(255, 0, 0, 0.4);
}

.product h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff4d4d;
}

.product p {
  font-size: 1rem;
  color: #ddd;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background: #ff4d4d;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn:hover {
  background: #e60000;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .product-list {
    flex-direction: column;
    align-items: center;
  }
}
