/**
 * @file theme.css
 * Minsait Marketplace Theme Variables
 *
 * Color palette based on Minsait corporate branding.
 * Primary color: #480e2a (deep wine/maroon)
 */

:root {
  /* Minsait Marketplace Color Palette */
  /* Dynamic branding colors are now injected by Drupal Theme Settings
     into the HTML head via ThemeHooks.php. This avoids conflicts
     between static CSS and administrative configuration. */

  /* Typography - Inter font family */

  /* Typography - Inter font family */
  --font-sans: "Inter", "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;

  /* Border radius matching prototype */
  --radius: 0.375rem;

  /* Shadows */
  --shadow-x: 0;
  --shadow-y: 1px;
  --shadow-blur: 3px;
  --shadow-spread: 0px;
  --shadow-opacity: 0.1;
  --shadow-color: oklch(0.25 0.09 350);
  --shadow-2xs: 0 1px 3px 1px hsl(350 30% 10% / 0.05);
  --shadow-xs: 0 1px 3px 1px hsl(350 30% 10% / 0.05), 0 1px 2px -1px hsl(350 30% 10% / 0.1);
  --shadow-sm: 0 1px 3px 1px hsl(350 30% 10% / 0.1), 0 2px 4px -1px hsl(350 30% 10% / 0.1);
  --shadow: 0 1px 3px 1px hsl(350 30% 10% / 0.1), 0 2px 4px -1px hsl(350 30% 10% / 0.1);
  --shadow-md: 0 1px 3px 1px hsl(350 30% 10% / 0.1), 0 4px 6px -2px hsl(350 30% 10% / 0.1);
  --shadow-lg: 0 1px 3px 1px hsl(350 30% 10% / 0.1), 0 8px 10px -2px hsl(350 30% 10% / 0.1);
  --shadow-xl: 0 1px 3px 1px hsl(350 30% 10% / 0.1), 0 12px 14px -3px hsl(350 30% 10% / 0.1);
  --shadow-2xl: 0 1px 3px 1px hsl(350 30% 10% / 0.1), 0 16px 18px -3px hsl(350 30% 10% / 0.1);
  --tracking-normal: 0em;
  --spacing: 0.25rem;

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

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


}

.dark {
  /* Colors managed via Theme Settings in the administration panel */
  --font-sans: "Inter", "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.375rem;
  --shadow-x: 0;
  --shadow-y: 1px;
  --shadow-blur: 3px;
  --shadow-spread: 0px;
  --shadow-opacity: 0.15;
  --shadow-color: oklch(0 0 0);
  --shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.1);
  --shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.1);
  --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.15), 0 1px 2px -1px hsl(0 0% 0% / 0.15);
  --shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.15), 0 1px 2px -1px hsl(0 0% 0% / 0.15);
  --shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.15), 0 2px 4px -1px hsl(0 0% 0% / 0.15);
  --shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.15), 0 4px 6px -1px hsl(0 0% 0% / 0.15);
  --shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.15), 0 8px 10px -1px hsl(0 0% 0% / 0.15);
  --shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.15), 0 12px 14px -1px hsl(0 0% 0% / 0.15);


}

