@charset "UTF-8";

/* =========================================================
   SCHEDULE page styles
   Loaded only on pages containing [donkwkm_schedule] shortcode
   ========================================================= */

/* --- Wrapper / header --- */
.tk-sched-wrap { background: #07091a; min-height: 100vh; color: #e8e8e8; }
.tk-sched-header { padding: 120px 48px 40px; border-bottom: 1px solid #1e2040; text-align: center; }
.tk-sched-header-label { font-size: 0.65em; letter-spacing: 0.35em; color: #555; text-transform: uppercase; margin-bottom: 16px; }
.tk-sched-header-title { font-size: 2.4em; letter-spacing: 0.15em; color: #fff; font-weight: 300; text-transform: uppercase; margin: 0; }
.tk-sched-loading { padding: 80px 48px; font-size: 0.75em; letter-spacing: 0.2em; color: #444; text-transform: uppercase; text-align: center; }

/* --- Timeline nav (horizontal month flow) --- */
.tk-timeline {
  padding: 10px 0 8px;
  border-bottom: 1px solid #1e2040;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  /* Sits right under the fixed tk-nav. Desktop keeps a tiny bit
     of breathing room, mobile snaps tight. */
  top: 36px;
  z-index: 9999;
  background: rgba(7,9,26,0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  scrollbar-width: none;
}
.tk-timeline::-webkit-scrollbar { display: none; }
.tk-timeline-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: min-content;
  position: relative;
  padding: 0 50vw;
}
.tk-timeline::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, #222 30%, #333 50%, #222 70%, transparent 95%);
  pointer-events: none;
}
.tk-tl-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 22px;
  text-decoration: none;
  transition: all 0.4s ease;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  min-width: 70px;
}
.tk-tl-year {
  font-size: 0.52em;
  letter-spacing: 0.25em;
  color: #444;
  text-transform: uppercase;
  margin-bottom: 2px;
  line-height: 1;
  transition: color 0.4s;
}
.tk-tl-month {
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #555;
  transition: all 0.4s;
  line-height: 1;
}
.tk-tl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  margin-top: 5px;
  transition: all 0.4s;
}
.tk-tl-item:hover .tk-tl-month { color: #aaa; }
.tk-tl-item:hover .tk-tl-dot { background: #666; }

/* Current (center, large) */
.tk-tl-item.current .tk-tl-year { font-size: 0.62em; color: #4a6fa5; }
.tk-tl-item.current .tk-tl-month {
  font-size: 0.9em;
  font-weight: 200;
  color: #fff;
  letter-spacing: 0.04em;
}
.tk-tl-item.current .tk-tl-dot {
  width: 10px;
  height: 10px;
  background: #4a6fa5;
  box-shadow: 0 0 12px rgba(74,111,165,0.6);
}

/* Near (1 away) */
.tk-tl-item.near .tk-tl-month { font-size: 1.05em; color: #888; font-weight: 300; }
.tk-tl-item.near .tk-tl-year { color: #555; }
.tk-tl-item.near .tk-tl-dot { background: #555; width: 7px; height: 7px; }

/* Far (2 away) */
.tk-tl-item.far .tk-tl-month { font-size: 0.8em; color: #555; }
.tk-tl-item.far .tk-tl-year { color: #333; }

/* --- Sections --- */
.tk-sched-section-label {
  padding: 50px 48px 16px;
  font-size: 0.62em;
  letter-spacing: 0.35em;
  color: #4a6fa5;
  text-transform: uppercase;
  border-bottom: 1px solid #1a1c36;
}
.tk-sched-section-label.past { color: #555; }

.tk-sched-post { border-bottom: 1px solid #1e2040; padding: 0 0 60px; }
.tk-sched-post-header { padding: 48px 48px 0; margin-bottom: 0; }
.tk-sched-post-title { font-size: 0.72em; letter-spacing: 0.3em; color: #556; text-transform: uppercase; margin: 0 0 4px; font-weight: normal; }
.tk-sched-post .sched-wrap { max-width: 760px !important; padding: 0 48px 0 !important; margin: 0 !important; }
.tk-sched-post .sched-event { padding-top: 40px; margin: 40px 0 0; }
.tk-sched-post .sched-venue { color: #e8e8e8 !important; }
.tk-sched-post .sched-date { color: #666 !important; }
.tk-sched-post .sched-info-label { color: #555 !important; font-size: 0.68em !important; letter-spacing: 0.15em !important; }
.tk-sched-post .sched-info-value { color: #ccc !important; }
.tk-sched-post .sched-flyer { max-width: 320px !important; opacity: 0.88; transition: opacity 0.2s; }
.tk-sched-post .sched-flyer:hover { opacity: 1; }
.tk-sched-past .sched-event-name { color: #777 !important; }
.tk-sched-past .sched-venue { color: #555 !important; }
.tk-sched-past .sched-info-value { color: #888 !important; }
.tk-sched-error { padding: 80px 48px; color: #555; font-size: 0.85em; letter-spacing: 0.1em; text-align: center; }

/* Past months toggle */
.tk-sched-past-toggle {
  display: block;
  width: calc(100% - 96px);
  margin: 40px 48px 20px;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid #1e2040;
  color: #4a6fa5;
  font-size: 0.62em;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.3s;
}
.tk-sched-past-toggle:hover { border-color: #4a6fa5; color: #6b8bc9; background: rgba(74,111,165,0.05); }
.tk-sched-past-container { display: none; }
.tk-sched-past-container.is-open { display: block; }

/* --- Mobile --- */
@media (max-width: 768px) {
  .tk-timeline { top: 36px; }
  .tk-sched-header { padding: 100px 24px 30px; }
  .tk-sched-header-title { font-size: 1.6em; }
  .tk-sched-post .sched-wrap { padding: 0 24px 0 !important; }
  .tk-sched-post-header { padding: 40px 24px 0; }
  .tk-sched-loading, .tk-sched-error { padding: 60px 24px; }
  .tk-sched-section-label { padding: 40px 24px 14px; }
  .tk-sched-past-toggle { width: calc(100% - 48px); margin: 30px 24px 14px; padding: 12px 16px; }
  .tk-timeline { padding: 16px 16px 12px; }
  .tk-tl-item { padding: 0 14px; min-width: 56px; }
  .tk-tl-item.current .tk-tl-month { font-size: 0.9em; }
  .tk-tl-item.near .tk-tl-month { font-size: 1.15em; }
  .tk-tl-item.far .tk-tl-month { font-size: 0.9em; }
}
