/* Simple Static Social Media Buttons - Left Side */
.social-buttons {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-left: 10px;
}

.social-btn .icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Remove the ::before pseudo-element approach */

.social-btn .text {
    display: none;
}

/* Facebook */
.social-btn.facebook {
    background: #3b5998;
}

/* Instagram */
.social-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

/* YouTube */
.social-btn.youtube {
    background: #ff0000;
}

/* TikTok */
.social-btn.tiktok {
    background: #000000;
}

/* Responsive design */
@media (max-width: 768px) {
    .social-buttons {
        left: 5px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        margin-left: 0;
    }
    
    .social-btn .icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .social-buttons {
        left: 0;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
    }
    
    .social-btn .icon {
        font-size: 14px;
    }
}