/* static/css/pages/schedule.css */
/* Styles for the schedule page */

/* Compact Header */
.compact-header {
  padding: var(--space-lg) 0;
  background: var(--gradient-hero);
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  text-align: center;
}

.compact-header h1 {
  margin-bottom: 0;
  color: var(--text-white);
}

/* Schedule Section */
.schedule-section {
  padding: var(--space-lg) 0 var(--space-xxl);
}

.schedule-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Brief Introduction */
.schedule-intro {
  text-align: center;
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Booking Container */
.booking-container {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.booking-container h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
  text-align: center;
}

/* Calendar Widget */
.calendar-widget {
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 500px; /* Adjust based on actual widget height */
}

/* Additional Details Section */
.schedule-details {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-md);
}

.schedule-details h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

.expectation-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.expectation-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: var(--space-sm);
}

.expectation-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .expectation-list {
    grid-template-columns: 1fr;
  }
  
  .schedule-intro p {
    font-size: 1rem;
  }
  
  .booking-container {
    padding: var(--space-md);
  }
  
  .schedule-details {
    padding: var(--space-md);
  }
}