#fw-section-header {

/* Clean, Lean Text Navigation */
.header__nav a,
.header-nav__link,
.header-menu a,
nav ul li a {
    display: inline-block !important;
    margin: 0 15px !important; /* Generous breathing room between links */
    padding: 5px 0 !important; 
    
    /* Elegant Typography */
    text-transform: uppercase !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    
    /* Strip away button properties */
    background-color: transparent !important; 
    color: inherit !important; /* Automatically matches your theme's text color */
    border: none !important;
    
    /* Smooth, subtle interaction */
    transition: opacity 0.2s ease-in-out !important;
}

/* Subtle Hover Fade */
.header__nav a:hover,
.header-nav__link:hover,
.header-menu a:hover,
nav ul li a:hover {
    opacity: 0.5 !important; /* Fades the text slightly when hovered */
    background-color: transparent !important;
    transform: none !important; /* Removes the button lift effect */
}
}