/* ============================================
   BKLOG - CSS Variables
   ============================================ */

:root {
    /* Ocean Blue Palette */
    --ocean-deep: #0a1929;
    --ocean-dark: #0d2137;
    --ocean-surface: #132f4c;
    --ocean-mid: #1a3a5c;
    --ocean-light: #234b6e;

    /* Steel Grays */
    --steel-100: #f8fafc;
    --steel-200: #e2e8f0;
    --steel-300: #cbd5e1;
    --steel-400: #94a3b8;
    --steel-500: #64748b;
    --steel-600: #475569;

    /* Accent Colors */
    --accent-blue: #5b8db8;
    --accent-cyan: #4fd1c5;
    --accent-gold: #f6ad55;

    /* Semantic Colors */
    --success: #48bb78;
    --warning: #f6ad55;
    --error: #fc8181;
    --info: #63b3ed;

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* 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 15px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);

    /* Layout */
    --sidebar-width: 260px;
    --header-height: 70px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Light theme override */
[data-theme="light"] {
    --ocean-deep: #f8fafc;
    --ocean-dark: #f1f5f9;
    --ocean-surface: #ffffff;
    --ocean-mid: #e2e8f0;
    --ocean-light: #cbd5e1;
    --steel-100: #1e293b;
    --steel-200: #334155;
    --steel-300: #475569;
    --steel-400: #64748b;
    --steel-500: #94a3b8;
    --steel-600: #cbd5e1;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}
