/* Custom Booking Page Styles */
:root {
  --booking-primary-color: #3498db;
  --booking-secondary-color: #f8f9fa;
  --booking-text-color: #343a40;
  --booking-light-bg: #f8f9fa;
  --booking-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --booking-border-radius: 8px;
}

.dark {
  --booking-primary-color: #64ffda;
  --booking-secondary-color: #212529;
  --booking-text-color: #e4e6eb;
  --booking-light-bg: #212529;
  --booking-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Main Container */
.booking-container {
  padding: 3rem 0;
}

/* Header Styles */
.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--booking-text-color);
}

.booking-header .subtitle {
  font-size: 1.2rem;
  color: var(--secondary-text-color);
  margin-bottom: 1.5rem;
}

/* Content Styles */
.booking-content {
  margin-bottom: 2rem;
}

.booking-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--booking-text-color);
}

.booking-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Expectations Box */
.booking-expectations {
  background-color: rgba(var(--primary-color-rgb), 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.booking-expectations h3 {
  margin-bottom: 1rem;
}

.booking-expectations ul {
  list-style-type: none;
  padding-left: 0;
}

.booking-expectations li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.booking-expectations li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Calendar Styles */
.booking-calendar {
  padding: 1rem;
  background-color: var(--background-color, #ffffff);
  border-radius: 10px;
  margin-bottom: 3rem;
}

.dark .booking-calendar {
  background-color: var(--background-color, #18191a);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-iframe {
  transition: all 0.3s ease;
  background-color: #ffffff;
  border: 0; 
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(119, 119, 119, 0.9);
}

.dark .calendar-iframe {
  filter: contrast(0.9) brightness(0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Add custom CSS to inject into the iframe for dark mode */
@media (prefers-color-scheme: dark) {
  .calendar-iframe {
    filter: contrast(0.9) brightness(0.9);
  }
}

/* Fallback Section */
.booking-fallback {
  text-align: center;
  padding: 2.5rem;
  background-color: var(--booking-light-bg);
  border-radius: var(--booking-border-radius);
  box-shadow: var(--booking-shadow);
}

.booking-fallback h2 {
  margin-bottom: 1.2rem;
  color: var(--booking-text-color);
}

.booking-fallback .btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background-color: var(--booking-primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.booking-fallback .btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Button styles */
.btn-primary {
  background-color: var(--primary-color, #007bff);
  border-color: var(--primary-color, #007bff);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dark .btn-primary {
  background-color: var(--primary-color, #64ffda);
  border-color: var(--primary-color, #64ffda);
  color: #212529;
}

/* Scroll to top button */
#topScroll {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#topScroll:hover {
  background-color: var(--primary-color);
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .booking-header h1 {
    font-size: 2rem;
  }
  
  .booking-content h2 {
    font-size: 1.5rem;
  }
  
  .booking-expectations {
    padding: 1.5rem;
  }
  
  .booking-fallback {
    padding: 1.8rem;
  }
}
