/* ==========================================================
   ITLog
   Personal IT Support Journal

   File        : variables.css
   Version     : 1.0.0
   Author      : Febrianto Nugroho
   Created     : 2026-08-05

   Description :
   Global design variables, color themes, typography,
   spacing, radius, and shadows.
========================================================== */

/* ==========================================================
   Light Theme
========================================================== */
:root {

    /* Colors */
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-primary-light: #dbeafe;

    --color-success: #16a34a;
    --color-warning: #f59e0b;
    --color-danger: #dc2626;
    --color-info: #0ea5e9;

    --color-background: #f8fafc;
    --color-surface: #ffffff;
    --color-surface-hover: #f1f5f9;

    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-text-light: #94a3b8;

    --color-border: #e2e8f0;
    --color-border-dark: #cbd5e1;

    /* Sidebar */
    --color-sidebar: #0f172a;
    --color-sidebar-text: #cbd5e1;
    --color-sidebar-hover: #1e293b;
    --color-sidebar-active: #2563eb;

    /* Font */
    --font-family: "Segoe UI", Arial, sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;

    /* Font Weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Shadow */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);

    /* Layout */
    --sidebar-width: 260px;
    --topbar-height: 80px;
    --content-max-width: 1400px;

    /* Transition */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
}

/* ==========================================================
   Dark Theme
========================================================== */
[data-theme="dark"] {

    /* Colors */
    --color-primary: #60a5fa;
    --color-primary-hover: #93c5fd;
    --color-primary-light: #1e3a5f;

    --color-success: #4ade80;
    --color-warning: #fbbf24;
    --color-danger: #f87171;
    --color-info: #38bdf8;

    --color-background: #0f172a;
    --color-surface: #1e293b;
    --color-surface-hover: #334155;

    --color-text: #f8fafc;
    --color-text-muted: #cbd5e1;
    --color-text-light: #94a3b8;

    --color-border: #334155;
    --color-border-dark: #475569;

    /* Sidebar */
    --color-sidebar: #020617;
    --color-sidebar-text: #cbd5e1;
    --color-sidebar-hover: #1e293b;
    --color-sidebar-active: #2563eb;

    /* Shadow */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
}


