/* --- Responsive Design Variables --- */
:root {
    /* Base design dimensions */
    --design-width: 1280;
    --design-height: 720;
    --scale: calc(100vw / var(--design-width));
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('fonts/NunitoSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}



html,
body {

    margin: 0;
    padding: 0;
    background: #FFA500;
    overflow-x: auto;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-x: auto;
    width: 100vw;
    height: 100vh;
}


/* Responsive main-layout scaling */
.main-layout {
    width: max(100vw, calc(var(--design-width) * 1px));
    height: max(100vh, calc(var(--design-height) * 1px));
    max-width: 100vw;
    max-height: 100vh;
    left: 0;
    top: 0;
    margin: auto;
    position: absolute;
    background: #FFA500 url('images/coming_soon_hoaah_oaa_1114x1080_GRADIENT.png') no-repeat right top;
    background-size: auto 100%;
    background-position: right top;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    /* border: #222222 5px solid; */

}

@media (max-aspect-ratio: 1/1) {
    .main-layout {
        /* height: calc(100vw * 9 / 16);
        max-height: calc(100vw * 9 / 16); */
        height: calc(100vw * 2/3);
        max-height: calc(100vw * 2/3);
    }
}

/* --- Existing Styles --- */
.content {
    position: absolute;
    top: calc(100 / var(--design-height) * 100%);
    left: calc(40 / var(--design-width) * 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: #b81394 1px solid; */
}

.welcome-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: calc(86 * var(--scale));
    font-weight: normal;
    letter-spacing: calc(2 * var(--scale));
}

.welcome {
    color: #F5F5F5;
}

.future {
    color: #222222;
    margin-left: calc(20 * var(--scale));
}


.home-of {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: calc(65 * var(--scale));
    color: #F5F5F5;
    margin-top: calc(30 * var(--scale));
    margin-bottom: calc(20 * var(--scale));
}

.logo {
    width: calc(420 * var(--scale));
    max-width: 100%;
    margin-top: calc(10 * var(--scale));
    margin-bottom: 0;
}

.social-links {
    position: absolute;
    right: calc(40 * var(--scale));
    bottom: calc(40 * var(--scale));
    display: flex;
    flex-direction: column;
    gap: calc(16 * var(--scale));
    z-index: 2;
}

.social-links a img {
    width: calc(30 * var(--scale));
    height: calc(30 * var(--scale));
    display: block;
    transition: transform 0.2s;
}

.copyright {
    position: absolute;
    right: calc(40 * var(--scale));
    bottom: 0;
    margin-bottom: calc(10 * var(--scale));
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-weight: 200;
    font-size: calc(16 * var(--scale));
    color: #F5F5F5;
    letter-spacing: calc(0.5 * var(--scale));
    z-index: 1;
    user-select: none;
    pointer-events: none;
}