/* ── Theme ────────────────────────────────────────────────────────────────
   Swap this file to re-skin the site. All font and color decisions live here.
   ──────────────────────────────────────────────────────────────────────── */

@font-face {
    font-family: 'Minecrafter';
    src: url('./Minecrafter.Reg.ttf') format('truetype');
}

@font-face {
    font-family: 'Lexend';
    src: url('./Lexend-Regular.ttf') format('truetype');
}

:root {
    /* Fonts */
    --font-display: 'Minecrafter', Arial, sans-serif;
    --font-body:    'Lexend', Arial, sans-serif;

    /* Brand / accent */
    --color-accent:       #e53f00;
    --color-accent-hover: #ff4f00;

    /* Backgrounds */
    --color-bg:         #000000;
    --color-bg-section: #161616;
    --color-bg-modal:   #121212;
    --color-bg-input:   #0a0a0a;

    /* Text */
    --color-text:       #e0e0e0;
    --color-text-muted: #aaaaaa;
    --color-text-faint: #888888;
    --color-text-dim:   #555555;

    /* Borders / dividers */
    --color-border: #333333;
}