/* ==============================
   SOCIAL MEDIA ICONS – FOOTER
   Server Safe / Mobile Safe
   ============================== */

/* Container */
.contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    margin: 2rem 0;
}

/* Reset list */
.contact-social li {
    list-style: none;
}

/* Circle base */
.contact-social li {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Link + icon */
.contact-social a {
    width: 100%;
    height: 100%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* ==============================
   INSTAGRAM
   ============================== */
.instagram {
    background: linear-gradient(45deg,
            #405DE6,
            #5851DB,
            #833AB4,
            #C13584,
            #E1306C,
            #FD1D1D);
}

.instagram:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(255, 0, 150, 0.6);
}

/* ==============================
   TIKTOK
   ============================== */
.tiktok {
    background: #000000;
}

.tiktok:hover {
    transform: scale(1.15);
    box-shadow:
        0 0 10px rgba(37, 244, 238, 0.7),
        0 0 20px rgba(254, 44, 85, 0.6);
}

/* ==============================
   FACEBOOK
   ============================== */
.facebook {
    background: #1877F2;
}

.facebook:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
}

/* ==============================
   MOBILE TOUCH FIX
   (prevents sticky hover)
   ============================== */
@media (hover: none) {
    .contact-social li:hover {
        transform: none;
        box-shadow: none;
    }
}