/* Atfinity brand palette — sourced from atfinity.swiss CSS variables.
   royal-blue #2f52d2 (primary), dark-blue #051d76, coral-red #ff4e5e (accent),
   sky-blue #5e8be3, black #121316. */

/* Headlines in Urbanist (matches the website); body/code use IBM Plex (set in
   mkdocs.yml). Google Fonts loads IBM Plex automatically; Urbanist is pulled in
   here for the headings. */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@600;700;800&display=swap");

.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4,
.md-typeset h5,
.md-typeset h6 {
  font-family: "Urbanist", -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* Website hero look: big, heavy, tight, full-contrast (Material otherwise renders
   h1 in a muted grey, which reads flat). */
.md-typeset h1 {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--md-default-fg-color);
  margin-bottom: 0.6em;
}
.md-typeset h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

:root,
[data-md-color-scheme="default"] {
  --md-primary-fg-color:        #051d76;  /* dark brand navy — header */
  --md-primary-fg-color--light: #2f52d2;
  --md-primary-fg-color--dark:  #041259;
  --md-primary-bg-color:        #ffffff;  /* header text/logo on blue */
  --md-primary-bg-color--light: rgba(255, 255, 255, 0.7);

  --md-accent-fg-color:         #2f52d2;  /* royal brand blue — links hover, search highlight */
  --md-accent-fg-color--transparent: rgba(47, 82, 210, 0.1);

  --md-typeset-a-color:         #2f52d2;  /* body links */
}

[data-md-color-scheme="slate"] {
  --md-primary-fg-color:        #051d76;
  --md-primary-fg-color--light: #2f52d2;
  --md-primary-fg-color--dark:  #041259;
  --md-primary-bg-color:        #ffffff;
  --md-primary-bg-color--light: rgba(255, 255, 255, 0.7);

  --md-accent-fg-color:         #92bdf1;  /* light brand blue for dark bg contrast */
  --md-accent-fg-color--transparent: rgba(146, 189, 241, 0.1);

  --md-typeset-a-color:         #7fa2ec;  /* lighter blue link on dark bg */

  /* deep brand blue tint for the dark background */
  --md-default-bg-color:        #121316;
}
