/* src/shared/styles/typography.css */
/**
 * Universal Typography System for on-co.de
 */

:host {
  font-family: var(
    --font-family-base,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif
  );
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-text-base);
  line-height: 1.2;
  scroll-margin-top: calc(var(--header-height, 56px) + var(--spacing-4, 1rem));
}

p {
  margin: 0;
  line-height: 1.5;
}

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

.text-base {
  font-size: var(--font-size-base);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

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

.text-brand {
  color: var(--color-brand);
}

.font-bold {
  font-weight: var(--font-weight-bold, 700);
}

.font-medium {
  font-weight: var(--font-weight-medium, 500);
}

.uppercase-tracking {
  text-transform: uppercase;
  letter-spacing: 1px;
}
