/* =========================================
   FONTS
========================================= */

@font-face {
    font-family: "Avenir";
    src: url("../fonts/Avenir-Roman.woff2") format("woff2"),
         url("../fonts/Avenir-Roman.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir";
    src: url("../fonts/Avenir-Heavy.woff2") format("woff2"),
         url("../fonts/Avenir-Heavy.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #62656a;
    --paper: #efefed;
    --red: #e60000;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    font-family: "Avenir", Arial, Helvetica, sans-serif;
    background: var(--paper);
}
.landing-page {
    position: relative;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    background-image: url("../assets/ASN-Landing_page.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    overflow: hidden;
}

.brand {
    position: absolute;
    z-index: 3;
    color: var(--ink);
    display: flex;
    align-items: center;
}
.brand--top {
    top: 12.5vh;
    left: 50%;
    transform: translateX(-50%);
    gap: 14px;
}
.brand__tagline {
    font-family: "Avenir", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.1;
    text-transform: lowercase;
    white-space: nowrap;
}
.brand__rule {
    width: 2px;
    height: 130px;
    background: var(--ink);
}
.brand__name {
    font-size: 52px;
    line-height: 0.75;
    letter-spacing: -2.8px;
    font-weight: 900;
}
.brand__name span {
    letter-spacing: -3px;
}
.fleet {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: -3.5vh;
    height: 54vh;
    min-height: 320px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}
.van {
    position: relative;
    width: 50.5vw;
    min-width: 580px;
    height: 100%;
    overflow: hidden;
    filter: drop-shadow(0 18px 10px rgba(0, 0, 0, 0.28));
}
.van img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    display: block;
}
.van--left img {
    right: -1.5%;
    transform: scaleX(-1);
}
.van--right img {
    left: -1.5%;
}
.van-brand {
    position: absolute;
    color: rgba(230, 230, 230, 0.66);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: -2px;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.35);
}
.van-brand--large {
    left: 8%;
    bottom: 12%;
    font-size: 42px;
}
.van-brand span {
    letter-spacing: -2px;
}
.van-brand--small {
    left: 31%;
    bottom: 17%;
    display: flex;
    gap: 7px;
    align-items: flex-start;
    color: #f1f1ef;
    letter-spacing: -1px;
}
.van-brand--small small {
    font-size: 9px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0;
    text-align: right;
    padding-top: 2px;
}
.van-brand--small b {
    font-size: 17px;
    line-height: 0.78;
}
@media (max-width: 1100px) {
    .brand--top {
        top: 10vh;
    }
    .brand__name {
        font-size: 46px;
    }
    .fleet {
        height: 49vh;
    }
    .van {
        min-width: 500px;
    }
    .van-brand--large {
        font-size: 34px;
    }
}
@media (max-width: 800px) {
    .landing-page {
        min-height: 500px;
    }
    .brand--top {
        top: 9vh;
        gap: 10px;
    }
    .brand__tagline {
        font-size: 14px;
    }
    .brand__rule {
        height: 100px;
    }
    .brand__name {
        font-size: 36px;
        letter-spacing: -2px;
    }
    .fleet {
        height: 43vh;
        bottom: 0;
    }
    .van {
        min-width: 390px;
        width: 62vw;
    }
    .van--left {
        margin-left: -24vw;
    }
    .van--right {
        margin-right: -24vw;
    }
    .van-brand--large {
        font-size: 25px;
        left: 26%;
        bottom: 14%;
    }
    .van-brand--small {
        display: none;
    }
}
@media (max-width: 520px) {
    .brand--top {
        top: 8vh;
    }
    .brand__tagline {
        font-size: 11px;
    }
    .brand__rule {
        height: 76px;
        width: 1px;
    }
    .brand__name {
        font-size: 28px;
        letter-spacing: -1.5px;
    }
    .fleet {
        height: 38vh;
    }
    .van {
        min-width: 330px;
        width: 78vw;
    }
    .van--left {
        margin-left: -39vw;
    }
    .van--right {
        margin-right: -39vw;
    }
    .van-brand--large {
        font-size: 20px;
        left: 40%;
        bottom: 17%;
    }
}
@media (max-height: 650px) and (min-width: 801px) {
    .brand--top {
        top: 8vh;
    }
    .fleet {
        height: 51vh;
    }
}
