/* css/themes.css */

/* Root-level design tokens */
:root {
  --background: #0d0d0d;
  --foreground: #f4f4f4;
  --accent: #e2d7bf;
  --bold: #990000; 
  --font-main: 'Orbitron', sans-serif;
  --text-muted: #999;
}

/* Global body defaults */
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
}

p,
li,
blockquote,
dd,
dt {
  color: var(--foreground);
}

/* Anchor styling */
a, a:visited {
  color: var(--accent);
  text-decoration: none;
}

/* Simple hover underline */
a:hover {
  text-decoration: underline;
}

/* Headings share uppercase styling and accent colour */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
}
