﻿.restaurant-nav-navbar {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 2000;
    height: 50px;
    background-color: white;
    box-shadow: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
}

.restaurant-nav-box{
    max-width: 1200px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: auto;
}

.restaurant-nav-logo {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #25a3b1;
    font-weight: bold;
}

.restaurant-nav-btn,
.restaurant-nav-home {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .restaurant-nav-btn > span,
    .restaurant-nav-home > a {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

        .restaurant-nav-btn > span > i,
        .restaurant-nav-home > a > i {
            color: #25a3b1;
            font-size: 20px;
            display: block;
        }

.restaurant-nav-menus {
    display: none;
}

.restaurant-nav-menusMobile {
    top: 100%;
    position: absolute;
    width: 100%;
    height: 50px;
    display: none;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
    z-index: 10;
}

    .restaurant-nav-menusMobile > a {
        display: block;
        font-size: 12px;
        margin: auto 15px;
        color: #00485b;
        padding: 5px;
        border-radius: 5px;
    }

        .restaurant-nav-menusMobile > a:hover {
            color: #25a3b1;
            background-color: #00485b24;
        }

/* media query */

@media screen and (min-width: 480px) {
    .restaurant-nav-navbar {
        height: 55px;
    }

    .restaurant-nav-logo {
        font-size: 20px;
    }

    .restaurant-nav-btn > span > i,
    .restaurant-nav-home > a > i {
        font-size: 22px;
    }

    .restaurant-nav-menusMobile > a {
        font-size: 13px;
    }
}

@media screen and (min-width: 600px) {
    .restaurant-nav-navbar {
        height: 60px;
    }

    .restaurant-nav-logo {
        font-size: 24px;
    }

    .restaurant-nav-menusMobile > a {
        font-size: 14px;
    }

    .restaurant-nav-menusMobile {
        height: 60px;
    }
}

@media screen and (min-width: 768px) {
    .restaurant-nav-navbar {
        height: 65px;
    }

    .restaurant-nav-logo {
        font-size: 24px;
    }

    .restaurant-nav-btn > span > i,
    .restaurant-nav-home > a > i {
        font-size: 26px;
    }

    .restaurant-nav-menusMobile > a {
        font-size: 15px;
    }
}

@media screen and (min-width: 992px) {

    .restaurant-nav-logo {
        width: 30%;
        text-align: center;
        display: block;
    }

    .restaurant-nav-btn {
        display: none;
    }

    .restaurant-nav-home {
        width: 30%;
        justify-content: center;
    }

        .restaurant-nav-home > a > i {
            font-size: 28px;
            display: block;
        }

    .restaurant-nav-menusMobile {
        display: none;
    }

    .restaurant-nav-menus {
        top: 0;
        position: relative;
        width: 60%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        box-shadow: none;
        z-index: 5;
    }

        .restaurant-nav-menus > a {
            display: block;
            font-size: 15px;
            margin: auto 15px;
            color: #00485b;
            padding: 5px;
            border-radius: 5px;
        }

            .restaurant-nav-menus > a:hover {
                color: #25a3b1;
                background-color: #00485b24;
            }
}
