/*
 * Plik: css/partials/header.css
 * Opis: Style dla komponentu nagłówka (header.html).
 * Zostały wydzielone z pliku HTML w celu zachowania modularności.
 */

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
}
.topbar .left, .topbar .center, .topbar .right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar .center {
    justify-content: center;
    flex: 1;
}
.topbar .right {
    justify-content: flex-end;
}
.topbar a {
    color: #374151;
    text-decoration: none;
    font-size: 13px;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.brand-text {
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.decorative-line {
    font-size: 13px;
    color: #6b7280;
}
.brand-main {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

/* Ukrywanie/pokazywanie elementów w zależności od szerokości ekranu */
@media(max-width: 767px) {
    .topbar .center { display: flex; }
    .topbar .right { display: none; }
    .mobile-actions { display: flex; }
    .desktop-actions { display: none; }
}
@media(min-width: 768px) {
    .topbar .center { display: none; }
    .topbar .right { display: flex; }
}
