/* Target Squarespace Navigation Links */ .header-nav-item a, .header-actions a, .sqs-block-horizontalnav a { color: #ffffff !important; /* Normal link color */ text-decoration: none !important; position: relative; transition: all 0.3s ease; } /* Underline effect on hover */ .header-nav-item a::after, .header-actions a::after, .sqs-block-horizontalnav a::after { content: ""; position: absolute; left: 0; bottom: -4px; /* underline gap */ width: 0%; height: 2px; background-color: #00ff88; /* underline color */ transition: width 0.3s ease; } /* Hover state */ .header-nav-item a:hover, .header-actions a:hover, .sqs-block-horizontalnav a:hover { color: #00ff88 !important; /* text color change */ } .header-nav-item a:hover::after, .header-actions a:hover::after, .sqs-block-horizontalnav a:hover::after { width: 100%; }