/* ─── Link Styling ───────────────────────────────────────────── */

a {
	color: var(--conifer);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: var(--wild-willow);
	text-decoration: underline;
}

a:visited {
	color: var(--conifer-hover);
}

/* Buttons and nav should never underline */
.btn,
.btn:hover,
.btn:focus,
.nav-link,
.nav-link:hover,
.dropdown-item,
.dropdown-item:hover {
	text-decoration: none !important;
}

/* Reset visited for nav links and buttons */
.nav-link:visited,
.btn:visited,
.dropdown-item:visited {
	color: inherit;
}

.text-white a:not(.btn),
.bg-dark a:not(.btn),
.footer a:not(.btn) {
	color: rgba(255, 255, 255, 0.6);
}

.text-white a:not(.btn):hover,
.bg-dark a:not(.btn):hover,
.footer a:not(.btn):hover {
	color: var(--buttercup);
}
