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

:root {
  /*--background: oklch(28.32% 0.007 261.2);
  --foreground: oklch(16.029% 0.00168 16.738);
  --card: oklch(22% 0.007 261.2);
  --card-foreground: var(--foreground);
  --primary: oklch(71.45% 0.108 81.37);
  --primary-foreground: var(--foreground);
  --secondary: oklch(38% 0.007 261.2);
  --secondary-foreground: oklch(0.13 0.043 265.132);
  --muted: oklch(0.28 0.041 260.329);
  --muted-foreground: oklch(0.967 0.003 264.542);
  --accent: oklch(0.932 0.032 255.585);
  --accent-foreground: oklch(0.13 0.043 265.132);
  --destructive: oklch(0.6368 0.2078 25.3313);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.373 0.031 259.733);
  --input: oklch(0.373 0.031 259.733);*/
/* --- Simeoni Dark Design (Basierend auf #35363a) --- */
  --background: oklch(23.57% 0.004 285.95);
  
  /* Sehr dunkles Grau/Schwarz für Texte auf hellem Grund, 
     aber hier primär als Kontrast-Referenz */
  --foreground: oklch(95% 0.005 261.2); 

  /* Die Karte: Etwas heller als der Background für Tiefe */
  --card: oklch(33% 0.008 261.2); 
  --card-foreground: oklch(98% 0.002 261.2); /* Fast Weißer Text auf dunkler Karte */

  /* --- Primary Box Simeoni Gold (#c2a45f) --- */
  --primary: oklch(71.45% 0.108 81.37); 
  --primary-foreground: oklch(15% 0.01 81.37); /* Dunkler Text auf Gold */

  /* --- Secondary Box --- */
  --secondary: oklch(28.00% 0.004 285.95); 
  --secondary-foreground: oklch(98% 0 0);

  /* Muted: Dezent für Nebensächliches */
  --muted: oklch(35% 0.01 261.2);
  --muted-foreground: oklch(75% 0.01 261.2);

  /* Accent: Für Hervorhebungen (Ein Tick heller als die Karte) */
  --accent: oklch(92% 0.004 285.95);
  --accent-foreground: oklch(0.13 0.043 265.132);

  /* Destructive: Ein gedecktes Rot für Fehlermeldungen */
  --destructive: oklch(55% 0.15 25);
  --destructive-foreground: oklch(98% 0 0);

  /* Borders & Inputs: Sichtbar, aber dezent auf dem dunklen Hintergrund */
  --border: oklch(40% 0.01 261.2);
  --input: oklch(35% 0.01 261.2);
  
  --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: 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.25);

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

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