/* =============================================================
   TOUR.CSS — Tour Dates Page — THE GENIUS BOY
   ============================================================= */

.page-tour {
  background: var(--color-bg);
}

.tour-hero {
  background: linear-gradient(180deg, rgba(0,212,255,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--glass-border);
}

/* ── Section headings ───────────────────────────────────────── */
.tour-section-heading {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white-60);
  margin-bottom: 24px;
}

.tour-section-heading--muted {
  color: var(--color-white-40);
}

/* ── Table wrap ─────────────────────────────────────────────── */
.tour-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Table ──────────────────────────────────────────────────── */
.tour-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.tour-table thead tr {
  border-bottom: 1px solid var(--glass-border);
}

.tour-table thead th {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 18px 20px;
  text-align: left;
  white-space: nowrap;
  font-weight: 600;
}

.tour-table thead th:last-child {
  text-align: right;
}

.tour-row {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.tour-row.even  { background: rgba(255,255,255,0.01); }
.tour-row.odd   { background: transparent; }
.tour-row:hover { background: rgba(0,212,255,0.05); }

.tour-table td {
  padding: 20px 20px;
  vertical-align: middle;
}

/* Date cell */
.tour-date {
  white-space: nowrap;
}

.tour-date .date-day {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.tour-date .date-month {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--color-white-80);
  display: block;
  margin-top: 2px;
}

.tour-date .date-year {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--color-white-40);
  display: block;
}

.tour-date--past {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-white-40);
}

/* Venue / City / Country */
.tour-venue {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
}

.tour-city {
  font-size: 14px;
  color: var(--color-white-70, rgba(255,255,255,0.7));
}

.tour-country {
  font-size: 12px;
  color: var(--color-white-40);
  letter-spacing: 0.05em;
}

/* Tickets cell */
.tour-tickets {
  text-align: right;
  white-space: nowrap;
}

.tickets-tba {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white-40);
}

/* Past table dimmed */
.tour-table--past .tour-venue,
.tour-table--past .tour-city {
  color: var(--color-white-40);
}

.tour-table--past .tour-row:hover {
  background: rgba(255,255,255,0.02);
}

/* ── Empty state ────────────────────────────────────────────── */
.tour-empty {
  padding: 60px 40px;
  text-align: center;
}

.tour-empty-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white-80);
  margin-bottom: 10px;
}

.tour-empty-sub {
  font-family: var(--font-prose);
  font-size: 14px;
  color: var(--color-white-40);
}

/* ── Sections spacing ───────────────────────────────────────── */
.tour-upcoming { padding-bottom: 0; }
.tour-past { opacity: 0.7; }

/* ── Button small ───────────────────────────────────────────── */
.btn-sm {
  font-size: 10px;
  padding: 9px 20px;
  letter-spacing: 0.18em;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .tour-table thead th:nth-child(4),
  .tour-table td:nth-child(4) { display: none; }

  .tour-table td { padding: 16px 12px; }
  .tour-date .date-day { font-size: 18px; }
  .tour-venue { font-size: 14px; }
}

@media (max-width: 480px) {
  .tour-table thead th:nth-child(3),
  .tour-table td:nth-child(3) { display: none; }
}
