/* General styles for the booking form section */
.booking-form-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.booking-form-section h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.booking-form-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  /* Gold color */
}

/* Form styling */
.booking-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  /* Ensure padding doesn't increase width */
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4af37;
  /* Gold on focus */
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  resize: vertical;
  /* Allow vertical resizing */
  min-height: 100px;
}

/* WhatsApp button styling */
.btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  width: auto;
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  /* Darker green on hover */
  transform: translateY(-2px);
}

/* Hero section for reservar.html */
.hero-reservar {
  background: url("/placeholder.svg?height=800&width=1920") no-repeat center center / cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  /* Adjust height as needed */
  position: relative;
}

.hero-reservar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* Dark overlay */
}

.hero-reservar .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-reservar h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-reservar p {
  font-size: 1.4em;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-form {
    padding: 25px;
  }

  .booking-form-section h2 {
    font-size: 2em;
  }

  .hero-reservar h1 {
    font-size: 2.5em;
  }

  .hero-reservar p {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .booking-form {
    padding: 15px;
  }

  .form-group label {
    font-size: 1em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9em;
  }

  .btn-whatsapp {
    padding: 12px 20px;
    font-size: 1em;
  }

  .hero-reservar h1 {
    font-size: 2em;
  }

  .hero-reservar p {
    font-size: 1em;
  }
}