/* Base styles shared by every page. Page-specific rules live in that page's <head> block. */
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #faf9f7;
  color: #1c2430;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
a { color: #5a4fb0; text-decoration: none; }
a:hover { color: #3c3382; }

/* Top navigation (partials/nav.html) */
.site-nav a { color: #6f7580; }
.site-nav a:hover { color: #1c2430; }
.site-nav a.is-active { color: #1c2430; padding-bottom: 2px; border-bottom: 2px solid #b9b2e5; }

/* Forms (pages/contact.html) */
input, textarea, select, button { font-family: inherit; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #b9b2e5;
  box-shadow: 0 0 0 3px rgba(185, 178, 229, 0.28);
}
::placeholder { color: #a9a49a; }
