/* Calendar Section Styles */
.calendar {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f4f8 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.calendar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.calendar .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 1rem;
  font-family: "Junicode", serif;
}

.calendar-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.calendar-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.calendar-iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .calendar-container {
    max-width: 100%;
    margin: 0 1rem;
  }
  .calendar-iframe {
    height: 550px;
  }
}
@media (max-width: 768px) {
  .calendar {
    padding: 3rem 0;
  }
  .calendar .section-title {
    font-size: 2rem;
  }
  .calendar-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .calendar-container {
    margin: 0 0.5rem;
    border-radius: 8px;
  }
  .calendar-iframe {
    height: 450px;
  }
}
@media (max-width: 480px) {
  .calendar {
    padding: 2rem 0;
  }
  .calendar .section-title {
    font-size: 1.75rem;
  }
  .calendar-iframe {
    height: 400px;
  }
}
/* Wave Divider Styling for Calendar Section */
.calendar .wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.calendar .wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.calendar .wave-divider .shape-fill {
  fill: #ffffff;
}

/* Loading State for Calendar */
.calendar-container {
  position: relative;
}

.calendar-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 1.1rem;
  z-index: 1;
  pointer-events: none;
  background: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calendar-loading.hidden {
  display: none;
}

/* Schedules download panel */
.schedules-panel {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #eef3f7;
  background: #fbfeff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.schedules-info {
  flex: 1;
  min-width: 200px;
}

.schedules-panel h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: #1a365d;
  font-weight: 600;
}

.schedules-note {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.4;
}

.schedules-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.schedule-btn {
  background: #1a365d;
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(26, 54, 93, 0.12);
  transition: all 200ms ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.schedule-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
  background: #2c5282;
}

.schedule-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(26, 54, 93, 0.12);
}

@media (max-width: 768px) {
  .schedules-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }
  .schedules-buttons {
    width: 100%;
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .schedules-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .schedules-buttons {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }
  .schedule-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}

/*# sourceMappingURL=calendar.css.map */
