body {
    background-image: url("../assets/background-2.png");
    background-size: 100% auto;
    border-top: 1px solid rgba(0, 0, 0, 0);
}

#menu {
    overflow-x: clip;
    width: 100%;
    position: relative;

    box-sizing: border-box;
}

h1{
    color: var(--secondary);
    font-size: calc(130 * var(--shrink40));
    font-family: 'Futura-Condensed-Medium', sans-serif;
    font-weight: 600;

    line-height: 85%;
    text-size-adjust: none;
}

#menu .menu-nav {
    display: flex;
    justify-content: space-between;
    align-items: end;
    
    width: 84%;
    margin: 0vw 8vw;
    padding: calc(300 * var(--shrink40)) 8vw calc(50 * var(--shrink40)) 8vw;
    box-sizing: border-box;
    border-bottom: 5px solid var(--secondary);
}

#menu .menu-nav span {
    cursor: pointer;
    font-weight: 600;
}

#menu .selected {
    padding: 10px 20px;

    border-radius: 5px;
    color: var(--primary);
    background-color: var(--secondary);

    translate: 0px 10px;
}

#menu .dishes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    
    width: 100%;
    padding: calc(150 * var(--shrink40)) 8vw;
    box-sizing: border-box;
}

#menu .dishes h2.title {
    width: 100%;
    text-align: center;
    margin: calc(75 * var(--shrink40)) 0;
    font-size: calc(110 * var(--shrink40));
}

#menu .dishes h2 {
    text-transform: uppercase;
}

#menu .dishes .container {
    display: flex;
    flex-direction: column;
    width: 25vw;
    margin: 0 8vw;
    margin-bottom: calc(75 * var(--shrink40));
}

#menu .menu-nav .select-wrapper {
    display: none;
}

#menu .dishes .container div {
    position: relative;

    display: flex;
    align-items: end;
}

#menu .dishes .container div h3 {
    margin-left: calc(12 * var(--shrink40));
    margin-bottom: 6px;
    white-space: nowrap;
    text-transform: uppercase;
}

#menu .dishes .container div svg {
    margin-left: calc(12 * var(--shrink40));
    margin-bottom: 10px;
}

#menu .dishes .bolder {
    font-weight: 800;
}

#menu .dishes .extras-container {
    display: flex;
    justify-content: space-between;

    width: 25vw;
    margin: 0 auto;
    margin-bottom: calc(75 * var(--shrink40));

    box-sizing: border-box;
}

#menu .dishes .hot-coffee-container {
    display: flex;
    justify-content: space-between;

    width: 40vw;
    margin: 0 auto;
    margin-bottom: calc(75 * var(--shrink40));

    box-sizing: border-box;
}

#menu .dishes .iced-coffee-container {
    display: flex;
    justify-content: space-between;

    width: 40vw;
    margin: 0 auto;
    margin-bottom: calc(75 * var(--shrink40));

    box-sizing: border-box;
}

#menu .dishes .chocolate-tea-container {
    display: flex;
    justify-content: space-between;

    width: 40vw;
    margin: 0 auto;
    margin-bottom: calc(75 * var(--shrink40));

    box-sizing: border-box;
}

#menu .dishes .happy-container {
    display: flex;
    justify-content: space-between;

    width: 40vw;
    margin: 0 auto;
    margin-bottom: calc(75 * var(--shrink40));

    box-sizing: border-box;
}

#menu .dishes .kids-container {
    display: flex;
    justify-content: space-between;

    width: 40vw;
    margin: 0 auto;
    margin-bottom: calc(75 * var(--shrink40));

    box-sizing: border-box;
}

#menu .dishes .desserts-container {
    display: flex;
    justify-content: space-between;

    width: 40vw;
    margin: 0 auto;
    margin-bottom: calc(75 * var(--shrink40));

    box-sizing: border-box;
}


#menu .dishes .col-container {
    display: flex;
    flex-direction: column;
}

#menu .dishes h3 {
    text-transform: uppercase;

}


#menu .dishes .wrapper {
    display: flex;
    justify-content: space-between;

    width: 100%;
    padding: 0 8vw;
    margin-bottom: calc(75 * var(--shrink40));
    box-sizing: border-box;
}

#menu .dishes .wrapper > div {
    display: flex;
}

