/* ==========================================================================
   Materiautec Theme - Global Overrides
   Typographie, body, liens, selections
   ========================================================================== */

/* --- Typographie globale --- */
body,
html {
  font-family: 'Raleway', 'Helvetica Neue', -apple-system, sans-serif;
  font-size: 16px;
  color: black;
  background-color: var(--mt-bg-root);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Helvetica Neue', -apple-system, sans-serif;
  color: #046632;
  font-weight: 700;
}
.hero-content  h1 {
   color: white;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p, li, td, th, label, span, div {
  font-family: 'Raleway', 'Helvetica Neue', -apple-system, sans-serif;
}

/* --- Liens --- */
a {
  color: var(--mt-text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--mt-secondary);
  text-decoration: none;
}

/* --- Selection --- */
::selection {
  background-color: var(--mt-secondary);
  color: var(--mt-text-contrast);
}

/* --- Focus accessible --- */
*:focus-visible {
  outline: 2px solid var(--mt-secondary);
  outline-offset: 2px;
}
