/* ========== SCHEDULE SECTION ========== */
.schedule-section {
  background: transparent;
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(170, 0, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  padding: 1.2rem 2rem;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 4px solid #AA00FF;
  cursor: pointer;
}

.timeline-item:hover {
  transform: translateX(10px);
  background: rgba(0, 204, 255, 0.1);
  border-left-color: #00CCFF;
  box-shadow: 0 5px 20px rgba(0, 204, 255, 0.1);
}

.timeline-time {
  min-width: 140px;
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1rem;
}

.timeline-time i {
  margin-right: 0.5rem;
  color: #AA88FF;
}

.timeline-event {
  flex: 1;
  font-weight: 500;
  color: #ffffff;
}

.timeline-location {
  font-size: 0.8rem;
  color: #AA88FF;
  margin-top: 0.2rem;
}

.timeline-location i {
  margin-right: 0.3rem;
  font-size: 0.7rem;
}

/* Keep event text readable without hover in both themes */
body.light-theme .timeline-event {
  color: #1A1A2E;
}

body.light-theme .timeline-location {
  color: #5A4A8A;
}

body.dark-theme .timeline-event {
  color: #ffffff;
}

body.dark-theme .timeline-location {
  color: #AA88FF;
}

/* Timeline Animation on Scroll */
.timeline-item {
  opacity: 0;
  transform: translateX(-20px);
  animation: timelineFadeIn 0.5s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }
.timeline-item:nth-child(10) { animation-delay: 1s; }
.timeline-item:nth-child(11) { animation-delay: 1.1s; }

@keyframes timelineFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.2rem 1.5rem;
  }
  
  .timeline-time {
    min-width: auto;
    font-size: 0.9rem;
  }
  
  .timeline-event {
    font-size: 0.9rem;
  }
}