/* ============================================
   Typography - Text Styling
   Fonts, headings, and text enhancements
   ============================================ */

/* Font stack - Modern geometric with personality */
:root {
    --mlad-text-font: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    font-family: var(--mlad-text-font);
    font-feature-settings: "liga" 1, "ss01" 1;
    font-variation-settings: "wght" 450;
}

/* Body text defaults */
.md-typeset {
    font-family: var(--mlad-text-font);
    font-size: 0.95rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Headings */
.md-typeset h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.md-typeset h2 {
    font-weight: 600;
    margin-top: 2rem;
}

.md-typeset h3 {
    font-weight: 600;
}

/* Hero section text enhancement */
.tx-hero__content h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tx-hero__content p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

[data-md-color-scheme="slate"] .tx-hero__content h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-md-color-scheme="slate"] .tx-hero__content p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}