@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --background: #ffffff;
    --foreground: #000000;
    --foreground-1-4: #00000044;
    --foreground-3-4: #000000cc;
    --color1: #e8b242;
    --color1Light: #e8b242aa;
    --color2: #cf941b;
    --color2Light: #cf941baa;
    --color3: #a3710a;
    --color3Light: #a3710aaa;
    --mainFont: "Roboto", sans-serif;
    --subFont: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.accountLink {
    list-style-type: none;
    margin: 5px;
    padding: 0;
    font-family: var(--mainFont);
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
}

.accountLink::after {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--color1);
    display: block;
    transition: 0.5s;
}

.accountLink:hover::after {
    width: 100%;
}

#header_menuBtn {
    display: none;
}

#header_rightSide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: 20px;
    z-index: 2;
}

#header_menuFiller{
    display: none;
}

#header_rightSide>span {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#header_leftSide {
    margin-left: 20px;
    z-index: 2;
}

#header_responsiveTitle {
    position: absolute;
    text-align: center;
    width: 100%;
    margin: 0px;
    z-index: 1;
}

#header_brandName {
    z-index: 1;
    width: 200px;
}

@media only screen and (max-width: 1240px) {
    header {
        flex-direction: column;
        align-items: center;
        justify-content: unset;
        margin-top: 10px;
    }

    #header_menuBtn {
        display: inline;
        position: absolute;
        margin: 0px 30px;
        z-index: 2;
        align-self: start;
    }

    #header_leftSide {
        position: fixed;
        background-color: #ffffff00;
        margin: 0px;
        padding: 0px;
        height: 100vh;
        top: 0px;
        left: 0px;
        width: 100%;
        transform: translateX(-100%);
        transition: all 0.5s ease-in-out;
        z-index: 6;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: start;
        align-items: start;
    }

    #header_rightSide {
        width: 100vw;
        margin-right: 0px;
        flex-direction: column;
    }

    #header_responsiveTitle {
        position: relative;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #header_brandName {
        display: block;
    }

    #header_nav {
        padding-top: 30px;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: start;
        justify-content: start;
        background-color: var(--background);
        height: 100%;
        width: max-content;
        border-right: 3px solid var(--foreground-3-4);
    }

    #header_nav>a {
        margin-left: 30px;
        margin-right: 30px;
    }

    #header_menuFiller{
        display: inline-block;
        flex-grow: 1;
        height: 100%;
    }
}