/* Global */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background: #f0f0f0;
  color: #333;
}

/* Header */
header {
  background: url('images/daun.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 20px;
}

header .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  border-radius: 50%;
  animation: pop 2s infinite alternate;
  border: 2px solid orange;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

/* Banner Promo */
main {
  text-align: center;
  background: #fff8dc;
  padding: 40px 20px;
}

main img.banner-promo {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

main h2 {
  color: #e67e22;
  font-size: 2em;
}

main button {
  background: #ff4500;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

main button:hover {
  background: #ff6347;
  transform: scale(1.05);
}

/* Produk */
#produk {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.produk-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 260px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 8px;
  height: 180px;
  object-fit: cover;
}

/* Kontak */
.kontak {
  background: #2c3e50;
  color: white;
  padding: 40px 20px;
}

.kontak a {
  color: #ffa500;
  text-decoration: none;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
}

/* Animasi */
@keyframes pop {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
