/* ═══════════════════════════════════════════════════════
   typography.css — font utilities and text classes
   ATK Portfolio Site
════════════════════════════════════════════════════════ */

/* ── Font families (already imported via global.css @import) ── */

/* ── Utility classes ── */

.font-rammetto {
  font-family: 'Rammetto One', cursive;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

.font-noto {
  font-family: 'Noto Sans SC', sans-serif;
}

/* ── Text sizes ── */

.text-xl {
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.1;
}

.text-lg {
  font-size: clamp(20px, 2.5vw, 36px);
  line-height: 1.2;
}

.text-md {
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 1.6;
}

.text-sm {
  font-size: 13px;
  line-height: 1.7;
}

.text-xs {
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Text colours ── */

.text-white   { color: var(--text); }
.text-cream   { color: var(--cream); }
.text-dim     { color: rgba(255,255,255,0.5); }

/* ── Weight utilities ── */

.fw-black  { font-weight: 900; }
.fw-bold   { font-weight: 700; }
.fw-reg    { font-weight: 400; }
.fw-italic { font-style: italic; }

/* ── Heading styles used across sections ── */

/* Bilingual heading pattern: EN + 中 */
.heading-en {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: inherit;
  letter-spacing: -0.02em;
}

.heading-zh {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 700;
  font-size: inherit;
}

.heading-divider {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  opacity: 0.5;
  margin: 0 4px;
}

/* Chinese text helper */
.zh {
  font-family: 'Noto Sans SC', sans-serif;
}

/* ── Setlist / track listing ── */
.setlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  counter-reset: track;
  padding: 0;
}

.setlist li {
  font-size: 12px;
  color: var(--cream);
  line-height: 1.6;
  padding: 2px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  counter-increment: track;
}

.setlist li em {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  color: var(--text);
}

.setlist li .zh {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 11px;
  opacity: 0.7;
}

/* ── Profile table ── */
.profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.profile-table td {
  padding: 8px 12px 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  vertical-align: top;
  color: var(--cream);
}

.profile-table td:first-child {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  padding-right: 20px;
  min-width: 60px;
}

/* ── Roles table ── */
.roles-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.roles-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dim);
}

.roles-col ul li {
  font-size: 13px;
  color: var(--cream);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.5;
}

.roles-col ul li em {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  color: var(--text);
}

.roles-col ul li .zh {
  opacity: 0.65;
  font-size: 12px;
}
