/* ==========================================================
   HerGame Phoenix
   Design System v1.0
   File: variables.css
   ========================================================== */

:root {

    /* ======================================================
       Colors
       ====================================================== */

    --color-background: #FFFDF3;
    --color-surface: #FFFFFF;
    --color-surface-alt: #F7F3EA;

    --color-text: #1F1F1F;
    --color-text-light: #666666;
    --color-text-muted: #8A8A8A;

    --color-primary: #C46A3A;
    --color-primary-dark: #A9562E;
    --color-primary-light: #D98559;

    --color-border: #E7E1D6;

    --color-success: #2E8B57;
    --color-warning: #D59B24;
    --color-error: #C0392B;

    /* ======================================================
       Typography
       ====================================================== */

    --font-heading: "Libre Baskerville", serif;
    --font-body: "Inter", sans-serif;

    /* Font sizes */

    --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: 3rem;         /* 48px */
    --fs-4xl: 4rem;         /* 64px */

    /* Font weights */

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Line heights */

    --lh-tight: 1.15;
    --lh-heading: 1.25;
    --lh-body: 1.7;

    /* ======================================================
       Layout
       ====================================================== */

    --container-width: 1280px;
    --container-padding: 2rem;

    --header-height: 92px;

    /* ======================================================
       Spacing
       ====================================================== */

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --space-9: 6rem;
    --space-10: 8rem;

    /* ======================================================
       Border Radius
       ====================================================== */

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    /* ======================================================
       Shadows
       ====================================================== */

    --shadow-sm: 0 2px 10px rgba(0,0,0,.05);

    --shadow-md: 0 8px 25px rgba(0,0,0,.08);

    --shadow-lg: 0 18px 45px rgba(0,0,0,.12);

    /* ======================================================
       Animation
       ====================================================== */

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

}