/**
 * @file theme.css
 * shadcn/ui-Tokens als Aliasse auf SOLCOM-Brand-Tokens (siehe theme.brand.css).
 * Mapping-Änderungen hier; Brand-Werte in theme.brand.css.
 */

:root {
  --background: var(--brand-bg-blue);
  --foreground: var(--brand-white);
  --card: var(--brand-white);
  --card-foreground: var(--brand-dark-blue);
  --primary: var(--brand-lime);
  --primary-foreground: var(--brand-dark-blue);
  --secondary: var(--brand-light-gray);
  --secondary-foreground: var(--brand-dark-blue);
  --muted: var(--brand-light-gray);
  --muted-foreground: var(--brand-gray);
  /* --accent ist NICHT Lime: button.twig nutzt bg-accent für die "secondary"-
     Variante. Lime wäre dann visuell identisch zum Primary. */
  --accent: var(--brand-light-gray);
  --accent-foreground: var(--brand-dark-blue);
  --destructive: var(--brand-error);
  --destructive-foreground: var(--brand-white);
  --border: var(--brand-gray-15);
  --input: var(--brand-gray-15);
  --ring: var(--brand-lime);
  --font-sans: "ScalaSansWeb", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-display: "Montserrat", "ScalaSansWeb", "Helvetica Neue", Arial, 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);

  /* SOLCOM navbar height for hero-billboard `overlap_navbar: true`.
     Must match the actual rendered navbar (Figma 824:14769):
     - mobile: p-2 (8px) + h-12 logo (48px) + p-2 (8px) = 64px = spacing × 16
     - md+:    md:py-4 (16px) + h-[72px] logo + md:py-4 (16px) = 104px = spacing × 26 */
  --navbar-height: calc(var(--spacing) * 16);

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