/* =====================
   RESET
   ===================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
}

/* =====================
   NAVBAR
   ===================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    overflow: hidden;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.navbar__logo {
    position: relative;
    z-index: 1;
    height: 40px;
    width: auto;
    display: block;
    margin: 10px 0 0 32px;
}

/* =====================
   FOOTER
   ===================== */

.footer {
    background: #131313;
    font-family: sans-serif;
    color: #fff;
    padding: 60px 64px 0;
}

.footer__logo {
    display: block;
    width: 160px;
    height: auto;
    margin-bottom: 48px;
}

.footer__main {
    display: grid;
    grid-template-columns: repeat(var(--col-count, 6), 1fr);
    gap: 0;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__section {
    padding-right: 16px;
}

.footer__section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: border-color .15s, color .15s;
}

/* =====================
   BANNER
   ===================== */
   
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
}

.banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__avatars {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 0 32px;
}

.banner__avatar {
    display: block;
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    overflow: hidden;
    /* border: 3px solid #fff; */
    flex-shrink: 0;
}

.banner__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}