body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.hero {
  height: 25vh; /* penuh 1 layar */
  background-image: url('banner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-overlay {
 padding: 40px;
}
.hero-overlay h1,
.hero-overlay p {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.banner {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}
.produk-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  gap: 20px;
  padding: 40px;
}

.produk-item {
  background: #f5f5f5;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.produk-item img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #222;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}