/*
  DreamEvent Design System — Tipografía
  ======================================
  Escala tipográfica única. Body: Manrope · Headings: Poppins.
  Usar las clases .text-* en lugar de estilos inline o CSS por página.
*/

body {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6,
.text-display, .text-h1, .text-h2, .text-h3, .text-h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

.text-display {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
}

.text-h1 {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
}

.text-h2 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.text-h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.text-h4 {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
}

.text-body {
  font-size: 1rem;
  line-height: 1.65;
}

.text-lead {
  font-size: 1.12rem;
  line-height: 1.65;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.55;
}

.text-caption {
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.text-button {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.text-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-muted {
  color: var(--color-muted) !important;
}

.text-strong {
  color: var(--color-text) !important;
  font-weight: 700;
}
