@font-face {
    font-family: "Helvetica LT Std Cond";
    src: url("/assets/fonts/HelveticaLTStd-Cond.otf");
}

body, html {
    min-height: 100%;
    height: 100%;
    color: #eeeeee;
}

p {
    font-family: "Helvetica LT Std Cond", sans-serif;
}

footer {
    background-color: black;
    box-shadow: 10px 10px 10px 20px black;
    padding: 1em;
}

footer a:hover {
    color: #d5bc71;
}

.fullscreen-no-overflow {
    overflow-x: hidden;
}

.landing-background {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    height: 105%;
    width: 105%;
    background: url("/assets/img/Keyart_NoFgSoldier_16-9.jpg") no-repeat bottom center;
    -webkit-background-size: cover;
    background-size: cover;
    transition: background 0.3s;
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    z-index: -2;
}
.landing-background-no-move {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    height: 105%;
    width: 105%;
    background: url("/assets/img/Keyart_NoFgSoldier_16-9.jpg") no-repeat bottom center;
    -webkit-background-size: cover;
    background-size: cover;
    transition: background 0.3s;
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    z-index: -2;
}

.landing-background-vignette {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 200px rgba(0,0,0, 0.6);
    background: radial-gradient( ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60% );
    z-index: -1;
}

.large-title-centered {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-image: url("/assets/img/2024_VoA_Logo_weiss.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 1rem;
}

.landing-text {
    color: #eeeeee;
    font-size: 1em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.steam-button-container {
    margin-bottom: 1.5rem;
}

.steam-button-container a {
    width: 40%;
    padding: 0.5em;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    color: #eeeeee;
    border: 1px solid #eeeeee;
    background-color: rgba(50,50,50,0.5);
}

.steam-button-container a:hover {
    color: #d5bc71;
    border: 1px solid #d5bc71;
    background-color: rgba(0,0,0,0.5);
}

.steam-button-container svg {
    margin-right: 1em;
}

.steam-button-text {

}

.icon-button-container {
    padding: 0.25em;
    color: #d4d4d4;
    background-color: rgba(50,50,50,0.5);
}

.icon-button {
    pointer-events: all;
    transition: 0.12s;
    width: 40px;
    height: 40px;
}

.icon-button-container:hover {
    color: #d5bc71;
    background-color: rgba(0,0,0,0.5);
}

.landing-logos a {
    text-decoration: none;
    color: #eeeeee;
}

.landing-logos img {
    max-width: 10em;
    height: 8em;
    object-fit: contain;
}

.text-left {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/** Global Media Queries */

/** Style for mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .large-title-centered {
        height: 30vh;
    }
    .landing-text {
        width: 75%;
        font-size: 1.1em;
    }
    .steam-button-container a {
        width: 60%;
    }
    .steam-button-text {
        font-size: 1.1em;
    }
    .icon-button {
        width: 30px;
        height: 30px;
    }
}

/** Style for tablets and lager */
@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    .large-title-centered {
        height: 40vh;
    }
    .landing-background {
        transform: translate3d(0, 0, 0);
    }
    .landing-text {
        width: 75%;
        font-size: 1.2em;
    }
    .steam-button-text {
        font-size: 1.2em;
    }
    .icon-button {
        width: 35px;
        height: 35px;
    }
}

/** Style for desktop and lager */
@media (min-width: 1200px) {
    .landing-text {
        font-size: 1.4em;
        width: 50%;
    }
    .steam-button-text {
        font-size: 1.4em;
    }
    .icon-button {
        width: 40px;
        height: 40px;
    }
    .text-center {
        max-width: 1000px !important;
        margin-left: auto;
        margin-right: auto;
    }
    .text-left {
        max-width: 1000px !important;
        margin-left: auto;
        margin-right: auto;
        text-align: left !important;
    }
}