.booking-hero {
  background: url('../assets/menu/book-hero.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f5f0ec;
  font-family: 'Cormorant Garamond', serif;
  padding: 0 1rem;
}

.booking-hero h1 {
  font-size: 3rem;
  max-width: 700px;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeInUp 2s ease-out forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-form {
  max-width: 650px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fffaf6;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.booking-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  color: #8a6945;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.5rem;
  border: 1px solid #ddd1c3;
  border-radius: 5px;
  background: #fefaf7;
  font-family: 'Outfit', sans-serif;
}

.booking-form button {
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  background: #a67c52;
  color: #fffaf6;
  border: none;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form button:hover {
  background: #8a6945;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #7a6c64;
  border-top: 1px solid #e4d9ce;
  background: #fdf9f6;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-content h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.modal-content button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  background: #111;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}
/* Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      justify-content: center; align-items: center;
    }

    .modal-content {
      background: #fff;
      color: #222;
      padding: 2rem;
      border-radius: 12px;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      font-family: 'Outfit', sans-serif;
    }

    .modal-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .modal-content button {
      margin-top: 1.5rem;
      padding: 0.6rem 1.5rem;
      font-size: 1rem;
      background-color: #222;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .modal-content button:hover {
      background-color: #444;
    }