/**
 * @file theme.css
 * shadcn/ui-compatible theme variables for Joanszymko.
 *
 * 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.
 *
 * Brand colors extracted from logo SVG:
 *   #212120 — near-black (text/logo)
 *   #bfc0c0 — neutral grey (strokes/dots)
 *   #b3bd36 → #596834 — olive/chartreuse green gradient (logo mark)
 */

:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.155 0.003 100);        /* #212120 near-black */
  --card: oklch(0.972 0.006 120);
  --card-foreground: oklch(0.2 0.006 120);
  --primary: oklch(0.54 0.11 120);             /* ~#748234 mid olive */
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.93 0.003 180);          /* light grey, from #bfc0c0 */
  --secondary-foreground: oklch(0.28 0.006 120);
  --muted: oklch(0.96 0.005 120);
  --muted-foreground: oklch(0.52 0.008 120);
  --accent: oklch(0.73 0.14 112);              /* ~#b3bd36 bright olive-green */
  --accent-foreground: oklch(0.155 0.003 100);
  --destructive: oklch(0.6368 0.2078 25.3313);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.855 0.005 150);            /* from #bfc0c0 */
  --input: oklch(0.855 0.005 150);
  --font-sans: "Mulish", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-serif: "Playfair Display", 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 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);
  }
}

.dark {
  --background: oklch(0.155 0.006 120);        /* very dark olive-black */
  --foreground: oklch(0.97 0.003 120);
  --card: oklch(0.21 0.008 120);
  --card-foreground: var(--foreground);
  --primary: oklch(0.65 0.13 115);             /* brighter olive for dark bg */
  --primary-foreground: oklch(0.155 0.006 120);
  --secondary: oklch(0.32 0.006 150);          /* dark grey */
  --secondary-foreground: oklch(0.88 0.005 120);
  --muted: oklch(0.28 0.006 120);
  --muted-foreground: oklch(0.78 0.005 150);   /* from #bfc0c0 */
  --accent: oklch(0.73 0.14 112);              /* keep bright olive accent */
  --accent-foreground: oklch(0.155 0.006 120);
  --destructive: oklch(0.6368 0.2078 25.3313);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.35 0.006 140);
  --input: oklch(0.35 0.006 140);
  --font-sans: "Mulish", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-serif: "Playfair Display", 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.1), 0 12px 14px -1px hsl(0 0% 0% / 0.1);
}
