/* * LUTHER <-> MKDOCS BRIDGE
 * We extract the CSS variables from styles.css and inject them 
 * into MkDocs Material's native CSS variables.
 */

/* Streamlined font import - dropped the serif for better docs readability */
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root > * {
    /* Luther Background Colors */
    --md-default-bg-color: #141516; /* var(--color-gray-10) */
    --md-default-fg-color: #a1a1a2; /* var(--color-gray-4) */
    --md-default-fg-color--light: #727373; 
    
    /* Luther Primary/Accent mappings */
    --md-primary-fg-color: #141516; /* var(--color-gray-14) */
    --md-accent-fg-color: hsla(36, 72%, 70%, 1); /* var(--color-1) - The Golden Accent */
    --md-accent-fg-color--transparent: hsla(36, 72%, 70%, 0.1);

    /* Luther Fonts - Unified Sans-Serif Pipeline */
    --md-typeset-font-family: "Public Sans", sans-serif;
    --md-text-font-family: "Public Sans", sans-serif;
    --md-code-font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
    
    /* Luther Buttons */
    --md-typeset-a-color: hsla(36, 72%, 70%, 1);
}

/* Force MkDocs Headings to use Luther's Public Sans for a cleaner docs UI */
h1, h2, h3, h4, h5, h6,
.md-typeset h1, .md-typeset h2, .md-typeset h3, 
.md-typeset h4, .md-typeset h5, .md-typeset h6 {
    font-family: "Public Sans", sans-serif;
    font-weight: 700; /* Bumping weight since we dropped the serif */
    color: #ffffff; /* var(--color-text-dark) */
    letter-spacing: -.02em; /* Slightly tighter for modern sans headings */
}

/* Luther Blockquote Style */
.md-typeset blockquote {
    border-left: 2px solid #5b5b5c; /* var(--color-gray-7) */
    padding-left: 1.5rem;
    color: #ffffff;
}

