@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap');

body {
    padding: 0;
    margin: 0;
}

.header {
    width: 100%;
    padding: 10px;
    margin: 0;
    display: flex;
    justify-content: flex-start;
}

#header {
    position: fixed;
    z-index: 0;
    background-color: darkgreen;
}

#navHeader {
    position: absolute;
    z-index: 10
}

.buttonContainer {
    margin: 0;
    padding: 0;
}

.navButton {
    height: 48px;
    width: 48px;
    filter: invert();
}

#navigationMenu {
    background-color: white;
    height: 100dvh;
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 10;
    transition: left 100ms ease-out;
    display: flex;
    flex-direction: column;
}

.navContent {
    flex: 1;
    padding: 50px;
}

.navTextContainer {
    position: absolute;
    top: 0;
    left: 150px;
    transition: top 600ms ease-out;
    z-index: 10;
    text-wrap: nowrap;
}

.navText {
    font-family: 'Maven Pro';
    font-size: 48px;
    transition: font-weight 100ms ease-out, color 500ms ease-out, font-size 500ms ease-out;
    -webkit-user-select: none; /* Safari */
    user-select: none; /* Standard syntax */

}

.navText:hover {
    color: #F6A65B;
}

.navBackgroundImage {
    transition: opacity 600ms ease-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 0;
}

.navBackgroundImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navLogoContainer {
    z-index: 30;
    margin-bottom: 30px;
}

.navLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -150px;
    left: -100px;
    height: 200px;
}

.navLogoImage {
    border-radius: 20px;
    width: 250px;
    transition: opacity 600ms ease-out;
}

#right {
    z-index: 30;
    display: flex;
    flex-direction: column-reverse;
    align-items: end;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: 50px;
}

#navNumber {
    font-family: 'Maven Pro';
    font-weight: 500;
    font-style: italic;
    color: #fff;
    opacity: 0.5;
    font-size: 300px;
    line-height: 250px;
}

#down {
    display: flex;
    flex-direction: column-reverse;
    min-height: 350px;
    position: absolute;
    bottom: 0;
    width: 100%;
    align-items: center;
    left: 0;
    /*display: none;*/
    z-index: 20;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
}

@media only screen and (max-width: 768px) {
    .mobile {
        display: flex !important;
        justify-content: center;
    }

    .navLogoImage {
        width: 100px;;
    }
    
    .navTextContainer {
        left: 50px;
    }
}