/**
 * @file theme.css
 * shadcn/ui-compatible theme variables for ByteTheme.
 *
 * You can customize these values without rebuilding the compiled CSS.
 * Tools like https://tweakcn.com can help generate these values.
 */

:root {
  --dashscene-violet: #7b3ff2;
  --dashscene-pink: #ff4d8d;
  --dashscene-coral: #ff7a59;
  --dashscene-amber: #ffb347;

  --background: oklch(0.985 0.012 337.21);
  --foreground: oklch(0.33 0.104 310.41);
  --card: oklch(0.992 0.012 334.26 / 0.95);
  --card-foreground: var(--foreground);
  --primary: oklch(0.57 0.245 301.67);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.77 0.147 353.98);
  --secondary-foreground: oklch(0.31 0.096 309.27);
  --muted: oklch(0.948 0.028 316.53);
  --muted-foreground: oklch(0.46 0.11 307.88);
  --accent: oklch(0.985 0.008 29.42);
  --accent-foreground: oklch(0.31 0.096 309.27);
  --destructive: oklch(0.6368 0.2078 25.3313);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.83 0.075 313.45);
  --input: oklch(0.83 0.075 313.45);
  --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: 1rem;
  --shadow-x: 0;
  --shadow-y: 8px;
  --shadow-blur: 24px;
  --shadow-spread: 0px;
  --shadow-opacity: 0.16;
  --shadow-color: oklch(0.5 0.14 304.12);
  --shadow-2xs: 0 1px 2px 0 hsl(283 61% 41% / 0.08);
  --shadow-xs: 0 2px 4px 0 hsl(283 61% 41% / 0.1);
  --shadow-sm: 0 6px 12px -3px hsl(283 61% 41% / 0.14), 0 2px 4px -1px hsl(336 100% 65% / 0.1);
  --shadow: 0 10px 20px -6px hsl(283 61% 41% / 0.16), 0 3px 8px -2px hsl(336 100% 65% / 0.13);
  --shadow-md: 0 14px 28px -8px hsl(283 61% 41% / 0.2), 0 6px 12px -3px hsl(336 100% 65% / 0.16);
  --shadow-lg: 0 18px 32px hsl(283 61% 41% / 0.14), 0 6px 14px hsl(336 100% 65% / 0.14);
  --shadow-xl: 0 24px 40px hsl(283 61% 41% / 0.18), 0 8px 18px hsl(336 100% 65% / 0.16);
  --shadow-2xl: 0 30px 52px hsl(283 61% 41% / 0.22), 0 10px 24px hsl(336 100% 65% / 0.2);

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

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

  @media (min-width: 1280px) {
    --navbar-height: calc(var(--spacing) * 20 + 1px);
  }
}
