/* theme.css – färg/uttryck (platshållare) */

:root {
  /* Byt till faktiska färger när ni bestämmer identitet */
  --bg: #f7f4ee;
  --text: #1a0d03;
  --muted: rgba(26, 13, 3, 0.75);
  --border: rgba(26, 13, 3, 0.18);

  /* Accent (om/om inte) */
  --accent: #ff801a;
}

.site-header {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.45)
  );
  backdrop-filter: blur(6px);
}

a { color: inherit; }

.btn {
  background: rgba(255, 255, 255, 0.75);
}

.btn:hover {
  border-color: rgba(26, 13, 3, 0.35);
}

/* Exempel: markera aktiv länk subtilt */
.nav-list a[aria-current="page"] {
  text-decoration-thickness: 3px;
}
