body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
}

.hero-reservasi {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 60vh;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-reservasi .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-reservasi .container {
  position: relative;
  z-index: 1;
}

.hero-reservasi h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-reservasi .lead {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.hero-reservasi .btn-warning {
  background-color: #ffc107;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: bold;
  color: #333;
  border-radius: 5px;
  text-decoration: none;
}
.hero-reservasi .btn-warning:hover {
  background-color: #e0a800;
}

#form-reservasi {
  padding: 2rem 1rem;
}

.form-card {
  max-width: 600px;
  background: white;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.form-card h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-card label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-card textarea {
  resize: vertical;
}

.btn-submit {
  background-color: #25d366;
  color: white;
  border: none;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}
.btn-submit:hover {
  background-color: #1ebe5b;
}
