/* Font Styles */
.font-jost {
    font-family: 'Jost', sans-serif;
    font-style: normal;
}

:root {
    --dark: #292929;
    --white: #fff;
    --light: #fdfaf6;
    --lighterRed: #fac8d1;
    --lightRed: #f6899b;
    --red: #ee2a4b;
    --darkRed: #c02;
    --darkerRed: #ac011d;
    --lighterYellow: #fde1ac;
    --lightYellow: #fad184;
    --yellow: #f7b538;
    --darkYellow: #f68909;
    --darkerYellow: #b13500;
    --lighterGreen: #c8f7c7;
    --lightGreen: #9be599;
    --green: #4ec24b;
    --darkGreen: #039900;
    --darkerGreen: #066204;
    --lighterBlue: #aaf7fc;
    --lightBlue: #5cecf6;
    --blue: #10c9d5;
    --darkBlue: #06a5af;
    --darkerBlue: #006f76;
    --lighterPurple: #e2ccff;
    --lightPurple: #d4b2ff;
    --purple: #9747ff;
    --darkPurple: #6e13e4;
    --darkerPurple: #530eae;
    --lighterGray: #d6d6d6;
    --lightGray: #ababab;
    --gray: grey;
    --darkGray: #575757;
    --darkerGray: #3a3a3a;
    --main: var(--dark);
    --accent: var(--white);
    --accent2: var(--darkGray);
    --accent3: var(--lighterGray);
    --selected: var(--darkerGray);
    --lightestGrayLM: #f1ede9;
    --lighterGrayLM: #e5e0dc;
    --lightGrayLM: #c0bcb5;
    --grayLM: #9c9891;
    --darkGrayLM: #77736e;
    --darkerGrayLM: #413e3a;
    --darkestGrayLM: #211e1c;
    --lighterYellowLM: #fad184;
    --lightYellowLM: #f7b538;
    --yellowLM: #f68909;
    --darkYellowLM: #d45f05;
    --darkerYellowLM: #b13500;
    --navbarHeight: 64px;
    background-color: var(--main);
    color: var(--accent);
    accent-color: var(--accent);
    font-family: 'Jost', sans-serif;
    transition: background-color 0.1s ease, color 0.2s ease,
        accent-color 0.3s ease;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    overflow: scroll;
}

a,
button {
    all: unset;
    cursor: pointer;
}

::-webkit-scrollbar {
    display: none;
}

/* Navbar Styles */
.navbar {
    box-sizing: border-box;
    height: var(--navbarHeight);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to left, var(--green), var(--blue));
    z-index: 5;
}

.navbar h2 {
    font-weight: 400;
}

.navbarLeft,
.navbarRight {
    height: 100%;
    box-sizing: border-box;
    padding: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbarRight > a {
    width: 120px;
}

.navbarLogo {
    height: 35px;
    padding-left: 16px;
}

/* Button Styles */
.button {
    border: 1px solid var(--accent);
    border-radius: 10px;
    cursor: pointer;
    transition: color 0.1s ease-out, background-color 0.1s ease-out,
        background-image 0.1s ease-out;
    padding: 8px;
    margin-right: 8px;
    margin-left: 8px;
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.button svg {
    height: 1.25em;
}

.buttonUnfilled {
    background-color: var(--main);
    color: var(--accent);
}

.buttonFilled {
    background-color: var(--accent);
    color: var(--main);
}

.buttonUnfilled:hover {
    background-color: var(--accent);
    color: var(--main);
}

.buttonFilled:hover {
    background-color: var(--main);
    color: var(--accent);
}

/* Landing Page Styles */
.mainContainer {
    display: flex;
    flex-direction: column;
}

.hero {
    background: linear-gradient(218deg, var(--green), var(--blue));
    color: #000;
    height: 60vh;
    padding-left: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.heroButtons {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
}

.heroButton {
    border-radius: 15px;
    width: 180px;
    height: 38px;
    margin: 16px 8px;
    border: 1px solid #000;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

.heroBox {
    display: block;
    width: 400px;
    font-size: xxx-large;
}

.heroLogin:hover,
.heroSignup {
    background-color: #000;
    color: #fff;
    mix-blend-mode: multiply;
}

.heroLogin,
.heroSignup:hover {
    background-color: #fff;
    color: #000;
    mix-blend-mode: multiply;
}

.videoBox {
    margin: 3rem;
    display: flex;
    flex-direction: column;
}

.videoBox h1 {
    text-align: center;
}

.videoBox video {
    width: 100%;
    height: auto;
    max-width: 75rem;
    margin: auto;
}

.contact {
    padding: 8px;
    display: flex;
    flex-direction: row;
    color: var(--accent);
}

.contact > div {
    padding: 16px;
    width: 33%;
}

.contact h2 {
    margin: 0;
    text-align: center;
}

.contact i {
    margin: 0.5rem;
    text-align: center;
}

.contactCard {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactCard > img {
    width: 25vw;
    height: 25vw;
    max-width: 20rem;
    max-height: 20rem;
    border-radius: 50%;
    border: solid 3px white;
    margin-bottom: 0.5rem;
}

.contactCard a {
    text-decoration: underline;
}

@media (prefers-color-scheme: light) {
    :root {
        --main: var(--light);
        --accent: var(--darkestGrayLM);
        --accent2: var(--lightGrayLM);
        --accent3: var(--darkerGrayLM);
        --selected: var(--lighterGrayLM);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        overflow-y: scroll;
    }

    .mainContainer {
        margin-top: var(--navbarHeight) !important;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(0);
        transition: transform 0.3s ease-out;
        z-index: 1000;
        background-color: var(--main);
    }

    .navbar h2 {
        font-size: medium;
        width: 100%;
        max-width: 40vw;
        margin: auto;
        text-align: center;
    }

    .navbarRight > a {
        width: 20vw;
    }

    .hero {
        height: 60vh;
        padding: 0;
        align-items: center;
    }

    .heroBox {
        width: 80vw;
        font-size: xxx-large;
        text-align: center;
        display: block;
    }

    .heroButton {
        width: 30vw;
    }

    .contact {
        padding: 8px;
        color: var(--accent);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact > div {
        padding: 16px;
        width: 90%;
        text-align: center;
    }

    .contactCard > img {
        width: 50vw;
        height: 50vw;
        border-radius: 50%;
        border: solid 3px white;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .videoBox {
        margin: 1rem;
    }
}
