/* =============================================
   HERYERPARKOUR — Schedule Section
   İnteraktif tablo, renkli etiketler
   ============================================= */

.sched-section {
  background: var(--bg-secondary);
  padding: 160px 0 120px;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  margin-top: -1px;
}

.sched-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 15, 15, 0.6) 30%, rgba(15, 15, 15, 0.2) 60%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.sched-section > .container { position: relative; z-index: 1; }
.sched-section .sec-label { color: var(--accent); }
.sched-section .sec-sub { color: var(--text-secondary); }

/* Title overrides */
.sched-title .letter {
  color: var(--text-primary) !important;
  -webkit-text-fill-color: var(--text-primary) !important;
}

.sched-title .letter.stroke-letter {
  -webkit-text-stroke: 2px var(--text-primary) !important;
  -webkit-text-fill-color: transparent !important;
}

.sched-title .letter.accent-letter {
  color: var(--accent) !important;
  -webkit-text-fill-color: var(--accent) !important;
}

.sched-title .letter.accent-letter.landed:hover {
  color: white !important;
  -webkit-text-fill-color: white !important;
  filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.2));
}

/* Table wrapper */
.sched-wrap {
  background: white;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out);
  clip-path: polygon(0 0, 100% 1%, 99% 100%, 1% 99%);
}

.sched-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Table */
.sched-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.sched-table th {
  background: var(--bg-dark);
  padding: 16px;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-on-dark-muted);
  text-align: center;
}

.sched-table th:first-child {
  text-align: left;
  padding-left: 24px;
  color: var(--accent);
}

.sched-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.sched-table td:first-child {
  text-align: left;
  padding-left: 24px;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sched-table tr:last-child td { border-bottom: none; }
.sched-table tbody tr { transition: background var(--duration-fast); }
.sched-table tbody tr:hover { background: rgba(255, 77, 0, 0.02); }

/* Note */
.sched-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 15px;
}

.sched-note strong { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sched-section { padding: 80px 0; }
  .sched-table { font-size: 12px; }
  .sched-table th,
  .sched-table td { padding: 10px 8px; }
}
