
body{
  font-family: Arial, Sans-Serif;
  margin: 0;
  background: #fffaf4;
  color: #333;
}
header{
  background: #d2691e;
  color: white;
  text-align: center;
  padding: 8px;
}
nav a{
  color: white;
  margin: 0 8px;
  text-decoration: none;
}
nav a:hover{
  text-decoration: underline;
}
.hero{
  position: relative;
  text-align: center;
  color: white;
}
.hero-img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.4);
}
.hero-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text h2{
  font-size: 36px;
}
hero-text p{
  font-size: 18px;
  margin: 8px 0;
}
.btn{
  display: inline-block;
  background: #ffb300;
  color: #3e2723;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}
main{
  padding: 16px;
}
section{
  margin-bottom: 32px;
}
h2{
  color: #d2691e;
}
#product{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.product{
  background: #f8f5f3;
  padding: 16px;
  border-radius: 6px;
  text-align: center;
  width: 200px;
}
.product img{
  width: 100%;
  height: auto;
  border-radius: 6px;
}

  