/* --- SOCIAL SIDEBAR (FIXED LEFT) --- */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 60px;
    background-color: #0a1625;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 4000; /* Sits below the header but above the body content */
    border-right: 1px solid rgba(206, 184, 136, 0.2);
}

.social-icon {
    color: #b88c5c;
    font-size: 1.3rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .social-sidebar {
        bottom: 0;
        left: 0;
        top: auto;
        width: 100%;
        height: 60px;
        flex-direction: row;
        justify-content: space-around;
        border-top: 2px solid #b88c5c;
        border-right: none;
    }
}