/**
 * CSS Variables
 *
 * Define global CSS custom properties.
 *
 * @package olivier\HelloElementorolivier
 */

:root {
    /* Colors */
    --color-primary        : #7F7F7F;
    --color-secondary      : #B2B2B2;
    --color-accent         : #FF0006;

    --color-text           : #2A2A2A;
    --color-text-light     : #FFFFFF;
    --color-text-dark     : #000;

    --color-bg: #efefef;

    /* Typography */
    --font-primary         : 'Rubik';
    --font-text         : 'Poppins';
    --font-size-base       : 16px;
    --font-size-small      : 14px;
    --font-size-large      : 18px;
    --font-size-title         : 50px;

    --font-weight-light    : 300;
    --font-weight-normal   : 400;
    --font-weight-medium   : 500;
    --font-weight-semibold : 600;
    --font-weight-bold     : 700;

    /* Spacing */
    --spacing-xs           : 8px;
    --spacing-sm           : 12px;
    --spacing-md           : 16px;
    --spacing-lg           : 24px;
    --spacing-xl           : 32px;
    --spacing-2xl          : 48px;

    /* Border Radius */
    --radius-sm            : 6px;
    --radius-md            : 12px;
    --radius-lg            : 16px;
    --radius-full          : 9999px;

    /* Shadows */
    --shadow-sm            : 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md            : 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg            : 0 8px 16px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast      : 0.15s ease;
    --transition-normal    : 0.3s ease;
    --transition-slow      : 0.5s ease;

    /* Z-index */
    --z-dropdown           : 100;
    --z-sticky             : 200;
    --z-fixed              : 300;
    --z-modal-backdrop     : 400;
    --z-modal              : 500;
    --z-tooltip            : 600;
}
