/**
 * Directory-site color override for PaperMod.
 * Only colors — no layout or content changes.
 * Palette: Media Minds dark navy/blue (same as BluePages).
 */
:root {
    --theme: #0f1419;
    --entry: #1a2332;
    --primary: #e6edf3;
    --secondary: #8b9cb3;
    --tertiary: #2d3a4d;
    --content: #e6edf3;
    --code-block-bg: #1a2332;
    --code-bg: #1a2332;
    --border: #2d3a4d;
    color-scheme: dark;
}

:root[data-theme="dark"] {
    --theme: #0f1419;
    --entry: #1a2332;
    --primary: #e6edf3;
    --secondary: #8b9cb3;
    --tertiary: #2d3a4d;
    --content: #e6edf3;
    --code-block-bg: #1a2332;
    --code-bg: #1a2332;
    --border: #2d3a4d;
    color-scheme: dark;
}

/* Accent for links and buttons (directory blue) */
a, .first a {
    color: #3b82f6;
}
a:hover {
    color: #60a5fa;
}
