/**
 * @file theme.css
 * shadcn/ui-compatible theme variables for FebTheme.
 *
 * 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 {
  /* febana design tokens -- mapped from Grav fairora theme */
  --background: #ffffff;
  --foreground: #2d2d28;
  --card: #f5f5f0;
  --card-foreground: #2d2d28;
  --primary: #0066FF;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f0;
  --secondary-foreground: #2d2d28;
  --muted: #e5e5e0;
  --muted-foreground: #666660;
  --accent: #0066FF;
  --accent-foreground: #ffffff;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #e5e5e0;
  --input: #e5e5e0;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-mono: "Fira Mono", "Menlo", "Consolas", "Liberation Mono", monospace;
  --radius: 0;
  --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: 0.01em;
  --spacing: 0.25rem;

  --off-white: #f5f5f0;
  --gray-50: #fafaf8;
  --gray-100: #e5e5e0;
  --gray-200: #d0d0ca;
  --gray-400: #999994;
  --gray-600: #666660;
  --gray-800: #2d2d28;
  --nav-h: 52px;

  --navbar-height: var(--nav-h);

  @media (min-width: 768px) {
    --navbar-height: var(--nav-h);
  }
}

.dark {
  --background: #1a1a17;
  --foreground: #f5f5f0;
  --card: #2d2d28;
  --card-foreground: #f5f5f0;
  --primary: #0066FF;
  --primary-foreground: #f5f5f0;
  --secondary: #3a3a35;
  --secondary-foreground: #1a1a17;
  --muted: #3a3a35;
  --muted-foreground: #d0d0ca;
  --accent: #0066FF;
  --accent-foreground: #1a1a17;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #3a3a35;
  --input: #3a3a35;
}
