/* Gaya Umum */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #faf3e0;
  color: #333;
}

/* Header */
header {
  background-color: #6f4e37;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1200') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h2 {
  font-size: 2.5em;
}

.hero button {
  margin-top: 20px;
  background-color: #6f4e37;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
}

.hero button:hover {
  background-color: #8b5a2b;
}

/* Menu Section */
#menu {
  text-align: center;
  padding: 60px 20px;
}

.menu-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.menu-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.05);
}

.menu-item img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

/* Tentang & Kontak */
#about, #contact {
  padding: 60px 20px;
  text-align: center;
}

footer {
  background-color: #6f4e37;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

