﻿@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;600;700&display=swap');

:root {
  --s-navy:    #0d1f3c;
  --s-gold:    #c9a84c;
  --s-gold-lt: #e8c97a;
  --s-cream:   #fdf8ef;
  --s-red:     #8b1a1a;
  --s-white:   #ffffff;
  --s-muted:   #6b7280;
  --s-border:  rgba(13,31,60,.10);
  --s-radius:  16px;
  --s-shadow:  0 4px 16px rgba(13,31,60,.10);
}

/* ── HERO BAND ── */
.sched-hero {
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, var(--s-navy) 0%, #1a3a6b 65%, #0d2d55 100%);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sched-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(201,168,76,.22) 0%, transparent 65%);
  pointer-events: none;
}
.sched-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--s-gold), transparent);
}

.sched-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px; letter-spacing: .06em;
  color: var(--s-gold-lt);
  margin-bottom: 20px;
  animation: sFadeUp .6s ease both;
}

.sched-hero h1 {
  font-family: 'Prompt', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--s-white);
  margin: 0 0 8px;
  line-height: 1.35;
  animation: sFadeUp .7s .1s ease both;
}
.sched-hero h1 span { color: var(--s-gold); }

.sched-hero p {
  font-family: 'Prompt', sans-serif;
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255,255,255,.6);
  animation: sFadeUp .7s .2s ease both;
}

/* ── WRAP ── */
.sched-wrap {
  font-family: 'Prompt', sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 72px;
  background: var(--s-cream);
}

/* ── INTRO BOX ── */
.sched-intro {
  background: var(--s-white);
  border-radius: var(--s-radius);
  box-shadow: var(--s-shadow);
  padding: 28px;
  margin-bottom: 36px;
  border-left: 4px solid var(--s-gold);
  animation: sFadeUp .6s ease both;
}
.sched-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: #374151;
  margin: 0;
}
.sched-intro strong { color: var(--s-red); font-weight: 700; }

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--s-navy), var(--s-gold), var(--s-red));
}

.timeline-item {
  margin-bottom: 32px;
  padding-left: 60px;
  position: relative;
  animation: sFadeUp .65s ease both;
}

.timeline-item:nth-child(1) { animation-delay: .05s }
.timeline-item:nth-child(2) { animation-delay: .10s }
.timeline-item:nth-child(3) { animation-delay: .15s }

.timeline-dot {
  position: absolute;
  left: -10px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--s-white);
  border: 3px solid var(--s-navy);
  z-index: 10;
  transition: all .3s;
}
.timeline-item:hover .timeline-dot {
  background: var(--s-gold);
  border-color: var(--s-navy);
  box-shadow: 0 0 12px rgba(201,168,76,.4);
  transform: scale(1.15);
}

/* ── SCHEDULE CARD ── */
.schedule-card {
  background: var(--s-white);
  border-radius: var(--s-radius);
  box-shadow: var(--s-shadow);
  padding: 24px;
  border-top: 3px solid var(--s-navy);
  transition: all .3s;
}
.timeline-item:hover .schedule-card {
  box-shadow: 0 8px 32px rgba(13,31,60,.15);
  transform: translateY(-2px);
}

.schedule-date {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
}
.schedule-date .icon {
  font-size: 18px;
}
.schedule-date .text {
  font-size: 18px;
  color: var(--s-navy);
}
.schedule-date .time {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--s-cream);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 18px;
  margin-left: auto;
  color: var(--s-red);
  font-weight: 700;
}

.schedule-title {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--s-red);
  margin: 8px 0 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--s-border);
}

.schedule-activities {
  margin-top: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-activities li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}
.schedule-activities li .bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--s-gold);
  margin-top: 8px; flex-shrink: 0;
}

/* ── REMARK BOX ── */
.remark-section {
  background: var(--s-white);
  border-radius: var(--s-radius);
  box-shadow: var(--s-shadow);
  padding: 28px;
  margin-top: 36px;
  border-left: 4px solid var(--s-gold);
  animation: sFadeUp .7s .2s ease both;
}

.remark-section h2 {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--s-navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--s-gold);
  display: flex; align-items: center; gap: 8px;
}
.remark-section h2::before {
  content: '📋';
  font-size: 16px;
}

.remark-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.remark-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f3f0e8;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}
.remark-list li:last-child { border-bottom: none; }
.remark-list li .num {
  min-width: 20px;
  background: var(--s-navy);
  color: var(--s-gold);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  height: 20px;
}

.remark-list li strong { color: var(--s-red); font-weight: 700; }
.remark-list em { color: var(--s-red); font-style: normal; font-weight: 700; }

/* ── CONTACT CHIP ── */
.contact-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f0f4ff;
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: 14px;
  font-size: 16px;
  color: #1a3a6b;
  font-weight: 600;
}
.contact-chip a {
  color: inherit !important;
  text-decoration: none !important;
  font-weight: 700;
}
.contact-chip a:hover { text-decoration: underline !important; }

/* ── ANIMATIONS ── */
@keyframes sFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .sched-wrap { padding: 28px 16px 56px; }
  .sched-intro,
  .remark-section { padding: 20px 18px; }
  .timeline::before { left: 4px; }
  .timeline-item { padding-left: 48px; }
  .timeline-dot { left: -4px; }
  .schedule-date .time { display: none; }
}
