/* =============================================================
   WONDERLAND CREATIVE INDUSTRIES — DESIGN TOKENS
   Central source of truth for all design values.
   Update colors, spacing, or type here and it propagates everywhere.
   ============================================================= */

:root {

  /* -----------------------------------------------------------
     COLOR — BACKGROUNDS
  ----------------------------------------------------------- */
  --color-bg-base:     #08080d;   /* page background */
  --color-bg-surface:  #0e0e18;   /* cards, panels */
  --color-bg-elevated: #14142a;   /* dropdowns, tooltips */
  --color-bg-overlay:  #1b1b35;   /* modals, drawers */
  --color-bg-hover:    #1a1a2e;   /* hover states on surfaces */

  /* -----------------------------------------------------------
     COLOR — ACCENT (Purple)
  ----------------------------------------------------------- */
  --color-accent:         #9b72e8;  /* primary brand purple */
  --color-accent-light:   #b590f5;  /* hover / lighter variant */
  --color-accent-deep:    #6c35c9;  /* pressed / darker variant */
  --color-accent-dim:     rgba(155, 114, 232, 0.12);
  --color-accent-border:  rgba(155, 114, 232, 0.28);
  --color-accent-glow:    rgba(155, 114, 232, 0.20);

  /* -----------------------------------------------------------
     COLOR — TEXT
  ----------------------------------------------------------- */
  --color-text-primary:   #eeeef6;  /* headings, main copy */
  --color-text-secondary: #9898b2;  /* subtext, labels */
  --color-text-muted:     #52526e;  /* disabled, placeholders */
  --color-text-inverse:   #08080d;  /* text on light backgrounds */
  --color-text-accent:    #b590f5;  /* accent-colored text */

  /* -----------------------------------------------------------
     COLOR — BORDERS
  ----------------------------------------------------------- */
  --color-border:       #1c1c30;
  --color-border-light: #252540;

  /* -----------------------------------------------------------
     COLOR — SEMANTIC
  ----------------------------------------------------------- */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error:   #ef4444;

  /* -----------------------------------------------------------
     TYPOGRAPHY — FONTS
  ----------------------------------------------------------- */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* -----------------------------------------------------------
     TYPOGRAPHY — SCALE
  ----------------------------------------------------------- */
  --text-xs:   0.6875rem;  /* 11px */
  --text-sm:   0.8125rem;  /* 13px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  2rem;       /* 32px */
  --text-4xl:  2.75rem;    /* 44px */
  --text-5xl:  3.75rem;    /* 60px */
  --text-6xl:  5rem;       /* 80px */

  /* -----------------------------------------------------------
     TYPOGRAPHY — WEIGHTS
  ----------------------------------------------------------- */
  --weight-regular:   400;
  --weight-medium:    500;
  --weight-semibold:  600;
  --weight-bold:      700;

  /* -----------------------------------------------------------
     TYPOGRAPHY — LINE HEIGHTS
  ----------------------------------------------------------- */
  --leading-tight:  1.15;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* -----------------------------------------------------------
     SPACING
  ----------------------------------------------------------- */
  --space-1:  0.25rem;   /*  4px */
  --space-2:  0.5rem;    /*  8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-14: 3.5rem;    /* 56px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */
  --space-40: 10rem;     /* 160px */
  --space-48: 12rem;     /* 192px */

  /* -----------------------------------------------------------
     LAYOUT
  ----------------------------------------------------------- */
  --container-sm:  640px;
  --container-md:  768px;
  --container-lg:  1024px;
  --container-xl:  1280px;
  --container-2xl: 1440px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);

  /* -----------------------------------------------------------
     BORDER RADIUS
  ----------------------------------------------------------- */
  --radius-xs:   3px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* -----------------------------------------------------------
     SHADOWS
     All shadows use black base + optional purple tint for depth.
  ----------------------------------------------------------- */
  --shadow-xs:     0 1px 3px rgba(0,0,0,0.5);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-lg:     0 10px 32px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.45);
  --shadow-xl:     0 20px 48px rgba(0,0,0,0.65), 0 8px 20px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 24px rgba(155,114,232,0.22), 0 0 48px rgba(155,114,232,0.10);
  --shadow-accent-sm: 0 0 12px rgba(155,114,232,0.18);
  --shadow-accent-btn: 0 4px 20px rgba(155,114,232,0.35), 0 0 0 1px rgba(155,114,232,0.2);

  /* -----------------------------------------------------------
     TRANSITIONS
  ----------------------------------------------------------- */
  --transition-fast:   150ms ease;
  --transition-base:   240ms ease;
  --transition-slow:   400ms ease;
  --transition-smooth: 600ms cubic-bezier(0.16, 1, 0.3, 1);

  /* -----------------------------------------------------------
     Z-INDEX STACK
  ----------------------------------------------------------- */
  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;

}
