/* Minimal, clean tweaks */
:root {
  --main-font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
body { 
  font-family: var(--main-font); 
}
.navbar-brand { 
  font-weight: 600; 
}
.quarto-title-banner { 
  padding-top: 1.2rem; 
  padding-bottom: 1.2rem; 
}
img[alt="headshot"] { 
  border-radius: 9999px; 
}
.card, .callout { 
  border-radius: 14px; 
}

/* Navbar background: olive green */
.navbar {
  background-color: #013220 !important; /* Olive green */
}

/* Navbar brand (site title) color */
.navbar-brand {
  color: white !important;
}

/* Navbar links */
.navbar .nav-link {
  color: white !important;
}

/* Navbar link hover */
.navbar .nav-link:hover {
  color: #a8d5ba !important; /* lighter olive/tan */
}


a {
  color: #0b6b3a; /* normal link color */
  text-decoration: none; /* remove underline if you prefer */
}

a:hover,
a:focus {
  color: #064420; /* darker on hover */
  text-decoration: underline; /* underline on hover for accessibility */
}
/