#menu .dishes .wrapper div h2{
    width: 10vw;
    text-align: center;
}

#menu .dishes .wrapper div h3{
    width: 10vw;
    text-align: center;
}

#menu .dishes .wrapper .copy{
    width: auto;
    flex-direction: column;

}

.dashed {
    padding: calc(10 * var(--shrink40)) calc(20 * var(--shrink40));
    border-top: 2px dashed var(--secondary);
    border-bottom: 2px dashed var(--secondary);
    box-sizing: border-box;
}





#menu .icons {
    display: flex;

    padding: 0px 0px calc(25 * var(--shrink40)) 17vw;
}

#menu .icons > div {
    display: flex;
    align-items: center;
}

#menu .icons svg {
    margin-right: calc(10 * var(--shrink40));
}

#menu .icons span {
    margin-right: calc(50 * var(--shrink40));
}

#menu .special{
    width: calc(28 * var(--shrink40));
    aspect-ratio: 1/1;
}

#menu .veggie{
    width: calc(28 * var(--shrink40));
    aspect-ratio: 1/1;
}

#menu .spicy{
    width: calc(28 * var(--shrink40));
    aspect-ratio: 1/1;
}

@media screen and (max-width: 1500px){
    #menu .menu-nav > span {
        display: none;
    }
    #menu .menu-nav .select-wrapper {
        display: flex;
    }
}

@media screen and (max-width: 1000px){
    #menu .menu-nav {
        padding: calc(300 * var(--shrink40)) 0vw calc(50 * var(--shrink40)) 0vw;
    }
    #menu .menu-nav h1 {
        font-size: calc(110 * var(--shrink40));
    }
    #menu .dishes {
        justify-content: center;
    }
    #menu .dishes .container {
        width: 50vw;
        
        margin: 0 4vw calc(100 * var(--shrink40));
    }
    #menu .container span {
        text-align: center;
    }

    #menu .dishes .container div {
        flex-direction: column;
        align-items: center;
    }
    #menu .dishes .container div svg {
        margin: calc(10 * var(--shrink40)) 0;
    }

    #menu .icons {
        display: flex;
        justify-content: center;
        
        width: 100%;
        

        padding: 0;
        padding-bottom: calc(25 * var(--shrink40));
    }

    #menu .icons .container-2 span {
        margin: 0;
    }

    #menu .dishes .wrapper {
        padding: 0;
    }

    #menu .dishes .wrapper div h3 {
        width: 15vw;
    }

    #menu .dishes .wrapper .copy {
        max-width: 70%;
    }


    #menu .dishes .extras-container {
        width: 50vw;
    }

    #menu .dishes .hot-coffee-container {
        width: 75vw;
    }

    #menu .dishes .iced-coffee-container {
        width: 75vw;
    }

    #menu .dishes .chocolate-tea-container {
        width: 75vw;
    }

    #menu .dishes .happy-container {
        width: 75vw;
    }

    #menu .dishes .kids-container {
        width: 75vw;
    }
    
    #menu .dishes .desserts-container {
        width: 75vw;
    }
}

@media screen and (max-width: 600px){

    #menu .menu-nav {
        margin: 5vw;
        width: 90%;
        margin-top: 0;
    }

    #menu .dishes {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    #menu .dishes .wrapper div h3 {
        width: 12vw;
    }




    #menu .dishes .extras-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 75vw;
    }

    #menu .dishes .extras-container span {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: calc(10 * var(--shrink40));
    } 

    #menu .dishes .hot-coffee-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #menu .dishes .hot-coffee-container span {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: calc(10 * var(--shrink40));
    } 

    #menu .dishes .iced-coffee-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #menu .dishes .iced-coffee-container span {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: calc(10 * var(--shrink40));
    } 

    #menu .dishes .chocolate-tea-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #menu .dishes .chocolate-tea-container span {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: calc(10 * var(--shrink40));
    } 

    #menu .dishes .happy-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #menu .dishes .happy-container span {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: calc(10 * var(--shrink40));
    } 

    #menu .dishes .kids-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #menu .dishes .kids-container span {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: calc(10 * var(--shrink40));
    } 

    #menu .dishes .desserts-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #menu .dishes .desserts-container span {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: calc(10 * var(--shrink40));
    } 
}