/* Social Sidebar Styles */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-toggle {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    border-radius: 0 5px 5px 0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.social-toggle:hover {
    background-color: #333;
    width: 50px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    border-radius: 0 5px 5px 0;
}

.social-sidebar.active .social-icons {
    width: 50px;
    height: auto;
    opacity: 1;
    padding: 10px 0;
}

.social-sidebar.active .social-toggle {
    border-radius: 0 5px 0 0;
    margin-bottom: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #333;
    color: #d4a017; /* Gold accent color */
    transform: translateX(5px);
}

/* Specific Colors if needed, but going for dark theme as per image */
.social-icon.facebook:hover { color: #1877f2; }
.social-icon.instagram:hover { color: #e4405f; }
.social-icon.youtube:hover { color: #ff0000; }
.social-icon.linkedin:hover { color: #0077b5; }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .social-sidebar {
        display: none; /* Often hidden on mobile to avoid covering content, or can be adjusted */
    }
}
