body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #EAE3D2;
  color: #4A3C2A;
}

header {
  text-align: center;
  background: url('../images/hero.jpg') no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  background-color: rgba(74, 60, 42, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.product {
  display: inline-block;
  margin: 20px;
  padding: 20px;
  border: 1px solid #D4B996;
  border-radius: 8px;
  background-color: #fff;
  width: 250px;
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #9CAF88;
  color: white;
}
