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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
}

.hero {
    position: relative;

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

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 7, 7, 0.70) 0%,
            rgba(5, 7, 7, 0.30) 42%,
            rgba(5, 7, 7, 0.05) 70%
        ),
        url("images/hangar-background.png");

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

    display: flex;
    align-items: center;

    padding: 8vw;
}

.hero-content {
    color: white;
    max-width: 720px;
}

.brand {
    display: inline-block;

    font-size: clamp(0.75rem, 1vw, 1rem);
    font-weight: 600;

    letter-spacing: 0.38rem;
    margin-bottom: 2.5rem;
}

.brand-line {
    width: 42px;
    height: 3px;

    margin-top: 12px;

    background: #b7e000;
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 6rem);
    line-height: 0.95;

    font-weight: 700;
    letter-spacing: -0.03em;

    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.coming-soon {
    margin-top: 2rem;

    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 300;

    letter-spacing: 0.18rem;

    color: rgba(255, 255, 255, 0.75);
}

footer {
    position: absolute;

    left: 8vw;
    bottom: 4vh;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.75rem;
    letter-spacing: 0.08rem;
}


/* Mobile */

@media (max-width: 700px) {

    .hero {
        align-items: flex-end;

        padding: 8vw 8vw 18vh;

        background-position: 60% center;

        background-image:
            linear-gradient(
                0deg,
                rgba(5, 7, 7, 0.90) 0%,
                rgba(5, 7, 7, 0.35) 60%,
                rgba(5, 7, 7, 0.10) 100%
            ),
            url("images/hangar-background.png");
    }

    h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    footer {
        left: 8vw;
        bottom: 5vh;
    }
}