* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ===== BACKGROUND SAMA UNTUK SEMUA ===== */
.hero {
  min-height: 100vh;
  background: url('../images/kopi-tenggek.jpg') no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* ===== CONTAINER ===== */
.booking-container {
  position: relative;
  z-index: 2;
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-container h2 {
  text-align: center;
  margin-bottom: 10px;
}

.booking-container label {
  font-weight: bold;
}

.booking-container input {
  padding: 10px;
  font-size: 1rem;
}

.summary {
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

button {
  margin-top: 16px;
  padding: 14px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

.booking-container h2 {
  text-align: center;
  margin-bottom: 10px;
}

.booking-container label {
  font-weight: 600;
  font-size: 0.9rem;
}

.booking-container input {
  padding: 10px;
  font-size: 1rem;
}

.total {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 10px;
}

.booking-container button {
  margin-top: 14px;
  padding: 14px;
  font-size: 1rem;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}
