/* =========================================================================
   SHARE BUTTON ANIMATIONS
   ========================================================================= */

#share-contact {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#share-contact:hover {
    transform: scale(1.15) rotate(8deg);
    background-color: #F7942E; /* Corporate Orange-Accent */
    box-shadow: 0 4px 15px rgba(247, 148, 46, 0.3);
}

#share-contact:active {
    transform: scale(0.95);
}

#share-contact .material-symbols-outlined {
    transition: transform 0.3s ease;
}

#share-contact:hover .material-symbols-outlined {
    transform: scale(1.1);
}
