/* Basic styles for TopMenu component */
.top-menu {
    font-family: Segoe UI, Roboto, Arial, sans-serif
}
/* make menu sticky */
.top-menu{position:sticky;top:0;z-index:1000;background:#fff}

.top-menu__mini {
    display: flex;
    justify-content: space-between;
    padding: 8px 16px;
    color: #444;
    font-size: 13px
}

/* small helper for smooth scroll focus outline */
.js-scroll:focus{outline:2px solid rgba(11,74,147,0.15);outline-offset:2px}


    .top-menu__mini .sep {
        margin: 0 8px;
        color: #999
    }

.top-menu__main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.03);
    width: 100%;
}

.logo__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #111
}

.logo__image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-right: 12px;
}

.logo__mark {
    font-weight: 700;
    font-size: 34px;
    letter-spacing: 1px
}

.logo__dot {
    color: #d93c3c;
    font-size: 20px;
    margin-left: 4px
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    align-items: center
}

    .nav-links a {
        color: #222;
        text-decoration: none;
        font-size: 16px
    }

    .nav-links .hire {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #d93c3c
    }

.actions {
    display: flex;
    align-items: center;
    gap: 14px
}

    .actions .contact {
        background: #c83a36;
        color: #fff;
        padding: 12px 20px;
        border-radius: 3px;
        text-decoration: none;
        font-weight: 600
    }

.icon-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 6px
}

.lang {
    font-size: 14px;
    color: #222
}

@media (max-width:900px) {
    .nav-links {
        display: none
    }

    .logo__mark {
        font-size: 28px
    }

    .top-menu__main {
        padding: 10px 16px
    }
}
