.heroimagecontainer {
    background-image: url(../images/menu-hero-desktop.jpg);
}
@media (max-width: 1000px) {
    .heroimagecontainer {
        background-image: url(../images/menu-hero-mobile.jpg);
    }
}

#subnavcontainer {
    height: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.subnavitem {
    cursor: pointer;
}
.subnavitem, .subnavseparator {
    font-family: 'Comfortaa', cursive;
    line-height: 50px;
    font-weight: 400;
    color: var(--color-fuschia);
    text-align: center;
    margin: 0;
    padding: 0 10px;
    text-transform: uppercase;
}
.subnavitem {
    font-size: 17px;
}
.subnavseparator, .subnavseparator .fa-circle {
    font-size: 6px;
    line-height: 50px;
}
.subnavitem:hover {
    color: var(--color-pink);
}
@media (max-width: 1000px) {
    #subnav {
        background-color: var(--color-pink);
        padding: 20px 0;
    }
    #subnavcontainer {
        height: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    .subnavitem {
        font-size: 16px;
        line-height: 35px;
    }
    .subnavitem:hover {
        color: var(--color-salmon);
    }
}

.flavorname {
    font-family: 'Comfortaa', cursive;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
}

.backtotop {
    cursor: pointer;
    position: absolute;
    bottom: 37px;
    right: 0;
    padding-right: 30px;
    border-bottom: 1px solid var(--color-fuschia);
}
.backtotop.twolinelabel {
    bottom: 61px;
}
.backtotop.threelinelabel {
    bottom: 84px;
}
@media (max-width: 1000px) {
    .backtotop, .backtotop.twolinelabel, .backtotop.threelinelabel {
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translate(-50%, 0);
        padding: 0 0 4px 0;
        bottom: unset;
        right: unset;
    }
}
.galleryimage img.flavorbadge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 65px;
}

@media (max-width: 1000px) {
    .galleryimage img.flavorbadge {
        position: absolute;
        top: -30px;
        right: -30px;
        width: 60px;
    }
}