﻿/* ================= SOCIAL LINKS STYLING ================= */

/* Header Social Links */
.header-social-links {
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

    .header-social-links .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2); /* Darker background for visibility */
        color: white !important; /* Force white color */
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

        /* Make sure icons are visible even without hover */
        .header-social-links .social-link i {
            color: white !important;
            opacity: 1 !important;
        }

        .header-social-links .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        /* Platform-specific colors */
        .header-social-links .social-link.facebook {
            background: #3b5998 !important;
        }

        .header-social-links .social-link.twitter {
            background: #1da1f2 !important;
        }

        .header-social-links .social-link.instagram {
            background: linear-gradient(45deg, #e1306c, #515bd4) !important;
        }

        .header-social-links .social-link.youtube {
            background: #ff0000 !important;
        }

        .header-social-links .social-link.linkedin {
            background: #0077b5 !important;
        }

        .header-social-links .social-link.whatsapp {
            background: #25d366 !important;
        }

/* Footer Social Links */
.footer-social .social-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .footer-social .social-icon-circle i {
        color: white !important;
    }

    .footer-social .social-icon-circle:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
        border-color: white;
    }

    /* Footer platform colors */
    .footer-social .social-icon-circle.facebook {
        background: #3b5998 !important;
    }

    .footer-social .social-icon-circle.twitter {
        background: #1da1f2 !important;
    }

    .footer-social .social-icon-circle.instagram {
        background: linear-gradient(45deg, #e1306c, #515bd4) !important;
    }

    .footer-social .social-icon-circle.youtube {
        background: #ff0000 !important;
    }

    .footer-social .social-icon-circle.linkedin {
        background: #0077b5 !important;
    }

    .footer-social .social-icon-circle.whatsapp {
        background: #25d366 !important;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-social-links {
        gap: 8px;
        justify-content: center;
        margin-top: 5px;
    }

        .header-social-links .social-link {
            width: 36px;
            height: 36px;
            font-size: 1rem;
        }

    .footer-social .social-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Force icon visibility in all states */
.social-link i,
.social-icon-circle i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
