/* Reservation Section Styles */
.reservation-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f6f8f4 0%, #fff 100%);
}
.reservation-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.reservation-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fade-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.reservation-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: bold;
  color: #2d3a2e;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .reservation-title { font-size: 2.8rem; }
}
.reservation-title-underline {
  width: 6rem;
  height: 5px;
  background: #eab308;
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}
.reservation-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: #647060;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.reservation-form-outer {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
  padding: 2.5rem 1.5rem;
  animation: scale-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.reservation-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .reservation-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
  .reservation-form-group-full {
    grid-column: 1 / -1;
  }
}
.reservation-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.reservation-form-group label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #2d3a2e;
  margin-bottom: 0.2rem;
}
.reservation-form-group input,
.reservation-form-group select,
.reservation-form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: #f6f8f4;
  border: 1px solid #e5e7eb;
  border-radius: 0.7rem;
  color: #2d3a2e;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
}
.reservation-form-group input:focus,
.reservation-form-group select:focus,
.reservation-form-group textarea:focus {
  border: 1.5px solid #eab308;
  box-shadow: 0 0 0 2px #eab30833;
}
.reservation-btn {
  background: #eab308;
  color: #fff;
  padding: 1.1rem 3rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin-top: 0.5rem;
  box-shadow: 0 2px 12px rgba(234,179,8,0.08);
}
.reservation-btn:hover {
  background: #ca8a04;
  transform: scale(1.05);
}
.reservation-form-actions {
  text-align: center;
  margin-top: 1.5rem;
}
.reservation-note {
  font-family: 'Poppins', sans-serif;
  color: #647060;
  font-size: 0.98rem;
  margin-top: 1rem;
}
.reservation-toast {
  display: none;
  margin-top: 1.5rem;
  background: #2d3a2e;
  color: #eab308;
  padding: 1rem 1.5rem;
  border-radius: 0.7rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.reservation-toast i {
  margin-right: 0.5rem;
}
/* Animations */
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
