So I set the menu hover color and its active status color as the same color. For the button, “Book Now”, I changed the background color when it’s hovered. But since the active status color and the hovered background color are the same, when I hover the “book now” button, the text becomes invisible. How can I change the active status color just for the specific part, which is book now text? Here’s the page with the issue and code I used: https://www.poshpush.me/pages/services
.header__menu-item:hover span {
text-decoration: none;
}
.header__active-menu-item {
text-decoration: none;
color: #93859F;
}
.header__menu-item:hover {
color: #93859F;
}
#HeaderMenu-book-now:hover {
color: #F8EBEB;
background: #93859F;
}



