/* ========================================
   CSS VARIABLES - Elessi Theme
   Reusable values for consistent design
======================================== */

:root {
    /* Colors */
    --color-primary: #4ECDC4;
    --color-primary-dark: #3DBDB4;
    --color-secondary: #8BC34A;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #DDDDDD;
    --color-background: #FFFFFF;
    --color-background-light: #F5F5F5;
    --color-black: #000000;
    --color-white: #FFFFFF;

    /* Typography */
    --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-base: 14px;
    --font-size-small: 12px;
    --font-size-large: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
    --font-size-h3: 18px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-xxl: 40px;
    --spacing-xxxl: 60px;

    /* Grid */
    --grid-gap: 30px;
    --grid-gap-mobile: 15px;
    --card-padding: 20px;

    /* Buttons */
    --button-padding: 15px 35px;
    --button-border-radius: 0;
    --button-font-size: 13px;
    --button-font-weight: var(--font-weight-bold);
    --button-letter-spacing: 1.5px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    /* Breakpoints (for reference in media queries) */
    --breakpoint-mobile: 576px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 992px;
    --breakpoint-wide: 1200px;
}