/*   _..._       .-'''-.                      .-'''-.                                                                               _..._
    .-'_..._''.   '   _    \                   '   _    \                                 .---.                                    .-'_..._''.
  .' .'      '.\/   /` '.   \                /   /` '.   \    _..._                       |   |_________   _...._                .' .'      '.\
 / .'          .   |     \  '               .   |     \  '  .'     '.                     |   |\        |.'      '-.            / .'
. '            |   '      |  '  .|       .| |   '      |  '.   .-.   .                    |   | \        .'```'.    '.         . '
| |            \    \     / / .' |_    .' |_\    \     / / |  '   '  |              __    |   |  \      |       \     \   __   | |                 __
| |             `.   ` ..' /.'     | .'     |`.   ` ..' /  |  |   |  |           .:--.'.  |   |   |     |        |    |.:--.'. | |              .:--.'.
. '                '-...-'`'--.  .-''--.  .-'   '-...-'`   |  |   |  |          / |   \ | |   |   |      \      /    ./ |   \ |. '             / |   \ |
 \ '.          .              |  |     |  |                |  |   |  |          `" __ | | |   |   |     |\`'-.-'   .' `" __ | | \ '.          .`" __ | |
  '. `._____.-'/              |  |     |  |                |  |   |  |           .'.''| | |   |   |     | '-....-'`    .'.''| |  '. `._____.-'/ .'.''| |
    `-.______ /               |  '.'   |  '.'              |  |   |  |          / /   | |_'---'  .'     '.            / /   | |_   `-.______ / / /   | |_
             `                |   /    |   /               |  |   |  |          \ \._,\ '/     '-----------'          \ \._,\ '/            `  \ \._,\ '/
                              `'-'     `'-'                '--'   '--'           `--'  `"                              `--'  `"                 `--'  `"
*/

.menu-right figure {
    position: relative;
}

.caption-overlay {
    position: absolute;
    opacity: 0;
    transition: .5s ease;
    background-color: white;
    background-size: cover;
    border-style: hidden;
    color: black;
    font-size: 1em;
    font-family: "Arial Narrow";
    height: 100%;
    padding: .8em;
}


.menu-right figure:hover .caption-overlay {
    opacity:0.9;
}

.item-title {
    font-family: "Arial Rounded MT Bold";
    font-size: 1.2em;
    color: darkslateblue;
}
.menu-list {
    list-style: none;
    padding-inline-start: 1vw;
}

.vertical-bar {
    width: 1px;
    background-color: gray;
}

.menu li {
    padding: 0.5em;
}

.menu {
    display: flex;
}

.main-left {
    min-width: 100px;
}

.menu-selection.selected {

    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #C3FFFE, 0 0 30px #C3FFFE, 0 0 40px #C3FFFE, 0 0 55px #C3FFFE, 0 0 75px #C3FFFE;
}

.menu-list a {
    text-decoration: none;
    font-family: 'Acme', Acme-Regular;
    color: black;
    font-size: x-large;
}

.menu-list a:hover {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #C3FFFE, 0 0 30px #C3FFFE, 0 0 40px #C3FFFE, 0 0 55px #C3FFFE, 0 0 75px #C3FFFE;
}

.menu-list a:active {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #C3FFFE, 0 0 30px #C3FFFE, 0 0 40px #C3FFFE, 0 0 55px #C3FFFE, 0 0 75px #C3FFFE;
}

.main-left {
    width: 20%;
    margin-right: 10px;
}

.foodnavs {
    display: none;
}

.foodnavs.show {
    display: flex;
    flex-wrap: wrap;
    margin-left: 10px;
    justify-content: space-evenly;
}


.foodnavs.show figure{
    flex-basis: 25%;
}
.item-detail {
    text-align: center;
    font-family: 'PermanentMarker', PermanentMarker-regular;
    caption-side: top;
}

.chefs-choice {
    color: red;
}

.vegitarian {
    color: green;
}

.lover {
    color: pink;
}

.item-detail:hover {
    transform: scale(2);
    -ms-transform: scale(2);
    -webkit-transform: scale(2);
}

@media (max-width: 900px) {
    .main-left {
        width: 100%;
    }

    .menu-list {
        display: flex;
        justify-content: space-between;
    }

    .menu-list li {
        display: inline;
    }

    .vertical-bar {
        display: none;
    }

    .menu {
        flex-wrap: wrap;
    }
}
