
.hero {
  background: url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #f1f1f1;
  font-family: 'Playfair Display', serif;
}
.hero h1 {
  font-size: 3rem;
  color: #d4af37;
}
.reservation-form {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 16px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.reservation-form label {
  display: block;
  color: #d4af37;
  margin-bottom: 6px;
  font-weight: 500;
}
.reservation-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #111;
  color: #f5f5f5;
}
.reservation-form button {
  background: #d4af37;
  color: #111;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}
.reservation-form button:hover {
  background: #b38e2e;
}
.result-box {
  text-align: center;
  color: #f5f5f5;
  margin-top: 15px;
  font-size: 1.2rem;
}
