/**
 * @file theme.css
 * shadcn/ui-compatible theme variables for Mercury.
 *
 * You can customize these values without rebuilding the compiled CSS.
 * Tools like https://tweakcn.com can help generate these values. Copy this
 * file to your web root, so it sits next to index.php, and clear Drupal's
 * cache. Then, any changes you make in this file should be reflected right away.
 */

:root {
  --background: rgba(10, 22, 40, 1);
  --foreground: rgba(255, 255, 255, 1);
  --card: rgba(26, 47, 79, 1);
  --card-foreground: rgba(255, 255, 255, 0.6);
  --primary: rgba(0, 122, 255, 1);
  --primary-foreground: rgba(255, 255, 255, 1);
  --secondary: rgba(0, 0, 0, 1) /* Unknown OKLCH: 0.9219 0.0 0.0 */;
  --secondary-foreground: rgba(51, 71, 98, 1);
  --muted: rgba(242, 245, 249, 1);
  --muted-foreground: rgba(18, 32, 51, 1);
  --accent: rgba(218, 28, 92, 1);
  --accent-foreground: var(--foreground);
  --cta: rgba(235, 94, 59, 1);
  --cta-foreground: rgba(255, 255, 255, 1);
  --cta-secondary: rgba(246, 201, 178, 1);
  --cta-secondary-foreground: rgba(10, 22, 40, 1);
  --destructive: rgba(239, 68, 68, 1);
  --destructive-foreground: rgba(255, 255, 255, 1);
  --border: rgba(0, 0, 0, 1) /* Unknown OKLCH: 0.872 0.009 258.338 */;
  --input: rgba(0, 0, 0, 1) /* Unknown OKLCH: 0.872 0.009 258.338 */;
  --font-sans: "Roboto", "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: "Roboto", "Inter", 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: rgba(0, 0, 0, 1) /* Unknown OKLCH: 0.0 0.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;

  /* Breakpoints */
  --breakpoint-sm: 600px;
  --breakpoint-md: 900px;
  --breakpoint-lg: 1200px;

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

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

.dark {
  --background: rgba(10, 22, 40, 1);
  --foreground: rgba(255, 255, 255, 1);
  --card: rgba(26, 47, 79, 1);
  --card-foreground: rgba(255, 255, 255, 0.9);
  --primary: oklch(0.547 0.246 262.866);
  --primary-foreground: rgba(255, 255, 255, 1);
  --secondary: rgba(42, 63, 89, 1);
  --secondary-foreground: rgba(255, 255, 255, 1);
  --muted: rgba(42, 63, 89, 1);
  --muted-foreground: rgba(255, 255, 255, 0.6);
  --accent: rgba(218, 28, 92, 1);
  --accent-foreground: var(--foreground);
  --cta: rgba(235, 94, 59, 1);
  --cta-foreground: rgba(255, 255, 255, 1);
  --cta-secondary: rgba(246, 201, 178, 1);
  --cta-secondary-foreground: rgba(10, 22, 40, 1);
  --destructive: oklch(0.6368 0.2078 25.3313);
  --destructive-foreground: rgba(255, 255, 255, 1);
  --border: rgba(67, 85, 110, 1);
  --input: rgba(67, 85, 110, 1);
  --font-sans: "Roboto", "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;
  --radius: 0.5rem;
  --shadow-x: 0;
  --shadow-y: 1px;
  --shadow-blur: 3px;
  --shadow-spread: 0px;
  --shadow-opacity: 0.1;
  --shadow-color: rgba(0, 0, 0, 1);
  --shadow-2xs: 0 1px 3px 0px rgba(0, 0, 0, 0.05);
  --shadow-xs: 0 1px 3px 0px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 1px 3px 0px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 1px 3px 0px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 1px 3px 0px rgba(0, 0, 0, 0.1), 0 8px 10px -1px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 1px 3px 0px rgba(0, 0, 0, 0.1), 0 12px 14px -1px rgba(0, 0, 0, 0.1);
}
