/*
 * BasicFakta.no Design System
 * Theme: Nordic Slate & Emerald
 * Inspired by: Nord Theme + Vercel Dashboard aesthetic
 * Author: Alem Basic
 * Created: 2026-02-01
 */

:root {
    /* ═══════════════════════════════════════════════════════════
       BACKGROUND COLORS - Slate Family
       ═══════════════════════════════════════════════════════════ */
    --bg-deep: #020617;        /* slate-950 - deepest background */
    --bg-card: #0f172a;        /* slate-900 - card backgrounds */
    --bg-elevated: #1e293b;    /* slate-800 - elevated surfaces */
    --bg-hover: #334155;       /* slate-700 - hover states */
    --bg-muted: #475569;       /* slate-600 - muted elements */

    /* ═══════════════════════════════════════════════════════════
       ACCENT COLORS - Emerald (Verified/Trust)
       ═══════════════════════════════════════════════════════════ */
    --accent: #10B981;         /* emerald-500 - primary accent */
    --accent-hover: #34d399;   /* emerald-400 - hover */
    --accent-dark: #059669;    /* emerald-600 - pressed */
    --accent-subtle: #064e3b;  /* emerald-900 - subtle bg */
    --accent-glow: rgba(16, 185, 129, 0.2);

    /* ═══════════════════════════════════════════════════════════
       TEXT COLORS
       ═══════════════════════════════════════════════════════════ */
    --text-primary: #f8fafc;   /* slate-50 - primary text */
    --text-secondary: #cbd5e1; /* slate-300 - secondary */
    --text-muted: #94a3b8;     /* slate-400 - muted */
    --text-dim: #64748b;       /* slate-500 - very muted */

    /* ═══════════════════════════════════════════════════════════
       SEMANTIC COLORS - Verdicts
       ═══════════════════════════════════════════════════════════ */
    --verified: #10B981;       /* emerald - true/verified */
    --verified-bg: rgba(16, 185, 129, 0.1);
    --verified-border: rgba(16, 185, 129, 0.3);

    --warning: #f59e0b;        /* amber - partially true */
    --warning-bg: rgba(245, 158, 11, 0.1);
    --warning-border: rgba(245, 158, 11, 0.3);

    --false: #f43f5e;          /* rose - false */
    --false-bg: rgba(244, 63, 94, 0.1);
    --false-border: rgba(244, 63, 94, 0.3);

    --unknown: #64748b;        /* slate - unknown */
    --unknown-bg: rgba(100, 116, 139, 0.1);
    --unknown-border: rgba(100, 116, 139, 0.3);

    /* ═══════════════════════════════════════════════════════════
       BORDERS
       ═══════════════════════════════════════════════════════════ */
    --border: #334155;         /* slate-700 */
    --border-light: #1e293b;   /* slate-800 */
    --border-focus: var(--accent);

    /* ═══════════════════════════════════════════════════════════
       TYPOGRAPHY - Inter
       ═══════════════════════════════════════════════════════════ */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

    /* Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;

    /* Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Line heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;

    /* ═══════════════════════════════════════════════════════════
       SPACING
       ═══════════════════════════════════════════════════════════ */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;

    /* ═══════════════════════════════════════════════════════════
       BORDERS & RADIUS
       ═══════════════════════════════════════════════════════════ */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* ═══════════════════════════════════════════════════════════
       SHADOWS
       ═══════════════════════════════════════════════════════════ */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px var(--accent-glow);

    /* ═══════════════════════════════════════════════════════════
       TRANSITIONS
       ═══════════════════════════════════════════════════════════ */
    --transition-fast: 150ms ease;
    --transition-normal: 200ms ease;
    --transition-slow: 300ms ease;

    /* ═══════════════════════════════════════════════════════════
       LAYOUT
       ═══════════════════════════════════════════════════════════ */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 900px;
    --container-xl: 1100px;
}
