﻿@font-face {
    font-family: 'GT Alpina';
    src: url('../fonts/GTAlpina-Regular.woff2') format('woff2'),
        url('../fonts/GTAlpina-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gandur New';
    src: url('../fonts/GandurNew-Semibold.woff2') format('woff2'),
        url('../fonts/GandurNew-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --green: #A0FF00;
    --gray: #ACAAA2;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #000;
    font-family: 'GT Alpina', serif;
    font-weight: 400;
    line-height: 1.2;
    overscroll-behavior: none;
}

h1 {
    font-family: 'Gandur New', sans-serif;
    letter-spacing: 0.08em;
}

h2,
a {
    font-size: 23px;
    font-family: 'GT Alpina';
    font-weight: 400;
}

.section-title {
    font-size: 23px;
    font-family: 'GT Alpina';
    font-weight: 400;
}

.video-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.video-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

.video-background video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
}

.video-mobile {
    display: none;
}

.video-desktop {
    display: block;
}

main {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* HOME------------------------------------------------- */

.home {
    min-height: 100vh;
    color: var(--gray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    padding-inline: 30px;
    padding-top: 30px;
    padding-bottom: 50px;
}

.brand_logo img {
    max-width: 20vw;
}

.home {
    margin: 0;
    width: 100%;
    font-size: 18px;
    line-height: 1.6;
}

.flex {
    width: 100%;
    font-family: 'Gandur New';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.tagline {
    font-family: 'Gandur New';
    font-size: 120px;
    line-height: 1;
    vertical-align: baseline;
}

.links_container {
    display: block;
    font-family: 'GT Alpina';
    line-height: 1;
    margin-bottom: -6px;
}

.links_container a {
    color: var(--gray);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.links_container a:hover {
    color: var(--green);
    transition-duration: 300ms;
}

/* ABOUT------------------------------------------------- */

.about {
    min-height: 100vh;
    background: var(--green);
    font-family: 'GT Alpina';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 100px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-inline: 30px;
    padding-top: 30px;
    padding-bottom: 50px;
}

.about_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.about .section-title {
    margin: 0 0 16px;
}

.about .subtitle {
    max-width: 75%;
    font-size: 100px;
    line-height: 89%;
    font-family: 'GT Alpina';
    font-weight: 400;
    letter-spacing: normal;
    margin: 0;
}

.about p {
    font-size: 60px;
    width: 85%;
    line-height: 1;
    margin: 0;
    min-width: 20ch;
    max-width: 60ch;
}

.about_text_desktop {
    display: block;
    white-space: nowrap;
}

@media (max-width: 1400px) {
    .about p {
        font-size: 43px;
    }
}

.about_text_mobile {
    display: none;
    white-space: nowrap;
    width: auto;
    max-width: none;
    margin-right: 40px;
}

/* CONTACT------------------------------------------------- */

.contact {
    min-height: 100vh;
    background: black;
    color: var(--gray);
    padding-top: 30px;
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.contact .flex {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.contact .flex {
    padding-inline: 30px;
}

.contact img {
    width: 100vw;
    height: auto;
    display: block;
    margin-top: auto;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* MOBILE------------------------------------------------- */

@media (max-width: 1000px) {
    .video-mobile {
        display: block;
    }

    .video-desktop {
        display: none;
    }


    .home,
    .about,
    .contact {
        padding-inline: 20px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .home {
        padding-bottom: 120px;
    }

    .brand_logo img {
        max-width: 46vw;
    }

    .flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 16px;
    }

    .tagline {
        font-size: clamp(48px, 14vw, 96px);
    }

    .home .flex {
        gap: 22px;
    }

    .links_container {
        margin-bottom: 0;
    }

    .about {
        padding-bottom: 24px;
    }

    .about .subtitle {
        max-width: 100%;
        font-size: clamp(40px, 10vw, 72px);
        line-height: 1;
    }

    .about p {
        width: 100%;
        font-size: 36px;
        max-width: 32ch;
    }

    .about_text_desktop {
        display: none;
    }

    .about_text_mobile {
        display: block;
    }

    .contact {
        padding-bottom: 24px;
        min-height: 50vh;

    }

    .contact .flex {
        padding-inline: 0;
    }

    .contact img {
        width: 100%;
        margin-left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-bottom: 16px;
    }
}

@media (max-width: 550px) {
    .about p {
        font-size: 25px;
    }
}