/* Variable collection */
:root {
    /* Mode 1 */
    /* color */
    --coronavirus-black: #202020;
    --cursed-grey: #666666;
    --granddaddys-ashes: #c2c2c2;
    --tk-blue-dark: #008cc4;
    --tk-blue-light: #3fc9ff;
    --black: #000000;
    --white: #ffffff;
}

body {
    background-color: var(--coronavirus-black);
    color: var(--granddaddys-ashes);
    margin: 0;
    font-family: 'Satoshi Variable';
    hyphens: auto;
    text-wrap: balance;
}

html {
    scroll-behavior: smooth;
}

nav.transparent {
    background-color: transparent;
    border-bottom: none;
}

nav {
    background-color: var(--coronavirus-black);
    border-bottom: 2px solid var(--granddaddys-ashes);
    display: flex;
    position: sticky;
    top: 0;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;



    label.menuIcon {
        display: none;

        @media (max-width: 800px) {
            display: block;
            cursor: pointer;
            width: 30px;
            height: 30px;
            padding-right: 10px;
        }

        div {
            width: 90%;
            margin: 7px 5%;
            height: 3px;
            background-color: var(--granddaddys-ashes);
            transition: all 0.3s;
        }
    }

    .logo {
        width: 277px;
        height: 74px;
        flex-shrink: 0;
        margin: 15px;
    }

    ul {
        padding: 15px;
        display: flex;
        justify-content: right;
        align-items: center;


        li {
            list-style: none;
            text-align: center;
            margin-left: 30px;

            a {
                color: var(--white, #FFF);
                font-family: "Satoshi Variable";
                font-size: 24px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;

                @media (max-width: 800px) {
                    font-size: 20px;
                }
            }
        }
    }

    @media (max-width: 800px) {
        .flex.logoContainer {
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        ul {
            display: none;
            flex-direction: column;

            li {
                margin: 8px 0;
            }
        }

    }
}

input#menu {
    display: none;
}

@media (max-width: 800px) {
input#menu:checked~nav {
    background-color: var(--coronavirus-black);
    border-bottom: 2px solid var(--granddaddys-ashes);

    ul {
        display: flex;
        align-items: center;
        width: 100%;
    }

    div label {
        margin-top: 15px;

        div:first-of-type {
            rotate: 45deg;
        }

        div:last-child {
            rotate: -45deg;
            margin-top: -10px;
        }

        div:nth-child(2) {
            display: none;
        }
    }
}}

.hero {
    background-image: url(/img/hero.jpg);
    height: 100lvh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    flex-direction: column;
    padding: 35px;
    padding-top: 100px;

    h1 {
        color: var(--white, #FFF);
        text-align: right;
        font-family: "Satoshi Variable";
        font-size: 120px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 0;
        width: 100%;
        hyphens: manual;
    }

    h2 {
        color: var(--white);
        text-align: right;
        font-family: "Satoshi Variable";
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
    }

    p {
        color: var(--white, #FFF);
        text-align: right;
        font-family: "Satoshi Variable";
        font-size: 42px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        max-width: 600px;
        margin-top: 100px;
        width: 100%;
    }

    a {
        font-size: 24px;
    }

    @media (max-width: 1400px) {
        h1 {
            font-size: 80px;
        }

        h2 {
            font-size: 42px;
        }

        p {
            font-size: 24px;
        }
    }

    @media (max-width: 800px) {
        h1 {
            font-size: 60px;
        }

        h2 {
            font-size: 40px;
        }

        p {
            font-size: 24px;
        }
    }
}

.button-outline {
    border-radius: 52px;
    border: 4px solid var(--TK-blue-light, #3FC9FF);
    padding: 8px 16px;
    hyphens: none;

    &:hover {
        background-color: var(--TK-blue-light, #3FC9FF);
        color: var(--coronavirus-black, #202020);
    }
}
.button-fill {
    background-color: var(--TK-blue-light, #3FC9FF);
    border-radius: 52px;
    border: none;
    padding: 10px 20px;
    color: var(--Coronavirus-Black, #202020);

    &:hover {
        background-color: var(--TK-blue-dark, #008CC4);
        color: var(--white)
    }
}

a {
    color: var(--tk-blue-light);
    text-decoration: none;

    &:hover {
        color: var(--tk-blue-dark);
    }
}

h2.outline {
    -webkit-text-stroke-width: 3px;
    color: transparent;
    -webkit-text-stroke-color: var(--tk-blue-light, #3FC9FF);
    font-family: "Satoshi Variable";
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: lowercase;
}

main {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

section {
    width: 70%;
    margin: 40px 0;

    @media (max-width: 1500px) {
        width: 100%;
    }


    p {
        color: var(--white, #FFF);
        font-family: "Satoshi Variable";
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    h1 {
        color: var(--white, #FFF);
        font-family: "Satoshi Variable";
        font-size: 120px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
    }

    h2 {
        color: var(--tk-blue-light, #3FC9FF);
        font-family: "Satoshi Variable";
        font-size: 70px;
        font-style: normal;
        font-weight: 700;
        line-height: 114px;
        margin: 0;
    }

    div.sidetext {
        max-width: 60vw;
    }

    img {
        object-fit: cover;
        width: 470px;
        margin: 20px;
        flex-shrink: 0;
        border-radius: 10px;
        max-width: 100%;
    }

    @media (max-width: 1200px) {
        h1 {
            font-size: 80px;
        }

        h2 {
            font-size: 42px;
        }

        p {
            font-size: 24px;
        }
    }

    @media (max-width: 900px) {
        h1 {
            font-size: 70px;
        }

        h2 {
            font-size: 60px;
        }

        p {
            font-size: 14pt;
        }

        div.sidetext {
            width: 100%;
            max-width: none;
        }
    }
}

section.right {
    align-self: end;

    h1,
    h2 {
        text-align: right;
    }
}

section.center {
    align-self: center;
    text-align: center;
}

section#contact {
    div > div {
        margin: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 400px;
    }
    label {
        color: var(--tk-blue-light, #3FC9FF);
        font-family: "Satoshi Variable";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    input {
        background-color: var(--coronavirus-black, #202020);
        border: 2px solid var(--tk-blue-light, #3FC9FF);
        border-radius: 10px;
        color: var(--white, #FFF);
        font-family: "Satoshi Variable";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 10px;
        margin: 0;
        width: 90%;
    }
    .areadiv {
        width: 800px;
        max-width: 90vw;
        margin: 10px 0 0 0;
    }
    textarea {
        background-color: var(--coronavirus-black, #202020);
        border: 2px solid var(--tk-blue-light, #3FC9FF);
        border-radius: 10px;
        color: var(--white, #FFF);
        font-family: "Satoshi Variable";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 10px;
        margin: 0;
        width: 95%;
        height: 300px;
    }
    button {
        margin: 20px;
        font-size: 14pt;
    }
    div.htpo {
        opacity: 0;
        height: 0;
        width: 0;
    }
}

div.flex {
    display: flex;
    justify-content: center;

    @media (max-width: 800px) {
        flex-wrap: wrap;
    }
}

.blue {
    color: var(--tk-blue-light, #3FC9FF);
}

/* * {
    border: 1px solid red;
} */