/* 
 * Mix Center - Social Media Styles
 * This file contains styles for social media elements
 */

/* Instagram link in header */
.new-site-link {
    margin-left: 20px;
    padding: 8px 15px;
    background-color: var(--mix-red);
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.new-site-link:hover {
    background-color: var(--mix-bright-red);
    transform: scale(1.05);
}

.new-site-link a {
    color: var(--mix-white);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.new-site-link i {
    color: var(--mix-yellow);
    margin-right: 5px;
    font-size: 1.2rem;
}

/* Social media icons in footer */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
    background-color: white;
    color: var(--mix-bright-red);
    transform: translateY(-3px) scale(1.05);
    border-color: white;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.social-icons i {
    font-size: 1.2rem;
}