/* ===== Social Media Bar ===== */

.social-bar {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.social-bar a {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: purple;
    color: #fff;

    text-decoration: none;
    font-size: 26px;

    transition: transform .25s ease,
                box-shadow .25s ease,
                background .25s ease;

    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.social-bar a:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

.social-bar a:active {
    transform: scale(.96);
}