/* Dark Theme for Lounge Reservations - Matches membership.css styling */

.lounge-reservation-main {
  max-width: 700px !important;
  margin: 2rem auto !important;
  padding: 2.5rem !important;
  background: rgba(25, 25, 35, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  color: #f5f5f5 !important;
  animation: fadeIn 0.3s ease-in;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.lounge-reservation-hero {
  padding-bottom: 2rem !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08) !important;
}

.lounge-reservation-hero h1 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #E1B929 !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 2px 10px rgba(225, 185, 41, 0.3) !important;
}

.lounge-reservation-hero .lead {
  font-size: 1.1rem !important;
  color: #b3b3cc !important;
  line-height: 1.6 !important;
}

.lounge-reservation-success {
  background: rgba(41, 163, 82, 0.15) !important;
  border: 1px solid #29a352 !important;
  color: #f5f5f5 !important;
}

.lounge-reservation-success h2 {
  color: #29a352 !important;
  font-size: 1.8rem !important;
}

.lounge-reservation-form-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem !important;
  width: 100% !important;
}

@media (max-width: 600px) {
  .lounge-reservation-form-row {
    grid-template-columns: 1fr !important;
  }
}

.lounge-reservation-form label {
  color: #b3b3cc !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.lounge-reservation-form input[type="text"],
.lounge-reservation-form input[type="email"],
.lounge-reservation-form input[type="date"],
.lounge-reservation-form input[type="time"],
.lounge-reservation-form input[type="number"],
.lounge-reservation-form textarea {
  padding: 0.875rem 1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #f5f5f5 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.lounge-reservation-form-group {
  width: 100% !important;
  box-sizing: border-box !important;
}

.lounge-reservation-form input:focus,
.lounge-reservation-form textarea:focus {
  border-color: #E1B929 !important;
  background: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 0 0 3px rgba(225, 185, 41, 0.1) !important;
  outline: none !important;
}

.lounge-reservation-form textarea {
  min-height: 100px !important;
}

.lounge-reservation-form button,
.lounge-reservation-form .btn-primary {
  background: linear-gradient(135deg, #E1B929 0%, #d4a621 100%) !important;
  color: #12121f !important;
  padding: 1rem 2rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(225, 185, 41, 0.3) !important;
  width: 100% !important;
}

.lounge-reservation-form button:hover,
.lounge-reservation-form button:focus {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(225, 185, 41, 0.4) !important;
  background: linear-gradient(135deg, #d4a621 0%, #E1B929 100%) !important;
}

.lounge-reservation-alert-danger {
  background: rgba(231, 76, 60, 0.15) !important;
  color: #e74c3c !important;
  border: 1px solid #e74c3c !important;
}

.lounge-reservation-note {
  color: #888 !important;
}

.lounge-reservation-note a {
  color: #78A1BB !important;
  font-weight: 600 !important;
}

.lounge-reservation-note a:hover {
  color: #E1B929 !important;
}

@media (max-width: 700px) {
  .lounge-reservation-main {
    padding: 1.5rem !important;
    margin: 1rem !important;
    max-width: calc(100% - 2rem) !important;
  }
  
  .lounge-reservation-hero h1 {
    font-size: 2rem !important;
  }
  
  .lounge-reservation-form-row {
    grid-template-columns: 1fr !important;
  }
  
  .lounge-reservation-form input[type="text"],
  .lounge-reservation-form input[type="email"],
  .lounge-reservation-form input[type="date"],
  .lounge-reservation-form input[type="time"],
  .lounge-reservation-form input[type="number"],
  .lounge-reservation-form textarea {
    width: 100% !important;
    max-width: 100% !important;
  }
}

