/* Social media buttons styling */

/* Nieuwe, moderne social media sidebar */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

/* Algemene stijl voor de sociale knoppen */
.social-button {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #1877F2; /* Facebook blauw */
    border-radius: 0 8px 8px 0;
    margin: 1px 0;
    position: relative;
    color: white;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Fancy easing voor vloeiende animatie */
    overflow: hidden;
}

.social-button:hover, 
.social-button.hover-effect {
    width: 160px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Facebook specifieke stijl */
.social-button.facebook {
    background-color: #1877F2;
}

/* Het icoon in de social button */
.social-button .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform 0.3s;
}

.social-button:hover .icon,
.social-button.hover-effect .icon {
    transform: scale(1.1);
}

/* De tekst in de social button */
.social-button .text {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-button:hover .text,
.social-button.hover-effect .text {
    opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .social-sidebar {
        display: none; /* Hide on mobile */
    }
}