:root {

    /* ================================
       COLORS
       ================================ */

    --color-primary: #fa6547;
    --color-primary-hover: #ec5a3d;

    --color-secondary: #d9a441;
    --color-secondary-hover: #bd8d32;

    --color-accent: #fc6e51;

    --color-background: #ffffff;
    --color-background-secondary: rgb(206, 205, 205);

    --color-surface: #ffffff;

    --color-text: #737373;
    --color-text-secondary: #666565;
    --color-text-muted: #4caac9;

    --color-border: #ffffff;

    --color-success: #00d656;
    --color-warning: #d98e2b;
    --color-danger: #c53131;
    --color-info: #4f7cac;


    /* ================================
       TYPOGRAPHY
       ================================ */

    --font-family-primary: Arial, Helvetica, sans-serif;
    --font-family-heading: Arial, Helvetica, sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4rem;
    --font-size-7xl: 4.5rem;
    --font-size-8xl: 5rem;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;


    /* ================================
       SPACING
       ================================ */

    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;


    /* ================================
       LAYOUT
       ================================ */

    --container-width: 1200px;
    --container-padding: 1.25rem;

    --header-height: 80px;
    --navbar-height: 64px;


    /* ================================
       BORDER RADIUS
       ================================ */

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;


    /* ================================
       BORDERS
       ================================ */

    --border-width: 1px;
    --border-style: solid;


    /* ================================
       SHADOWS
       ================================ */

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);


    /* ================================
       TRANSITIONS
       ================================ */

    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;


    /* ================================
       Z-INDEX
       ================================ */

    --z-header: 100;
    --z-navbar: 200;
    --z-dropdown: 300;
    --z-modal: 400;
    --z-notification: 500;
}

