@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');

*{
    margin: 0;
    padding: 0;
}

#outer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    height: 100px;
    width: 100vw;
    background-color: #1A391F;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cm-logo{
    background: url(../resources/cafe-malabar-logo.svg) no-repeat center;
    --height: 45px;
    height: var(--height);
    width: calc(var(--height)*3.4375);
    margin-left: 10vw;
    background-size: contain;
}

#cm-menu-container{
    width: 48px;
    height: 20px;
    margin-right: 5vw;
}

.cm-menu-hamburger {
    transform-origin: center;
    width: 48px;
    height: 10px;
    opacity: 0.8;
    transition: all 0.5s;
}

.cm-menu-hamburger-container:hover .cm-menu-hamburger {
    opacity: 1.0;
}

.cm-menu-hamburger-container:active .cm-menu-hamburger {
    opacity: 0.8;
}

.cm-menu-top{
    background: url(../resources/fork.svg) no-repeat center;
}

.cm-menu-bottom{
    background: url(../resources/spoon.svg) no-repeat center;
}

.cm-menu-top-active {
    opacity: 1.0;
    transform: rotate(45deg) translateY(10px);
}

.cm-menu-bottom-active {
    opacity: 1.0;
    transform: rotate(135deg) translateY(5px) ;
}

#cm-menu {
    display: none;
    margin-left: calc(5vw - 576px + 48px);
    margin-top: calc(-12px - 48px);
    position: relative;
    width: 576px;
    height: calc(100vh - 100px);
    background-color: #1A391F;
    opacity: 0.95;
}

.cm-menu-active {
    display: flex!important;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    right: 0;
    top: 100px;
}

ul {
    list-style-type: none ;
}

.cm-menu-items {
    width: 80%;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: #E0E0E0;
    font-size: 1.5rem;
    border-bottom: solid #AAA;
    text-align: center;
    padding-bottom: 2vh;
    cursor: pointer;
    text-decoration: none;
}

.cm-menu-items:hover {
    color: #FFF;
}

.cm-menu-items:active {
    color: #E0E0E0;
}

/* Media Queries */

@media  screen and (max-width: 767px) {
    #cm-menu {
        width: 100vw;
        margin-left: calc(5vw - 100vw + 48px);
    }
}