body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #111;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Yellow */
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: #FFD700;
}

.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
}

.hero h1 {
  font-size: 48px;
}

.hero span {
  color: #FFD700;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  background: #FFD700;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

.products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px;
}

.products .card {
  background: #111;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}

.products .card:hover {
  background: #FFD700;
  color: #000;
}
