/* VARIABLES */
:root {
    --color-primary: #000000;
}

/* TYPEFACES */
@font-face {
    font-family: 'Labil';
    src: url('../fonts/LabilGrotesk-Medium.woff2') format('woff2'),
        url('../fonts/LabilGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Labil';
    src: url('../fonts/LabilGrotesk-Bold.woff2') format('woff2'),
        url('../fonts/LabilGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Labil';
    src: url('../fonts/LabilGrotesk-Regular.woff2') format('woff2'),
        url('../fonts/LabilGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* GENERAL */
body {
    font-family: 'Labil', system-ui, sans-serif;
    color: #FFF;
    background-color: #000000;
    min-height: 100vh;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'salt' 0,'calt' 0,'ss01' 0,'ss02' 0;
    font-variant-alternates: normal;
}

/* CUSTOM  */
.container {
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.text__content {
    position: relative;
    z-index: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 2rem;
    max-width: 65ch;
    margin: 0 auto;
}

.text__content h1 {
    font-size: min(10vw, 5rem);
    font-weight: 500;
    color: #FFF;
    text-transform: uppercase;
    filter: url(#fancy-goo-sm);
    max-width: 17ch;
    line-height: .9;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

.text__content a {
    text-decoration: none;
    display: inline-block;
    color: #FFF;
    opacity: 0.5;
}

.text__content a:hover {
    opacity: 1;
}

.text__content {
    margin: 0 0 2rem 0;
    padding: 1.5rem;
}

.text__content .p-l {
    font-size: 2rem;
    font-weight: 400;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 500;
    max-width: 70ch;
    margin-bottom: 2rem;
}

.text__content .p-s {
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFF;
    max-width: 60rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.text__content .p-xs {
    font-size: .9rem;
    font-weight: 400;
    color: #FFF;
    max-width: 60rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.text__content .p-bold, b {
    font-weight: 700;
}

.text__content h1 {
    text-align: center;
}

.text__content h1 span {
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 400;
    margin: 1rem 0 2rem 0;
    display: inline-block;
    letter-spacing: 0.005em;
    opacity: 0.75;
    max-width: 30ch;
    line-height: 1.2;
}

.img__content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.img__content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.logos__content,
.footer__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 54rem;
    margin: 0 auto;
    padding: 2rem;
}

.footer__content {
    align-items: flex-end;
}

.logo-rufus {
    width: 100%;
    margin-bottom: 2rem;
    max-width: 50rem;
}

@media (max-width: 768px) {     
    html {
        font-size: 80%;
    }
    .logos__content img,
    .footer__content img {
        transform: scale(1);
    }
    
}

.language-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 0 30px 0;
}

.language-btn {
    padding: 6px 12px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    color: #FFF;
    border-radius: 100rem;
}

.language-btn:hover {
    background: #000;
    color: #fff;
}

.language-btn.active {
    background: #FFF;
    color: #000;
}