/**
 * CONTACT BUTTONS ALWAYS VISIBLE
 * Ensures LinkedIn and GitHub button text is always visible, not just on hover
 */

/* Force GitHub button text to always be white and visible */
.contact-btn-github,
.contact-btn-github:link,
.contact-btn-github:visited,
.contact-btn-github:active,
.contact-btn-github:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    background: #24292e !important;
}

.contact-btn-github:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    background: #1a1e22 !important;
}

/* Force all child elements to be white */
.contact-btn-github *,
.contact-btn-github i,
.contact-btn-github span,
.contact-btn-github::before,
.contact-btn-github::after {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    fill: #ffffff !important;
}

/* Force LinkedIn button text to always be white */
.contact-btn-linkedin,
.contact-btn-linkedin:link,
.contact-btn-linkedin:visited,
.contact-btn-linkedin:active,
.contact-btn-linkedin:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    background: #0077b5 !important;
}

.contact-btn-linkedin:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    background: #005885 !important;
}

/* Force all child elements to be white */
.contact-btn-linkedin *,
.contact-btn-linkedin i,
.contact-btn-linkedin span,
.contact-btn-linkedin::before,
.contact-btn-linkedin::after {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    fill: #ffffff !important;
}

/* Ensure buttons are always visible */
.contact-btn-linkedin,
.contact-btn-github {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Override any text color inheritance */
.contact-social-actions .contact-btn-linkedin,
.contact-social-actions .contact-btn-github {
    color: #ffffff !important;
}

.contact-social-actions .contact-btn-linkedin *,
.contact-social-actions .contact-btn-github * {
    color: #ffffff !important;
}
