/* Top Bar Styles */
.aanounementBar {
    background: var(--bs-primary);
    padding: 0.5rem 0;
    color: #fff;
    display: none;
}

.topbar__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar__contact {
    display: flex;
    gap: 1.5rem;
}

.topbar__contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.topbar__social {
    display: flex;
    gap: 1rem;
}

.topbar__social a {
    color: #fff !important;
    transition: color 0.3s;
}

.topbar__social a:hover {
    color: #fff;
}

/* Show topbar on desktop */
@media (min-width: 768px) {
    .topbar {
        display: block;
    }
}
