.nav-button {
    background-color: black !important;
    color: #D4AF36 !important; /* Gold text */
    border: 2px solid #D4AF36 !important;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
}
.nav-button:hover {
    background-color: #D4AF36 !important;
    color: black !important;
}
.nav-button:focus {
    outline: 2px solid #D4AF36;
    outline-offset: 2px;
}
@media (max-width: 768px) {
    .nav-button {
        width: 100%;
        font-size: 14px;
        padding: 8px 16px;
    }
}