/**
 * WebLama PAL GAME - CSS Variables
 * Culori și fonturi principale
 */

:root {
    /* Culori principale */
    --alb: #ffffff;
    --albastru-fundal: #E2E8F2;
    --albastru-header-top: #b8d9f0;
    --albastru-logo: #008CCE;
    --albastru-logo-pal: #98D0EB;
    --albastru-inchis: #0a1628;
    --albastru-nav: #0d2137;
    --albastru-border: #5eb8e6;
    --albastru-status-bg: #7ec8ee;
    --albastru-track: #1a3a52;
    --alb-fundal: #ffffffb3;
    --galben-pal: #fbe18f;
    --galben: #f8c009;
    --negru: #000017;
    --turcoaz: #00CEA9;
    --turcoaz-pal: #A3E0DE;
    --griMotto: #B2B2B9;
    --rosu-inima: #e53935;
    --verde-sanatate: #43a047;

    /* Fonturi */
    --BalooBold: 'Nunito', "Baloo 2", sans-serif;
    --fontText: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 12px rgba(0, 0, 0, 0.15);
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}
