/** Prescott Style Tokens - Color system and visual tokens */

/* ============================================
   COLOR SYSTEM - Prescott Theme
   ============================================ */

/* Light Mode Colors */
[data-style="prescott"]:not(.dark) {
  /* Background color is set dynamically from branding config */
  --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%;
  --primary: 0 0% 9%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96.1%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  --accent: 0 0% 96.1%;
  --accent-foreground: 0 0% 9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 89.8%;
  --input: 0 0% 89.8%;
  --ring: 0 0% 3.9%;
}

/* Dark Mode Colors */
[data-style="prescott"].dark {
  /* Background color is set dynamically from branding config */
  --foreground: 0 0% 98%;          /* Near white #fafafa */
  --card: 0 0% 9%;                 /* Neutral 900 #171717 */
  --card-foreground: 0 0% 98%;     /* Near white #fafafa */
  --popover: 0 0% 9%;              /* Neutral 900 #171717 */
  --popover-foreground: 0 0% 98%;  /* Near white #fafafa */
  --primary: 0 0% 98%;             /* Near white #fafafa */
  --primary-foreground: 0 0% 0%;   /* Pure black #000000 */
  --secondary: 0 0% 15%;           /* Neutral 800 #262626 */
  --secondary-foreground: 0 0% 98%; /* Near white #fafafa */
  --muted: 0 0% 9%;                /* Neutral 900 #171717 */
  --muted-foreground: 0 0% 45%;    /* Neutral 500 #737373 */
  --accent: 0 0% 9%;               /* Neutral 900 #171717 */
  --accent-foreground: 0 0% 98%;   /* Near white #fafafa */
  --destructive: 0 62.8% 45%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 15%;              /* Neutral 800 #262626 */
  --input: 0 0% 15%;               /* Neutral 800 #262626 */
  --ring: 0 0% 75%;
  --header-border-bottom-color-dark: #262626;
  --search-bg-dark: #262626;
  --search-bg-focus-dark: #262626;
  --search-placeholder-color-dark: #d4d4d4;
  --pagination-text-color-dark: #737373;
  --pagination-hover-bg-dark: #171717;
  --pagination-hover-color-dark: var(--brand-color);
  --pagination-disabled-opacity-dark: 1;
  --pagination-disabled-color-dark: #737373;
  --blog-home-container-bg-dark: hsl(var(--background));
  --footer-bg-dark: hsl(var(--background));
  --footer-border-color-dark: #262626;
  --sort-dropdown-bg-dark: hsl(var(--background));
  --switcher-container-bg-dark: rgba(38, 38, 38, 0.7);
  --switcher-active-bg-dark: #404040;
}
