/* HEADER - Premium Centered Logo */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--secondary);
}

.count-badge {
    background: rgba(255,255,255,0.25);
    color: white;
    font-size: 0.75rem;
    padding: 1px 7px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 600;
}

.main-header {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-centered {
    text-align: center;
}

.main-logo {
    max-height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.02);
}

nav {
    background: white;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

nav .container {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

nav a {
    padding: 12px 28px;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    font-weight: 500;
}

nav a:hover, nav a.active {
    background: var(--primary);
    color: white;
}