/* ------------------------------------------------------
   site.css (global)
   ------------------------------------------------------
   This file is loaded on every page in the <head>.
   Keep it minimal and predictable.
*/

:root {
  /* Simple baseline; theme packs can override if enabled */
  --font-sans: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --text-color: #111;
  --bg-color: #fff;
  --link-color: #0b5fff;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.5;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
}

.page-title {
  margin: 0 0 12px 0;
  font-size: 28px;
  font-weight: 700;
}

.muted {
  opacity: 0.75;
}
