  /* Modal Base */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content Box */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}

.booking-form .form-group {
  margin-bottom: 1rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
  outline: none;
}

.booking-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

/* .book-btn {
  background: #4a90e2;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
} */


@media (max-width: 768px) {
  .logo-img {
    height: 60px; /* or any value larger than 40px for mobile */
  }
}

.book-btn:hover {
  background: #357ab8;
}

.modal-content {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
