/* AZART primary navigation */

.nav {
    min-height: 106px;
    padding: 18px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #ffffff;
    border-bottom: 1px solid #e7e2dc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 174px;
    height: 68px;
    overflow: hidden;
    text-decoration: none;
}

.site-logo-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 174px;
    max-height: 68px;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #171717;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    opacity: 0.6;
}

.footer-logo {
    display: inline-flex;
    width: 150px;
    height: 58px;
}

.footer-logo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 800px) {
    .nav {
        min-height: 82px;
        padding: 12px 20px;
    }

    .site-logo {
        width: 145px;
        height: 56px;
    }

    .site-logo-image {
        max-width: 145px;
        max-height: 56px;
    }

    .nav-links {
        display: none;
    }
}
