/* ==========================================================================
   Base Typography
   Default typography styles for the site
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base Elements
   -------------------------------------------------------------------------- */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text-primary);
  background-color: var(--color-background);
  letter-spacing: 0.01em;
  overflow-x: hidden;
  overflow-wrap: break-word; /* Ensure text doesn't cause horizontal overflow */
}

/* --------------------------------------------------------------------------
   Headings
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.015em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word; /* Support for older browsers */
}

/* --------------------------------------------------------------------------
   Links
   -------------------------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--color-accent-primary);
  outline-offset: 4px;
}
