/* ---------- LINKS ---------- */

/* Sets the normal color of all text links across your site */
a {
  color: #00629B;             /* Default Link Color: Blue */
  text-decoration: none !important;      /* Removes Underline */
}

/* Sets how links look when hovered or focused (keyboard navigation) */
a:hover,
a:focus {
  color: #182B49;             /* Switch to Navy on hover */
  text-decoration: underline !important; /* adds underline for clarity */
}

/* ---------- HEADER (the top navigation bar) ---------- */

/* Change the link color inside the header navigation */
.masthead a {
  color: #182B49;             /* make header links white */
}
.masthead a:hover {
  color: #C69214;             /* add a contrasting gold hover */
}