/* MuggsOfSurveys Design Tokens
 * Celtic Dark Theme - Muggs Ecosystem
 */

:root {
  /* ==================== GREENS (Background) ==================== */
  --color-bg-darkest: #071a0e;
  --color-bg-deep: #0a1e12;
  --color-bg-primary: #0d2818;
  --color-bg-secondary: #153b26;
  --color-bg-elevated: #1a4a30;
  --color-bg-card: rgba(18, 54, 36, 0.95);
  --color-bg-hover: rgba(26, 74, 48, 0.8);
  --color-bg-glass: rgba(255, 255, 255, 0.03);

  /* ==================== GOLD (Accent) ==================== */
  --color-gold: #d4af37;
  --color-gold-light: #f0d78a;
  --color-gold-deep: #c89b3c;
  --color-gold-muted: rgba(212, 167, 38, 0.6);
  --color-gold-glow: rgba(212, 175, 55, 0.35);
  --color-gold-bg: rgba(212, 175, 55, 0.15);

  /* ==================== TEXT ==================== */
  --color-text-primary: #efe8d1;
  --color-text-secondary: rgba(239, 232, 209, 0.75);
  --color-text-muted: rgba(239, 232, 209, 0.5);
  --color-text-on-gold: #0a1e12;

  /* ==================== SEMANTIC ==================== */
  --color-success: #4ade80;
  --color-success-bg: rgba(74, 222, 128, 0.15);
  --color-warning: #fbbf24;
  --color-warning-bg: rgba(251, 191, 36, 0.15);
  --color-error: #f87171;
  --color-error-bg: rgba(248, 113, 113, 0.15);
  --color-info: #60a5fa;
  --color-info-bg: rgba(96, 165, 250, 0.15);

  /* ==================== DATA CATEGORIES ==================== */
  --color-demographic: #60a5fa;
  --color-demographic-bg: rgba(96, 165, 250, 0.2);
  --color-cognitive: #4ade80;
  --color-cognitive-bg: rgba(74, 222, 128, 0.2);
  --color-psychographic: #c084fc;
  --color-psychographic-bg: rgba(192, 132, 252, 0.2);
  --color-behavioral: #fb923c;
  --color-behavioral-bg: rgba(251, 146, 60, 0.2);

  /* ==================== BORDERS ==================== */
  --color-border: rgba(212, 175, 55, 0.3);
  --color-border-light: rgba(239, 232, 209, 0.15);
  --color-border-focus: var(--color-gold);

  /* ==================== SHADOWS & GLOWS ==================== */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 15px var(--color-gold-glow);
  --shadow-gold-strong: 0 0 20px rgba(212, 175, 55, 0.5);
  --shadow-inset-gold: inset 0 0 10px rgba(212, 175, 55, 0.2);
  --shadow-focus: 0 0 0 3px var(--color-gold-glow);

  /* Gold text glow */
  --text-glow-gold:
    0 0 10px rgba(255, 215, 100, 0.75),
    0 0 25px rgba(200, 155, 60, 0.45),
    0 0 40px rgba(160, 110, 30, 0.35);

  /* ==================== TYPOGRAPHY ==================== */
  --font-display: 'Cinzel Decorative', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;

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

  --line-height-tight: 1.25;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* ==================== SPACING ==================== */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* ==================== BORDER RADIUS ==================== */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ==================== LAYOUT ==================== */
  --sidebar-width: 280px;
  --header-height: 72px;
  --max-content-width: 900px;

  /* ==================== TRANSITIONS ==================== */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* ==================== Z-INDEX ==================== */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}
