/**
 * Txiki Librería/Papelería
 * Variables CSS - Paleta de Colores y Configuración
 */

:root {
    /* ========================================
       PALETA DE COLORES PRINCIPAL
       ======================================== */
    
    /* Azules profundos - Fondos principales */
    --midnight-indigo: #212842;
    --yale-blue: #0D3B66;
    
    /* Cremas y dorados - Fondos claros y acentos */
    --vanilla-cream: #F0E7D5;
    --lemon-chiffon: #FAF0CA;
    --accent-gold: #F4EBDC;
    --soft-tan: #E8DCC8;
    
    /* Colores de texto */
    --text-dark: #212842;
    --text-light: #F0E7D5;
    --text-muted: rgba(33, 40, 66, 0.7);
    --text-muted-light: rgba(240, 231, 213, 0.8);
    
    /* ========================================
       TIPOGRAFÍA
       ======================================== */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-script: 'Cormorant Garamond', 'Playfair Display', serif;
    
    /* Tamaños de fuente */
    --fs-xs: 0.75rem;      /* 12px */
    --fs-sm: 0.875rem;     /* 14px */
    --fs-base: 1rem;       /* 16px */
    --fs-lg: 1.125rem;     /* 18px */
    --fs-xl: 1.25rem;      /* 20px */
    --fs-2xl: 1.5rem;      /* 24px */
    --fs-3xl: 1.875rem;    /* 30px */
    --fs-4xl: 2.25rem;     /* 36px */
    --fs-5xl: 3rem;        /* 48px */
    --fs-6xl: 3.75rem;     /* 60px */
    --fs-7xl: 4.5rem;      /* 72px */
    
    /* ========================================
       ESPACIADO
       ======================================== */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-5: 1.25rem;    /* 20px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-10: 2.5rem;    /* 40px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    --space-20: 5rem;      /* 80px */
    --space-24: 6rem;      /* 96px */
    
    /* ========================================
       BORDES Y SOMBRAS
       ======================================== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Sombras elegantes */
    --shadow-sm: 0 1px 2px rgba(33, 40, 66, 0.05);
    --shadow-md: 0 4px 6px rgba(33, 40, 66, 0.07), 0 2px 4px rgba(33, 40, 66, 0.06);
    --shadow-lg: 0 10px 15px rgba(33, 40, 66, 0.1), 0 4px 6px rgba(33, 40, 66, 0.05);
    --shadow-xl: 0 20px 25px rgba(33, 40, 66, 0.1), 0 10px 10px rgba(33, 40, 66, 0.04);
    --shadow-elegant: 0 25px 50px rgba(33, 40, 66, 0.15);
    
    /* Sombra dorada para hover */
    --shadow-gold: 0 0 30px rgba(244, 235, 220, 0.3);
    
    /* ========================================
       TRANSICIONES
       ======================================== */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-elegant: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* ========================================
       BREAKPOINTS (para referencia)
       ======================================== */
    --bp-sm: 640px;
    --bp-md: 768px;
    --bp-lg: 1024px;
    --bp-xl: 1280px;
    --bp-2xl: 1536px;
    
    /* ========================================
       Z-INDEX
       ======================================== */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}
