/**
 * Butler Quick Setup V2 Frontend Styles
 */

/* Butler Social Media Widget Styles */
.butler-social-media-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.butler-social-media-widget .elementor-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.butler-social-media-widget .elementor-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Social Media Platform Colors */
.butler-social-media-widget .elementor-social-icon-facebook {
    background-color: #1877f2;
    color: #ffffff;
}

.butler-social-media-widget .elementor-social-icon-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #ffffff;
}

.butler-social-media-widget .elementor-social-icon-twitter {
    background-color: #1da1f2;
    color: #ffffff;
}

.butler-social-media-widget .elementor-social-icon-youtube {
    background-color: #ff0000;
    color: #ffffff;
}

.butler-social-media-widget .elementor-social-icon-tiktok {
    background-color: #000000;
    color: #ffffff;
}

.butler-social-media-widget .elementor-social-icon-linkedin {
    background-color: #0077b5;
    color: #ffffff;
}

.butler-social-media-widget .elementor-social-icon-pinterest {
    background-color: #bd081c;
    color: #ffffff;
}

.butler-social-media-widget .elementor-social-icon-snapchat {
    background-color: #fffc00;
    color: #000000;
}

.butler-social-media-widget .elementor-social-icon-reddit {
    background-color: #ff4500;
    color: #ffffff;
}

.butler-social-media-widget .elementor-social-icon-discord {
    background-color: #5865f2;
    color: #ffffff;
}

/* Hover Effects */
.butler-social-media-widget .elementor-social-icon:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .butler-social-media-widget {
        gap: 8px;
    }
    
    .butler-social-media-widget .elementor-social-icon {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .butler-social-media-widget {
        gap: 6px;
    }
    
    .butler-social-media-widget .elementor-social-icon {
        font-size: 0.8em;
    }
}

/* Animation Classes */
.butler-social-media-widget .elementor-animation-pulse {
    animation: pulse 2s infinite;
}

.butler-social-media-widget .elementor-animation-bounce {
    animation: bounce 2s infinite;
}

.butler-social-media-widget .elementor-animation-shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
} 