/**
 * @file misa-theme.css
 * Modern in San Antonio brand tokens, overriding Mercury's theme.css.
 *
 * Base values (radius, shadows, spacing) are inherited from Mercury as-is;
 * only colors and type are swapped for values recovered from the live
 * moderninsanantonio.com site's own public CSS. The 8 --category-* custom
 * properties are MiSA-specific additions (not part of Mercury/shadcn) used
 * by the navbar, footer, and content SDCs for category-coded accents.
 */

:root {
  --background: #ffffff;
  --foreground: #333333;
  --card: #f3f3f3;
  --card-foreground: #333333;
  --primary: #232323;
  --primary-foreground: #ffffff;
  --secondary: #f3f3f3;
  --secondary-foreground: #333333;
  --muted: #f3f3f3;
  --muted-foreground: #6f7173;
  --accent: #f3f3f3;
  --accent-foreground: var(--foreground);
  --destructive: oklch(0.6368 0.2078 25.3313);
  --destructive-foreground: #ffffff;
  --border: #e0e0e0;
  --input: #e0e0e0;
  --font-sans: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-mono: "Fira Mono", "Menlo", "Consolas", "Liberation Mono", monospace;
  --font-body: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --radius: 0.5rem;
  --shadow-x: 0;
  --shadow-y: 1px;
  --shadow-blur: 3px;
  --shadow-spread: 0px;
  --shadow-opacity: 0.1;
  --shadow-color: oklch(0 0 0);
  --shadow-2xs: 0 1px 3px 1px hsl(0 0% 0% / 0.05);
  --shadow-xs: 0 1px 3px 1px hsl(0 0% 0% / 0.05), 0 1px 2px -1px hsl(0 0% 0% / 0.1);
  --shadow-sm: 0 1px 3px 1px hsl(0 0% 0% / 0.1), 0 2px 4px -1px hsl(0 0% 0% / 0.1);
  --shadow: 0 1px 3px 1px hsl(0 0% 0% / 0.1), 0 2px 4px -1px hsl(0 0% 0% / 0.1);
  --shadow-md: 0 1px 3px 1px hsl(0 0% 0% / 0.1), 0 4px 6px -2px hsl(0 0% 0% / 0.1);
  --shadow-lg: 0 1px 3px 1px hsl(0 0% 0% / 0.1), 0 8px 10px -2px hsl(0 0% 0% / 0.1);
  --shadow-xl: 0 1px 3px 1px hsl(0 0% 0% / 0.1), 0 12px 14px -3px hsl(0 0% 0% / 0.1);
  --shadow-2xl: 0 1px 3px 1px hsl(0 0% 0% / 0.1), 0 16px 18px -3px hsl(0 0% 0% / 0.1);
  --tracking-normal: 0em;
  --spacing: 0.25rem;

  /* Set navbar height for hero billboard overlay */
  --navbar-height: calc(var(--spacing) * 15);

  @media (min-width: 768px) {
    --navbar-height: calc(var(--spacing) * 18);
  }

  /* MiSA category brand colors, recovered from the live site's public CSS.
     "Stay" has no recovered color (disabled on the live site); falls back
     to --muted-foreground until the client provides one. */
  --category-arts: #fcbc3e;
  --category-living: #77bc43;
  --category-urban: #6cdbf5;
  --category-eats: #00b1e1;
  --category-icons: #ef5023;
  --category-educate: #b81946;
  --category-stay: var(--muted-foreground);
  --category-rockstars: #d54297;
}

.dark {
  --background: #1a1a1a;
  --foreground: #f3f3f3;
  --card: #232323;
  --card-foreground: #f3f3f3;
  --primary: #f3f3f3;
  --primary-foreground: #232323;
  --secondary: #333333;
  --secondary-foreground: #f3f3f3;
  --muted: #333333;
  --muted-foreground: #bbbbbb;
  --accent: #333333;
  --accent-foreground: #f3f3f3;
  --destructive: oklch(0.6368 0.2078 25.3313);
  --destructive-foreground: #ffffff;
  --border: #444444;
  --input: #444444;
  --font-sans: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-mono: "Fira Mono", "Menlo", "Consolas", "Liberation Mono", monospace;
  --font-body: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --radius: 0.5rem;
  --shadow-x: 0;
  --shadow-y: 1px;
  --shadow-blur: 3px;
  --shadow-spread: 0px;
  --shadow-opacity: 0.1;
  --shadow-color: oklch(0 0 0);
  --shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
  --shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
  --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 1px 2px -1px hsl(0 0% 0% / 0.1);
  --shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 1px 2px -1px hsl(0 0% 0% / 0.1);
  --shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 2px 4px -1px hsl(0 0% 0% / 0.1);
  --shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 4px 6px -1px hsl(0 0% 0% / 0.1);
  --shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 8px 10px -1px hsl(0 0% 0% / 0.1);
  --shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 12px 14px -1px hsl(0 0% 0% / 0.1);

  /* Category colors stay the same in dark mode -- they're brand identity,
     not a UI surface color. */
  --category-arts: #fcbc3e;
  --category-living: #77bc43;
  --category-urban: #6cdbf5;
  --category-eats: #00b1e1;
  --category-icons: #ef5023;
  --category-educate: #b81946;
  --category-stay: var(--muted-foreground);
  --category-rockstars: #d54297;
}
