/* ==========================================================================
   02-typography.css — TalentoHQ typography:
   Nunito for headings/UI, Titillium Web for body, pink accent italics.
   ========================================================================== */

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--fg-3);
  background: var(--bg-app);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-violant);
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--font-size-h1);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

@media (min-width: 1280px) {
  h1 {
    font-size: 4.5rem;       /* 72px — TH desktop jump */
    line-height: 1.05;
  }
}

h2 {
  font-size: var(--font-size-h2);
  letter-spacing: -0.01em;
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  color: #1f2937;
}

h4, h5, h6 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  color: #1f2937;
}

p {
  font-family: var(--font-body);
  color: var(--fg-3);
  max-width: 65ch;
}

.body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--fg-3);
}

.lead {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: #1f2937;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  font-size: 0.75rem;                  /* 12px */
  letter-spacing: var(--letter-spacing-widest);
  text-transform: uppercase;
  color: var(--color-pink-thq);
}

.accent {
  color: var(--color-pink-thq);
}

em {
  font-style: italic;
  color: var(--color-pink-thq);
}

strong {
  font-weight: var(--font-weight-bold);
}

a {
  color: var(--color-dark-violant);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-pink-thq);
}

code, pre, .mono {
  font-family: var(--font-mono);
  font-size: 0.9375em;
}

.text-sm { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }
.text-center { text-align: center; }
