/* Social Media Bar */
.social-bar {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.social-label-container {
    flex-grow: 1;
    margin-right: 3rem;
    position: relative;
    display: flex;
    align-items: center;
}

.social-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 1.5rem;
    white-space: nowrap;
    opacity: 0.8;
}

.social-line {
    height: 1px;
    background-color: #000;
    width: 100%;
    opacity: 0.2;
    display: block;
    border-radius: 1px;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    padding: 8px;
    border-radius: 50%;
    background-color: transparent;
}

.social-icons a:hover {
    color: #000;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive adjustment for social bar */
@media (max-width: 768px) {
    .social-bar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .social-label-container {
        width: 100%;
        margin-right: 0;
        justify-content: center;
    }

    .social-line {
        display: none;
    }

    .social-label {
        margin-right: 0;
    }
}