/* Professional custom styles to complement Tailwind */
.input {
  width: 100%;
  height: 2.75rem; /* 44px */
  padding: 0 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
  outline: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}
.input:focus {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.2);
  border-color: rgba(0,0,0,0.3);
  background: rgba(255,255,255,1);
}
.input:hover {
  border-color: rgba(0,0,0,0.2);
}
/* Header background change on scroll */
.scrolled {
  background: rgba(255,255,255,0.8) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* Lightbox */
#lightboxOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  backdrop-filter: blur(2px);
}
#lightboxOverlay img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
#lightboxClose {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Glassy Booking Bar */
.booking-bar-container {
  display: flex;
  justify-content: center;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.booking-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 15px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.booking-bar input,
.booking-bar button {
  padding: 10px 12px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
}

.booking-bar input {
  background: rgba(255, 255, 255, 0.8);
}

.booking-bar button {
  background: #ffd700;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.booking-bar button:hover {
  background: #ffcc00;
}

/* Classy Horizontal Booking Bar */
.booking-bar-container {
  display: flex;
  justify-content: center;
  margin-top: -2rem;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.booking-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-radius: 50px;
  padding: 15px 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.booking-bar .form-group {
  flex: 1;
  min-width: 140px;
}

.booking-bar input,
.booking-bar button {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.booking-bar input {
  background: rgba(255, 255, 255, 0.85);
}

.booking-bar input:focus {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 2px #ffd700;
}

.booking-bar button {
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.booking-bar button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Professional Full Width Booking Bar */
.booking-bar-section {
  width: 100%;
  background: transparent;
  margin: 0;
  padding: 20px 0;
}

.booking-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-bar .form-group {
  flex: 1;
  min-width: 140px;
}

.booking-bar input,
.booking-bar button {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 15px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.booking-bar input {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-bar input:focus {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
}

.booking-bar input:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.1);
}

.booking-bar button {
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.booking-bar button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffcc00, #ffa500);
}

.booking-bar button:active {
  transform: translateY(-1px);
}

/* Professional button styles */
.btn-primary {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2a2a2a, #444);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Professional card hover effects */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
