/* ---------------------------------------------------------------------------
   Theme variables — single fixed dark theme.
   Dark/light mode was removed (no toggle, no admin color picker). The site is
   one consistent dark theme with a clean white accent.
   --------------------------------------------------------------------------- */

:root {
  /* Base theme colors */
  --primary-color: #ffffff;
  --secondary-color: #e5e5e5;
  --accent-color: #ffffff;
  --tertiary-color: #f5f5f5;
  --border-color: rgba(255, 255, 255, 0.12);
  --heading-color: #ffffff;
  --header-text-color: #ffffff;
  --footer-text-color: rgba(255, 255, 255, 0.7);

  /* Background and text — fixed dark */
  --background-color: #000000;
  --text-color: #ffffff;

  /* Buttons */
  --button-text-color: #000000;
  --button-background-color: #ffffff;
  --button-border-color: #ffffff;

  /* Legacy theme bright variables for compatibility — white accent */
  --theme-bright: #ffffff;
  --theme-bright-dark: #e5e5e5;
  --theme-bright-darker: #cccccc;
  --theme-bright-light: #ffffff;
  --theme-bright-lighter: #ffffff;
  --theme-bright-pale: #ffffff;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
}

/* Meta theme-color for browser UI */
meta[name="theme-color"] {
  content: #000000;
}