/* ============================================
   PRINCE PORTFOLIO — DESIGN TOKENS
   Your entire design system in one file.
   Change a value here = changes everywhere.
============================================ */

:root {

  /* --- COLORS: Light Mode --- */
  --color-bg:             #FAFAF8;
  --color-bg-secondary:   #F4F3F0;
  --color-surface:        #FFFFFF;
  --color-border:         #E5E3DE;
  --color-text-primary:   #141413;
  --color-text-secondary: #6B6A66;
  --color-text-muted:     #A8A7A3;
  --color-accent:         #D4622A;
  --color-accent-hover:   #B85420;

  /* --- TYPOGRAPHY --- */
  --font-display: 'Gabarito', system-ui, sans-serif;
  --font-sans:    'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale — 4px grid */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.5rem;     /* 24px */
  --text-2xl:  2rem;       /* 32px */
  --text-3xl:  3rem;       /* 48px */
  --text-4xl:  4rem;       /* 64px */

  --weight-regular: 400;
  --weight-medium:  500;

  /* Line heights */
  --leading-tight:   1.1;
  --leading-heading: 1.2;
  --leading-normal:  1.5;
  --leading-body:    1.7;
  --leading-loose:   1.8;

  /* Letter spacing */
  --tracking-tight:   -0.03em;
  --tracking-heading: -0.02em;
  --tracking-normal:  0em;
  --tracking-label:   0.06em;
  --tracking-wide:    0.1em;

  /* --- SPACING — 4px grid --- */
  --space-1:  0.25rem;   /*  4px */
  --space-2:  0.5rem;    /*  8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* --- LAYOUT --- */
  --nav-height: 72px;
  --max-width:  1100px;

  /* --- TRANSITIONS --- */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast:   150ms;
  --duration-normal: 300ms;
  --duration-slow:   600ms;

  /* --- BORDER RADIUS — 4px grid --- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

}

/* --- COLORS: Dark Mode --- */
[data-theme="dark"] {

  --color-bg:             #111110;
  --color-bg-secondary:   #1A1A18;
  --color-surface:        #222220;
  --color-border:         #2A2A28;
  --color-text-primary:   #F0EEE9;
  --color-text-secondary: #908F8B;
  --color-text-muted:     #5A5A57;
  --color-accent:         #E8734A;
  --color-accent-hover:   #D4622A;

}
