/* =========================================================
   VIA AURA HERO
========================================================= */

.va-hero {
    position: relative;

    width: 100%;
    height: min(760px, calc(100vh - 100px));
    min-height: 620px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: var(--va-cream);
}


/* =========================================================
   HERO IMAGE - DESKTOP DEFAULT
========================================================= */

.va-hero__media {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url('../images/hero-airport-desktop.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transition: transform 800ms ease;
}


/* Very subtle desktop movement */

@media (hover: hover) {

    .va-hero:hover .va-hero__media {
        transform: scale(1.01);
    }

}


/* =========================================================
   OVERLAY
========================================================= */

.va-hero__overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.00) 0%,
            rgba(255, 255, 255, 0.00) 70%,
            rgba(13, 27, 42, 0.03) 100%
        );
}


/* =========================================================
   CONTENT
========================================================= */

.va-hero__content {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   BUTTONS
========================================================= */

.va-hero__actions {
    position: absolute;

    top: 66%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;
}


.va-hero .va-button {
    min-width: 140px;

    min-height: 50px;

    padding-left: 28px;
    padding-right: 28px;

    white-space: nowrap;
}


.va-hero__secondary {
    font-family: var(--va-font-body);

    font-size: 12px;
    line-height: 1;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;
    text-decoration: none;

    white-space: nowrap;

    color: var(--va-navy);

    border-bottom: 1px solid rgba(13, 27, 42, 0.55);

    padding-bottom: 5px;

    transition:
        color 250ms ease,
        border-color 250ms ease;
}


.va-hero__secondary:hover {
    color: var(--va-gold);

    border-color: var(--va-gold);
}


/* =========================================================
   LARGE DESKTOP
   1600px+
========================================================= */

@media (min-width: 1600px) {

    .va-hero {
        height: 760px;
    }

}


/* =========================================================
   TABLET
   1100px and smaller
========================================================= */

@media (max-width: 1100px) {

    .va-hero {
        height: 680px;
        min-height: 580px;
    }


    .va-hero__media {
        background-image: url('../images/hero-airport-tablet.png');

        background-position: center center;
    }


    .va-hero__actions {
        top: 69%;
    }

}


/* =========================================================
   SMALL TABLET
   820px and smaller
========================================================= */

@media (max-width: 820px) {

    .va-hero {
        height: 640px;
        min-height: 600px;
    }


    .va-hero__media {
        background-image: url('../images/hero-airport-tablet.png');

        background-position: center center;
    }


    .va-hero__actions {
        top: 72%;

        gap: 20px;
    }

}


/* =========================================================
   MOBILE
   600px and smaller
========================================================= */

@media (max-width: 600px) {

    .va-hero {
        height: 650px;
        min-height: 600px;
    }


    .va-hero__media {
        background-image: url('../images/hero-airport-mobile.png');

        background-size: cover;
        background-position: center center;
    }


    .va-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(244, 240, 232, 0.00) 0%,
                rgba(244, 240, 232, 0.00) 55%,
                rgba(244, 240, 232, 0.15) 75%,
                rgba(244, 240, 232, 0.35) 100%
            );
    }


    .va-hero__actions {
        top: auto;

        bottom: 34px;
        left: 50%;

        transform: translateX(-50%);

        width: calc(100% - 40px);

        flex-direction: column;

        gap: 16px;
    }


    .va-hero .va-button {
        width: 100%;
        max-width: 280px;
    }

}


/* =========================================================
   SMALL MOBILE
   420px and smaller
========================================================= */

@media (max-width: 420px) {

    .va-hero {
        height: 600px;
        min-height: 560px;
    }


    .va-hero__actions {
        bottom: 26px;
    }


    .va-hero .va-button {
        max-width: 250px;
    }

}