/**
 * variables.css - Variables CSS Globales
 * Sistema de Design Tokens para IsabelCMS
 * Fecha: 2025-02-09
 * 
 * Este archivo define variables CSS reutilizables para:
 * - Colores del tema
 * - Tipografía
 * - Espaciado y dimensiones
 * - Efectos (sombras, blur, transiciones)
 */

:root {
    /* ========================================
       COLORES PRINCIPALES
       ======================================== */

    --primary-color: #2196f3;
    --primary-dark: #1976d2;
    --primary-light: #64b5f6;

    --secondary-color: #5e35b1;
    --accent-color: #ff5252;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --info-color: #00bcd4;

    /* ========================================
       COLORES DE TEXTO
       ======================================== */

    --text-color: #333333;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;

    /* ========================================
       COLORES DE FONDO
       ======================================== */

    --bg-body: #f5f5f5;
    --bg-card: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.5);

    /* ========================================
       NAVBAR (GLASSMORPHISM)
       ======================================== */

    --nav-bg: rgba(255, 255, 255, 0.85);
    --sticky-nav-bg: rgba(255, 255, 255, 0.98);
    --sticky-nav-text: #111111;
    --backdrop: blur(70px);

    /* ========================================
       TIPOGRAFÍA
       ======================================== */

    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Inter', sans-serif;

    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* ========================================
       ESPACIADO (BASADO EN 8px GRID)
       ======================================== */

    --spacing-xs: 0.25rem;
    /* 4px */
    --spacing-sm: 0.5rem;
    /* 8px */
    --spacing-md: 1rem;
    /* 16px */
    --spacing-lg: 1.5rem;
    /* 24px */
    --spacing-xl: 2rem;
    /* 32px */
    --spacing-2xl: 3rem;
    /* 48px */
    --spacing-3xl: 4rem;
    /* 64px */

    /* ========================================
       RADIOS (BORDER RADIUS)
       ======================================== */

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    /* Círculo perfecto */

    /* ========================================
       SOMBRAS (BOX SHADOWS)
       ======================================== */

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

    /* ========================================
       TRANSICIONES
       ======================================== */

    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* ========================================
       Z-INDEX (LAYERING)
       ======================================== */

    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ========================================
   MODO OSCURO (OPCIONAL - PARA FUTURO)
   ======================================== */

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e0e0e0;
        --text-dark: #f5f5f5;
        --text-light: #b0b0b0;
        --text-muted: #808080;

        --bg-body: #1a1a1a;
        --bg-card: #2a2a2a;

        --nav-bg: rgba(26, 26, 26, 0.85);
        --sticky-nav-bg: rgba(26, 26, 26, 0.98);
        --sticky-nav-text: #f5f5f5;
    }
}