/* Typography - matching PythonStarter main project */
:root {
  --md-text-font: "Poppins", sans-serif;
  --md-code-font: monospace;
}

body,
input,
button,
select,
textarea {
  font-family: "Poppins", sans-serif;
}

code,
kbd,
pre {
  font-family: monospace;
}

.md-header__title,
.md-nav,
.md-tabs__link,
.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4,
.md-typeset h5,
.md-typeset h6 {
  font-family: "Poppins", sans-serif;
}

.md-typeset h1,
.md-typeset h2 {
  font-weight: bold;
}

.md-typeset h2 {
  font-size: 22px;
}

.md-typeset p {
  font-size: 18px;
}

.md-typeset ol li,
.md-typeset ul li {
  font-size: 18px;
}

/* Navigation text size to match body copy */
.md-header__title,
.md-tabs__link,
.md-nav,
.md-nav__link,
.md-ellipsis {
  font-size: 17px;
}

/* Custom styling to match PythonStarter main project */

/* Dark theme background - matching DaisyUI dark theme exactly */
[data-md-color-scheme="slate"] {
  /* DaisyUI dark theme: --b1: 25.3267% 0.015896 252.417568 */
  --md-default-bg-color: oklch(25.3267% 0.015896 252.417568);
  --md-default-bg-color--light: oklch(23.2607% 0.013807 253.100675);
}

/* Header background - using base-200 equivalent */
[data-md-color-scheme="slate"] .md-header {
  background-color: oklch(23.2607% 0.013807 253.100675);
}

/* Sidebar background */
[data-md-color-scheme="slate"] .md-sidebar {
  background-color: oklch(25.3267% 0.015896 252.417568);
}

/* Navigation styling */
[data-md-color-scheme="slate"] .md-nav--primary .md-nav__item--active > .md-nav__link {
  color: var(--md-accent-fg-color);
}

/* Code blocks - slightly darker for contrast */
[data-md-color-scheme="slate"] .highlight,
[data-md-color-scheme="slate"] .md-typeset pre {
  background-color: oklch(21.1484% 0.01165 254.087939);
}

/* Inline code */
[data-md-color-scheme="slate"] .md-typeset code {
  background-color: oklch(21.1484% 0.01165 254.087939);
}

/* Primary/accent colors - indigo to match project */
[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #6366f1;
  --md-primary-fg-color--light: #818cf8;
  --md-primary-fg-color--dark: #4f46e5;
  --md-accent-fg-color: #818cf8;
}

/* Ensure text remains readable */
[data-md-color-scheme="slate"] {
  --md-default-fg-color: rgba(255, 255, 255, 0.87);
  --md-default-fg-color--light: rgba(255, 255, 255, 0.54);
  --md-default-fg-color--lighter: rgba(255, 255, 255, 0.32);
}

/* Light theme adjustments */
[data-md-color-scheme="default"] {
  --md-primary-fg-color: #4f46e5;
  --md-primary-fg-color--light: #6366f1;
  --md-primary-fg-color--dark: #4338ca;
  --md-accent-fg-color: #6366f1;
}
