/* ============================================================
   MAIN.CSS — App-wide base rules (lean; theme + components + motion carry the weight)
   ============================================================ */

/* Body — warm background via theme.css / components.css */
body {
  background-color: var(--pc-bg, #FBF7F1);
}

/* Navbar brand weight */
.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--pc-accent-soft, rgba(240,101,74,0.18));
  color: var(--pc-text, #211C17);
}
