/* Global accent color override */
:root {
  --accent-color: #ee2053;
}

/* Only change hover/focus colors, keep default colors intact */
/* Exclude our custom buttons from the hover color change */
a:not(.btn):hover,
a:not(.btn):focus {
  color: #ee2053 !important;
}

.navigation a:hover,
.navigation a:focus {
  color: #ee2053 !important;
}

.about ul li a:hover,
.about ul li a:focus {
  color: #ee2053 !important;
}

/* Keep button text white on hover */
.home-buttons .btn:hover {
  color: white !important;
}