/* Site chrome: the brand's top nav and footer. Kept out of brand.scss, which
   only styles the inner sections of the brand's pages. */

.site-nav {
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 20;
}

.site-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand-footer {
    background: #000;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Muli', sans-serif;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-footer-copy {
    margin: 0;
    font-size: 0.85rem;
}

.brand-footer-social {
    display: flex;
    gap: 14px;
}

.brand-footer-icon {
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.brand-footer-icon:hover {
    color: #000;
    background: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .site-nav-inner {
        gap: 20px;
        padding: 14px 16px;
        flex-wrap: wrap;
    }

    .brand-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

.site-nav-current {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.site-nav-current-brand {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.site-nav-current a:not(.site-nav-current-brand) {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.site-nav-current a:not(.site-nav-current-brand):hover {
    color: #fff;
}
