/* ===================================================
   SITE TOPBAR — utility bar above main navbar
   =================================================== */

.c-topbar {
    position: relative;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
}

.c-topbar .container {
    max-width: 100%;
    padding-left: 80px;
    padding-right: 80px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 12px;
}

/* ── LEFT: contact items ── */
.topbar-contact {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    min-width: 0;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.topbar-item .iconify {
    font-size: 13px;
    color: var(--theme_color);
    flex-shrink: 0;
}

.topbar-item a,
.topbar-item span a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.topbar-item a:hover,
.topbar-item span a:hover {
    color: #fff;
}

/* vertical separator between items */
.topbar-sep {
    display: inline-block;
    width: 1px;
    height: 13px;
    background-color: rgba(255, 255, 255, 0.14);
    margin: 0 11px;
    flex-shrink: 0;
}

/* ── RIGHT: action links ── */
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.topbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 3px 10px;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    line-height: 1;
}

.topbar-btn .iconify {
    font-size: 12px;
}

.topbar-btn--accent {
    background-color: var(--theme_color);
    color: #fff !important;
}

.topbar-btn--accent:hover {
    background-color: #c0000b;
    color: #fff !important;
}

.topbar-btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.40);
    color: rgba(255, 255, 255, 0.90) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.topbar-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.70);
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.12);
}

/* ── RESPONSIVE ── */

/* Tablet: hide address, keep phone + email */
@media (max-width: 991px) {
    .c-topbar .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .topbar-item--address,
    .topbar-sep--addr {
        display: none;
    }
}

/* Small tablet: hide landline too */
@media (max-width: 767px) {
    .topbar-item--landline,
    .topbar-sep--landline {
        display: none;
    }
}

/* Mobile: hide entire contact block, centre the CTAs */
@media (max-width: 575px) {
    .topbar-contact {
        display: none;
    }
    .topbar-inner {
        justify-content: center;
    }
}
