/* ===============================
   ComposeForge Docs – Brand Theme
   =============================== */


/* Light mode */
body[data-md-color-scheme="default"] {
  --md-primary-fg-color: #262626;
  --md-accent-fg-color:  #f07500;
  --md-default-bg-color: #f5f5f5;
  --md-default-fg-color: #262626;
}

/* Dark mode */
body[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #262626;
  --md-accent-fg-color:  #f07500;
  --md-default-bg-color: #111111;
  --md-default-fg-color: #ffffff;
}

/* =========================
   Dark mode link behavior
   - normal: white
   - hover/focus/active: accent
   ========================= */

/* Body/content links */
body[data-md-color-scheme="slate"] .md-typeset a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.35);
  text-underline-offset: 0.15em;
}

body[data-md-color-scheme="slate"] .md-typeset a:hover,
body[data-md-color-scheme="slate"] .md-typeset a:focus,
body[data-md-color-scheme="slate"] .md-typeset a:active {
  color: #f07500;
  text-decoration-color: #f07500;
}

/* Nav + TOC: keep normal readable, only active/hover accent */
body[data-md-color-scheme="slate"] .md-nav__link,
body[data-md-color-scheme="slate"] .md-toc__link {
  color: inherit;
}

body[data-md-color-scheme="slate"] .md-nav__link:hover,
body[data-md-color-scheme="slate"] .md-nav__link:focus,
body[data-md-color-scheme="slate"] .md-toc__link:hover,
body[data-md-color-scheme="slate"] .md-toc__link:focus {
  color: #f07500;
}

body[data-md-color-scheme="slate"] .md-nav__link--active,
body[data-md-color-scheme="slate"] .md-toc__link--active {
  color: #f07500;
}
