/* =================================================================
   Social Media Icons Enhancement
   Better visibility and styling for social media links
   ================================================================= */

/* Social Links Container */
.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Individual Social Media Colors */
.social-links a[aria-label="LinkedIn"] {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
}

.social-links a[aria-label="LinkedIn"]:hover {
    background: linear-gradient(135deg, #005885 0%, #003d5c 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

/* Twitter/X with custom image logo */
/* Twitter / X */
.social-links a[aria-label="Twitter"] {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.social-links a[aria-label="Twitter"]:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-links a[aria-label="Twitter"] i {
    color: white !important;
}


.social-links a[aria-label="Facebook"] {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    color: white;
}

.social-links a[aria-label="Facebook"]:hover {
    background: linear-gradient(135deg, #0d5dbf 0%, #084a99 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-links a[aria-label="Instagram"] {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #bc1888 0%,#cc2366 25%,#dc2743 50%,#e6683c 75%,#f09433 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

/* Icon Styling - Ensure visibility */
.social-links a i {
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* LinkedIn icon - white on blue */
.social-links a[aria-label="LinkedIn"] i {
    color: white !important;
}

/* Facebook icon - white on blue */
.social-links a[aria-label="Facebook"] i {
    color: white !important;
}

/* Instagram icon - white on gradient */
.social-links a[aria-label="Instagram"] i {
    color: white !important;
}

/* Specific icon adjustments for Font Awesome */
.social-links a i.fa-linkedin-in,
.social-links a i.fa-facebook-f,
.social-links a i.fa-x-twitter,
.social-links a i.fa-instagram {
    font-size: 1.4rem;
}

/* Pulse animation on hover */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.social-links a:hover i {
    animation: pulse 0.6s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .social-links a i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .social-links a {
        width: 42px;
        height: 42px;
    }
    
    .social-links a i {
        font-size: 1.2rem;
    }
}
