/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    position: relative;
    background: #a5262b;
    color: #ffffff;
    font-family: "Barlow Condensed", sans-serif;

    padding: 64px 64px 32px;
    box-sizing: border-box;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 64px;
}

/* ---- Left: about + contact ---- */

.footer__about {
    max-width: 60ch;
}

.footer__title {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer__text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #f2d9da;
}

.footer__contact {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.footer__contact-item {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.footer__contact-item:hover {
    text-decoration: underline;
}

/* ---- Right: nav links ---- */

.footer__nav {
    display: flex;
    flex-direction: column;
    min-width: 60ch;
}

.footer__nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer__nav-link:last-child {
    border-bottom: none;
}

/* ---- Bottom bar ---- */

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer__logo {
    height: 40px;
    width: auto;
}

.footer__legal {
    margin: 0;
    font-size: 12px;
    color: #f2d9da;
}

.footer__credit {
    margin: 0;
    font-size: 12px;
    color: #f2d9da;
}

.footer__credit-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.footer__credit-link:hover {
    text-decoration: underline;
}