/* ============================================
   Topbar Styles - Contact & Social Links
   ============================================ */

.topbar {
    background-color: #2C3E50;
    color: white;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 100;
}

.topbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    min-height: 36px;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

/* Общий стиль для ссылок */
.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-family-base);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    text-decoration: none;
    transition: all 250ms ease;
    padding: 6px 10px;
    border-radius: var(--radius-md);
    position: relative;
}

.topbar__link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.topbar__link svg {
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 250ms ease;
}

.topbar__link:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Разделитель между ссылками */
.topbar__divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 300;
    user-select: none;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.topbar__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.topbar__social:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.topbar__social svg {
    flex-shrink: 0;
}
