/**
 * PROFILE SOCIAL ICONS
 * Styles for LinkedIn and GitHub icons on profile picture
 * Makes them visible, prominent, and circular like the reference images
 */

/* Profile Social Container */
.profile-social {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 20px !important;
    padding: 15px 0 !important;
    width: 100% !important;
}

/* Profile Social Icons - Circular, Prominent */
.profile-social a,
.profile-social-linkedin,
.profile-social-github {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    z-index: 10 !important;
    flex-shrink: 0 !important;
}

/* LinkedIn Icon - Blue Background */
.profile-social-linkedin {
    background: #0077b5 !important;
    color: #ffffff !important;
}

.profile-social-linkedin,
.profile-social-linkedin *,
.profile-social-linkedin i,
.profile-social-linkedin .fab,
.profile-social-linkedin .fa-linkedin {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
}

.profile-social-linkedin:hover {
    background: #005885 !important;
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 6px 12px rgba(0, 119, 181, 0.4) !important;
}

/* GitHub Icon - Dark Gray Background with Border */
.profile-social-github {
    background: #24292e !important;
    color: #ffffff !important;
    border: 2px solid #f0f0f0 !important;
}

.profile-social-github,
.profile-social-github *,
.profile-social-github i,
.profile-social-github .fab,
.profile-social-github .fa-github {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
}

.profile-social-github:hover {
    background: #1a1e22 !important;
    border-color: #ffffff !important;
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 6px 12px rgba(36, 41, 46, 0.4) !important;
}

/* Icon Font Size - Force White Color */
.profile-social a i,
.profile-social-linkedin i,
.profile-social-github i,
.profile-social a .fab,
.profile-social-linkedin .fab,
.profile-social-github .fab,
.profile-social a .fa-linkedin,
.profile-social-linkedin .fa-linkedin,
.profile-social a .fa-github,
.profile-social-github .fa-github {
    font-size: 1.5rem !important;
    line-height: 1 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    text-align: center !important;
    vertical-align: middle !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force icon visibility on all states */
.profile-social a i::before,
.profile-social-linkedin i::before,
.profile-social-github i::before {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Dark Mode Support */
body.dark-mode .profile-social-linkedin {
    background: #0077b5 !important;
    color: #ffffff !important;
}

body.dark-mode .profile-social-github {
    background: #24292e !important;
    color: #ffffff !important;
    border-color: #f0f0f0 !important;
}

body.dark-mode .profile-social-github:hover {
    background: #1a1e22 !important;
    border-color: #ffffff !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-social {
        gap: 15px !important;
        margin-top: 15px !important;
    }
    
    .profile-social a,
    .profile-social-linkedin,
    .profile-social-github {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
    }
    
    .profile-social a i,
    .profile-social-linkedin i,
    .profile-social-github i {
        font-size: 1.3rem !important;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .profile-social a,
    .profile-social-linkedin,
    .profile-social-github {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
    }
    
    .profile-social a i,
    .profile-social-linkedin i,
    .profile-social-github i {
        font-size: 1.4rem !important;
    }
}

/* Ensure icons are always visible */
.profile-social a,
.profile-social-linkedin,
.profile-social-github {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

/* Focus states for accessibility */
.profile-social a:focus,
.profile-social-linkedin:focus,
.profile-social-github:focus {
    outline: 3px solid var(--primary-color, #0d6efd) !important;
    outline-offset: 3px !important;
}
