body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
  background: #faf8f5;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: #3e2723;
}

header .logo {
  height: 50px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: url('img/kopi1.jpg') center/cover no-repeat;
  color: #fff;
}

.hero .btn {
  display: inline-block;
  padding: 10px 25px;
  background: #795548;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 5px;
}

.produk-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 10%;
}

.produk {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 15px;
  width: 250px;
  text-align: center;
}

.produk img {
  width: 100%;
  border-radius: 10px;
}

.harga {
  color: #795548;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 15px;
  background: #3e2723;
  color: #fff;
  margin-top: 40px;
}