body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: #fffaf0;
  color: #333;
}

.reservation-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  min-height: 100vh;
  background: linear-gradient(to bottom, #fffaf0, #f5e1be);
  animation: fadeIn 1.2s ease-in;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.form-container {
  background: white;
  border: 2px solid #d4af37;
  border-radius: 16px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 200px;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #b88900;
}

form input,
form select,
form textarea,
form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

form button {
  background: #b88900;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #a07600;
}

.gdpr {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.back-home {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #333;
  text-decoration: underline;
}

.business-info {
  margin-top: 30px;
  font-size: 14px;
  color: #777;
  text-align: center;
}
