/* assets/css/program-schedule.css */

.program-banner {
  padding: 165px 0 95px;
  background:
    linear-gradient(135deg, rgba(7, 26, 47, 0.94), rgba(15, 118, 110, 0.9)),
    url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.program-banner::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: 8%;
  top: 75px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.28);
  animation: programFloat 6s infinite ease-in-out;
}

@keyframes programFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

.program-banner .container {
  position: relative;
  z-index: 2;
}

.program-badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--icsis-accent);
  font-weight: 900;
  margin-bottom: 18px;
}

.program-banner h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 14px;
}

.program-banner p {
  font-size: 22px;
  max-width: 760px;
  color: #dbeafe;
}

.program-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.08), transparent 34%),
    #f8fbfd;
}

.program-intro {
  max-width: 760px;
  margin: auto;
  color: #64748b;
  font-size: 17px;
}

.schedule-tabs .nav-pills {
  gap: 14px;
}

.schedule-tabs .nav-link {
  border-radius: 22px;
  padding: 16px 30px;
  background: #fff;
  color: var(--icsis-dark);
  font-weight: 900;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid #e4eaf1;
  transition: 0.3s ease;
}

.schedule-tabs .nav-link span {
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}

.schedule-tabs .nav-link.active,
.schedule-tabs .nav-link:hover {
  background: var(--icsis-gradient);
  color: #fff;
  transform: translateY(-5px);
}

.schedule-tabs .nav-link.active span,
.schedule-tabs .nav-link:hover span {
  color: #e0f2fe;
}

.schedule-card {
  background: #fff;
  border: 1px solid #e4eaf1;
  border-radius: 32px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
  animation: scheduleFade 0.45s ease;
}

@keyframes scheduleFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.schedule-card h3 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 30px;
}

.schedule-card h3 i {
  color: var(--icsis-primary);
  margin-right: 8px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 22px;
  border-radius: 24px;
  background: #f8fbfd;
  margin-bottom: 18px;
  border-left: 6px solid var(--icsis-primary);
  transition: 0.3s ease;
}

.schedule-item:hover {
  transform: translateX(8px);
  background: rgba(15, 118, 110, 0.08);
}

.schedule-item .time {
  font-weight: 900;
  color: var(--icsis-primary);
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.schedule-item .details h4 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 6px;
}

.schedule-item .details p {
  color: #64748b;
  font-weight: 600;
  margin: 0;
}

.schedule-item.break {
  border-left-color: var(--icsis-accent);
  background: #fff7ed;
}

.schedule-item.break .time {
  color: #b45309;
}

.schedule-item.valedictory {
  background: var(--icsis-gradient-dark);
  border-left-color: var(--icsis-accent);
}

.schedule-item.valedictory .time {
  color: var(--icsis-primary);
}

.schedule-item.valedictory .details h4,
.schedule-item.valedictory .details p {
  color: #fff;
}

.program-note {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.09);
  border: 1px solid #e4eaf1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.program-note h3 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 8px;
}

.program-note p {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 991px) {
  .program-banner {
    padding: 140px 0 75px;
    text-align: center;
  }

  .program-banner p {
    margin-left: auto;
    margin-right: auto;
  }

  .program-section {
    padding: 70px 0;
  }

  .schedule-item {
    grid-template-columns: 1fr;
  }

  .schedule-item:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 575px) {
  .program-banner {
    padding: 125px 0 60px;
  }

  .program-banner h1 {
    font-size: 38px;
  }

  .program-banner p {
    font-size: 18px;
  }

  .program-section {
    padding: 55px 0;
  }

  .schedule-tabs .nav-link {
    width: 100%;
  }

  .schedule-tabs .nav-item {
    width: 100%;
  }

  .schedule-card,
  .program-note {
    padding: 24px;
  }

  .program-note {
    text-align: center;
    justify-content: center;
  }
}