body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fffaf0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  background: #f6b149f0;
}
.navbar a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  color: black;
}
.hero{
  position: relative;
  height: 100vh;
  overflow: hidden;
}



.hero-content {
  background: none;     /* remove card */
  padding: 0;           /* remove spacing */
  border-radius: 0;
  color: white;         /* text on image */
  max-width: 600px;
}

/* Make text readable on video/image */
.hero-content h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.2rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.products {
  padding: 60px;
  text-align: center;
}
.product-grid {
  display: flex;
  justify-content: space-around;
}
.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 40px;
}

.card{
  background: #f3f3f3;
  padding: 25px;
  border-radius: 18px;
  border-left: 6px solid #ffda1ef5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover{
  transform: translateY(-5px);
}

.card h3{
  margin-bottom: 10px;
  font-size: 20px;
}

.card p{
  color: #555;
  font-size: 15px;
}
footer {
  background: #f4b400;
  padding: 20px;
  text-align: center;
}
