/* Default light theme */
:root {
  --bg-color: #f5f7fa;
  --text-color: #1a1a1a;
}

/* Offset content so it's not hidden under fixed menu */
body {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0;
  box-sizing: border-box;
}

* {
  font-family: 'NeutralSans', sans-serif;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #121212;
    --text-color: #eaeaea;
  }
}

/* Apply globally */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: system-ui, sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  animation: fadeIn 0.5s ease-in-out;
}