/* ============================================
   EKO-ŻAR — Design Tokens
   ============================================ */

:root {
    /* --- Colors --- */
    --color-primary:       #E8860C;
    --color-primary-dark:  #B86A08;
    --color-primary-light: #F5A623;
    --color-secondary:     #2D6A4F;
    --color-secondary-light: #40916C;
    --color-accent:        #FF6B35;

    /* Backgrounds */
    --bg-dark:             #1A1A2E;
    --bg-dark-2:           #16213E;
    --bg-surface:          #2C2C3A;
    --bg-surface-light:    #3A3A4E;
    --bg-light:            #FAF8F5;
    --bg-white:            #FFFFFF;
    --bg-warm:             #FFF8F0;

    /* Text */
    --text-light:          #F0EDE8;
    --text-light-muted:    #A0A0B0;
    --text-dark:           #2D2D2D;
    --text-dark-muted:     #6B7280;
    --text-on-primary:     var(--bg-dark);

    /* Borders */
    --border-light:        rgba(255, 255, 255, 0.08);
    --border-dark:         #E5E7EB;

    /* --- Typography --- */
    --font-heading:        'Outfit', sans-serif;
    --font-body:           'Inter', sans-serif;

    --fs-xs:    0.75rem;     /* 12px */
    --fs-sm:    0.875rem;    /* 14px */
    --fs-base:  1rem;        /* 16px */
    --fs-md:    1.125rem;    /* 18px */
    --fs-lg:    1.25rem;     /* 20px */
    --fs-xl:    1.5rem;      /* 24px */
    --fs-2xl:   2rem;        /* 32px */
    --fs-3xl:   2.5rem;      /* 40px */
    --fs-4xl:   3rem;        /* 48px */
    --fs-5xl:   3.5rem;      /* 56px */

    --fw-regular:  400;
    --fw-medium:   500;
    --fw-semibold: 600;
    --fw-bold:     700;
    --fw-extrabold:800;

    /* --- Spacing --- */
    --space-xs:    0.25rem;
    --space-sm:    0.5rem;
    --space-md:    1rem;
    --space-lg:    1.5rem;
    --space-xl:    2rem;
    --space-2xl:   3rem;
    --space-3xl:   4rem;
    --space-4xl:   6rem;
    --space-5xl:   8rem;

    /* --- Borders & Shadows --- */
    --radius-sm:   6px;
    --radius-md:   10px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --radius-full: 9999px;

    --shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md:   0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg:   0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl:   0 16px 50px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(232, 134, 12, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(232, 134, 12, 0.4);

    /* --- Transitions --- */
    --transition-fast:   0.15s ease;
    --transition-base:   0.3s ease;
    --transition-slow:   0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* --- Layout --- */
    --container-max:   1200px;
    --container-narrow: 800px;
    --header-height:   72px;
    --top-bar-height:  40px;
}
