/* ============================================================
   CLIENT.CSS — CANNA DREAMS NYC
   Brand tokens only. All colors, fonts, and brand values live here.
   To rebrand for a new client: replace this file entirely.
   The base stylesheet (main.css) reads these variables for all styles.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --color-bg:          #000000;
  --color-surface:     #0a0e14;
  --color-surface-2:   #14191f;
  --color-surface-3:   #1f262e;
  --color-accent:      #4ed1ff;
  --color-accent-dark: #1a8fbf;
  --color-accent-glow: rgba(78, 209, 255, 0.15);
  --color-border:      rgba(78, 209, 255, 0.18);
  --color-border-soft: rgba(255, 255, 255, 0.08);
  --color-text-1:      #ffffff;
  --color-text-2:      #8a93a0;
  --color-text-3:      #4a5260;
  --color-gold:        #f5c542;
  --color-error:       #ef4444;

  /* Typography */
  --font-heading: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:    'Space Grotesk', system-ui, -apple-system, sans-serif;

  /* Spacing and shape */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --container:  1280px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
}
