/* Aquilon product backlinks inside mdBook's menu-bar:
 *   - small logo on the left linking to aquilon.dev
 *   - book_title centered in the middle (mdBook's default .menu-title behavior)
 *   - "Get started" CTA on the right */

.menu-bar .aquilon-brand {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: inherit;
    text-decoration: none;
}

.menu-bar .aquilon-brand:hover {
    text-decoration: none;
    filter: brightness(1.1);
}

.menu-bar .aquilon-brand img {
    height: 22px;
    width: auto;
    display: block;
}

.menu-bar .right-buttons .aquilon-cta {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    margin-right: 8px;
    border-radius: 6px;
    background: var(--links, #1f6feb);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.menu-bar .right-buttons .aquilon-cta:hover {
    text-decoration: none;
    filter: brightness(1.1);
}

/* Breadcrumb above the chapter content. */
.aquilon-breadcrumb {
    font-size: 0.9rem;
    color: var(--fg);
    margin: 8px 0 16px 0;
}

.aquilon-breadcrumb a {
    color: var(--fg);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.aquilon-breadcrumb a:hover {
    text-decoration-thickness: 2px;
}

.aquilon-breadcrumb .sep {
    margin: 0 6px;
    opacity: 0.6;
}

/* Mobile: hide the brand logo to keep the centered title + CTA visible. */
@media (max-width: 480px) {
    .menu-bar .aquilon-brand {
        display: none;
    }
    .menu-bar .right-buttons .aquilon-cta {
        padding: 0 10px;
    }
}
