/**
 * Top Bar Block Styles - Exact copy van origineel
 */

/* Top Bar */
.top-bar {
    background-color: var(--color-topbar);
    color: white;
    /* White text on blue */
    font-size: 0.8125rem;
    /* Slightly smaller for elegance */
    padding: 10px 0;
    border-bottom: none;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.authority-badge {
    color: white;
    /* White on blue */
    font-weight: 600;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.top-contact {
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.top-contact:hover {
    opacity: 1;
}

.top-bar-right a {
    color: white;
    opacity: 0.95;
    /* Increased contrast */
    font-weight: 600;
}

.top-bar-right a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* Legacy compatibility */
.eicom-topbar {
    background-color: var(--color-topbar);
    color: white;
    font-size: 0.8125rem;
    padding: 10px 0;
    border-bottom: none;
}

.eicom-topbar .topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eicom-topbar .topbar-tagline {
    color: white;
    font-weight: 600;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.eicom-topbar .topbar-contact {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.eicom-topbar .topbar-contact-item {
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
}

.eicom-topbar .topbar-contact-item:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar-inner,
    .eicom-topbar .topbar-content {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }

    .topbar-tagline,
    .top-bar-left,
    .top-bar-right,
    .eicom-topbar .topbar-contact {
        justify-content: center;
    }
}
