/**
 * BookSpace - Brand Colors (Partner Customizable)
 * 
 * This file defines partner-branded colors that can be overridden per partner.
 * The actual color system is defined in colors.css
 * 
 * Partner-specific overrides are injected via inline <style> tag in layout.tsx
 */

:root {
  /* Brand tokens prepared for partner panel overrides */
  /* These override the default colors from colors.css */
  --brand-primary: #d6006a; /* CTA - Main brand color */
  --brand-primary-dark: #b8005a; /* Darker variant for hover/active states */
  --brand-accent: #667eea; /* Secondary accent color */
  
  /* Map brand tokens to color system variables */
  --color-brand-primary: var(--brand-primary);
  --color-brand-primary-dark: var(--brand-primary-dark);
  --color-brand-accent: var(--brand-accent);
  
  /* Legacy compatibility aliases (will be removed in future versions) */
  --brand: var(--brand-primary);
  --text: var(--color-text-primary);
  --muted: var(--color-text-secondary);
  --border: var(--color-border-light);
}

/* Placeholder scopes for future partner-specific theming
   Example: [data-partner="acme"]:root { 
     --brand-primary: #0055aa;
     --brand-primary-dark: #004494;
     --brand-accent: #ffc107;
   }
*/



