body {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

#go-top {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 5;
    background-color: #F9B95E;
    border-radius: 50%;
    bottom: 40px;
    right: 40px;
    display: none;
    align-items: center;
    justify-content: center;
}

#go-top img {
    width: 30px;
    height: 30px;
}

#nav-toggler {
    display: none;
}

#container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    justify-content: space-between;
    width: 100%;
    background-color: #ffff;
    height: 80px;
    border-bottom: 1px solid #eee;
}

#navItem-right {

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    margin-right: 30px;
}

#logo {
    display: flex;
    justify-content: flex-end;
}

#logo-pic {
    width: 70px;
    height: 60px;
}

#navBar {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    justify-content: flex-end;
    list-style: none;
    align-items: center;
}

#navBar li a {
    text-decoration: none;
    color: #404040;
    transition: all 0.2s ease-in-out;
    font-size: 18px;
}

#navBar li a:hover {
    color: #a2a2a2;
}


#navItem-left {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row-reverse;
    gap: 5px;
    margin-left: 30px;

}

.signUp-btn {
    width: 150px;
    border-radius: 30px;
    text-decoration: none;
    padding: 13px 0;
    display: flex;
    justify-content: center;
    background-color: #F9B95E;
    transition: all 0.3s ease-in-out;
    position: relative;
    color: white;
    font-family: blabeloo;
}

/*
.signUp-btn::after {
    content: " ";
    display: inline-block;
    background: url(../images/user.png) no-repeat;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 1.1rem;
    left: 0.7rem;
}
*/
.signUp-btn:hover {
    background-color: #ec6381;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.reservation-btn {
    width: 150px;
    background-color: #EC6381;
    border-radius: 30px;
    text-decoration: none;
    padding: 13px 0;
    display: flex;
    justify-content: center;
    position: relative;
    color: white;
    font-family: blabeloo;
}

/*
.reservation-btn::after {
    content: " ";
    display: inline-block;
    background: url(../images/check-mark.png) no-repeat;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 1.1rem;
    left: 0.4rem;
}
*/

.reservation-btn:hover {
    background-color: #d85974;
}


@media only screen and (max-width:992px) {

    #nav-toggler {
        display: none;
    }

    #navItem-right {
        gap: 30px;
    }

    #navBar {
        gap: 30px;
    }

    #navBar li a {
        font-size: 14px;
    }

    .signUp-btn {

        width: 130px;
        border-radius: 30px;
        padding: 13px 0;
        font-size: 16px;

    }

    /*
    .signUp-btn::after {
        content: " ";
        display: inline-block;
        background: url(../images/user.png) no-repeat;
        width: 1rem;
        height: 1rem;
        position: absolute;
        top: 0.8rem;
        left: 0.5rem;
    }
*/
    .reservation-btn {
        width: 130px;
        border-radius: 30px;
        padding: 13px 0;
        font-size: 16px;

    }

    /*
    .reservation-btn::after {
        content: " ";
        display: inline-block;
        background: url(../images/check-mark.png) no-repeat;
        width: 1rem;
        height: 1rem;
        position: absolute;
        top: 0.8rem;
        left: 0.3rem;
    }
*/
}


@media only screen and (max-width:768px) {


    #go-top {
        display: none !important;
    }

    #navItem-left {
        margin-left: 0;
    }

    .signUp-btn {
        display: none;
    }


    .reservation-btn {
        display: none;
    }

    #nav-toggler {

        display: flex;
        width: 45px;
        height: 45px;
        margin-right: 15px;
        margin-top: 20px;
        cursor: pointer;

    }

    #navBar {
        display: none;
    }

    #container {
        flex-direction: row;
    }

    #navItem-right {
        margin-right: 0;
        margin-left: 15px;
    }


}

@media only screen and (max-width:576px) {

    #go-top {
        display: none !important;
    }

    #navItem-left {
        margin-left: 0;
    }

    #nav-toggler {

        display: flex;
        width: 45px;
        height: 45px;
        margin-right: 15px;
        margin-top: 20px;
        cursor: pointer;

    }

    #navBar {
        display: none;
    }

    .signUp-btn {

        display: none;

    }

    .signUp-btn::after {

        content: " ";
        display: none;
    }

    .reservation-btn {

        display: none;

    }

    .reservation-btn::after {

        content: " ";
        display: none;
    }

    #container {
        flex-direction: row;
    }

    #navItem-right {
        margin-right: 0;
        margin-left: 15px;
    }


}