/**
 * Lampira AI - Base Styles
 * CSS Variables and Reset
 */

/* ============ CSS Variables ============ */
:root {
    /* Colors */
    --color-bg-primary: #f9f9f9;
    --color-bg-secondary: #ffffff;
    --color-bg-sidebar: #e8e7e5;
    --color-text-primary: #111111;
    --color-text-secondary: #57534e;
    --color-text-muted: #666666;
    --color-border: #dddcda;
    --color-border-light: #e5e5e5;

    /* Sidebar */
    --sidebar-width: 220px;
    --sidebar-collapsed-width: 48px;

    /* Mobile */
    --mobile-breakpoint: 768px;
    --backdrop-color: rgba(0, 0, 0, 0.5);

    /* Z-index layers */
    --z-sidebar: 100;
    --z-backdrop: 99;
    --z-menu-btn: 50;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ============ Reset & Base ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}