/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Brand Fonts */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  /* Brand Colors in HSL format for shadcn-vue - BLACK/WHITE/YELLOW Strategy */
  --primary: 51 100% 50%;         /* #FFD600 - Yellow (PRIMARY) */
  --primary-foreground: 0 0% 0%;  /* Black text on yellow */
  
  --secondary: 0 0% 0%;           /* #000000 - Black */
  --secondary-foreground: 0 0% 100%; /* White text on black */
  
  --success: 152 100% 50%;        /* #00FF88 - Green */
  --success-foreground: 0 0% 0%;
  
  --warning: 51 100% 50%;         /* #FFD600 - Yellow */
  --warning-foreground: 0 0% 0%;
  
  --destructive: 315 100% 56%;    /* #FF21D0 - Pink */
  --destructive-foreground: 0 0% 100%;
  
  /* Keep existing neutral colors from shadcn-vue */
  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  
  --card: 0 0% 100%;
  --card-foreground: 0 0% 3.9%;
  
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 3.9%;
  
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  
  --accent: 0 0% 96.1%;
  --accent-foreground: 0 0% 9%;
  
  --border: 0 0% 89.8%;
  --input: 0 0% 89.8%;
  --ring: 252 100% 56%;
  
  --radius: 0.5rem;
  
  /* Chart colors */
  --chart-1: 12 76% 61%;
  --chart-2: 173 58% 39%;
  --chart-3: 197 37% 24%;
  --chart-4: 43 74% 66%;
  --chart-5: 27 87% 67%;
}

.dark {
  --primary: 252 100% 56%;
  --primary-foreground: 0 0% 100%;
  
  --secondary: 188 100% 57%;
  --secondary-foreground: 0 0% 0%;
  
  --destructive: 315 100% 56%;
  --destructive-foreground: 0 0% 100%;
  
  --background: 0 0% 3.9%;
  --foreground: 0 0% 98%;
  
  --card: 0 0% 3.9%;
  --card-foreground: 0 0% 98%;
  
  --popover: 0 0% 3.9%;
  --popover-foreground: 0 0% 98%;
  
  --muted: 0 0% 14.9%;
  --muted-foreground: 0 0% 63.9%;
  
  --accent: 0 0% 14.9%;
  --accent-foreground: 0 0% 98%;
  
  --border: 0 0% 14.9%;
  --input: 0 0% 14.9%;
  --ring: 252 100% 56%;
}

/* Import Tailwind CSS with brand tokens */
@import "application.tailwind.css";
