.layout-site-topbar {
    padding: 0.5rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 999;
}

.layout-site-topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.layout-site-topbar-contact {
    display: flex;
    gap: 1rem;
}

.layout-site-topbar-social {
    display: flex;
    gap: 1rem;
}

.layout-site-topbar-social-link {
    color: inherit;
    text-decoration: none;
}

/* Small devices (phones) */
@media (max-width: 768px) {
    .layout-site-topbar-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .layout-site-topbar-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .layout-site-topbar-social {
        margin-top: 0.5rem;
    }
} 