header .top-bar {
    list-style: none;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}

header .top-bar ul{
    width:100%;
    display: inline-flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
}


header .top-bar li a {

    font-size: large;
    font-weight: bold;
    color:#fff;
    text-transform: uppercase;
    
}

header .top-bar li a:hover {

    color:var(--secondary-colour);

}


header .top-bar li{
  height:100%;
  display:flex;
  align-items: center;
  position:relative;
}

/* Show sub-menu when parent is hovered */
.top-bar .menu-item-has-children:hover .sub-menu {
    display: block;
}

/* Style the sub-menu */
.top-bar .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 0 2em;
    background-color: #5366a3;
    width: max-content;
}

.hotkey {
    list-style: none;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: end;
    padding-left: 0;
}

.hotkey li {
  padding: 0;              /* remove padding so <a> fills neatly */
  margin: 0 0.2em;
  border-radius: 0.5em;
  list-style: none;
}

.hotkey a {
  display: block;          /* make it a block */
  width: 100px;
  height: 40px;
  border-radius: 0.5em;    /* move radius here so background clips */
  text-indent: -9999px;    /* hide text if any */
  overflow: hidden;
}

/* apply background to the <a> instead of the <li> */
.hotkey .grab-link a {
  background: #fff url(https://jubilorestaurant.com/wp-content/themes/jubilo/images/grab-food.svg) 
              no-repeat center;
  background-size: contain;
}

.hotkey .shopee-link a {
  background: #ed4d2d url(https://jubilorestaurant.com/wp-content/themes/jubilo/images/shopee-food.svg) 
              no-repeat center;
  background-size: contain;
}

footer a.shopee-link {
    display: inline-block;
    width: 65px;
    height: 65px;
    background-color: #ed4d2d;
    background-image: url(https://jubilorestaurant.com/wp-content/themes/jubilo/images/shopee-food-icon.svg);
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position:center;
}

footer a.grab-link {
    bdisplay: inline-block;
    width: 65px;
    height: 65px;
    background-color: #fff;
    background-image: url(https://jubilorestaurant.com/wp-content/themes/jubilo/images/grab-food-icon.svg);
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position:center;
}

.footer-menu {
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 0;
}

footer .sub-menu {
    list-style: none;
    padding-left: 0;
}

footer li a {
    font-weight: bold;
}

.sub-menu li {
    margin: 1em 0;
}

.sub-menu li a{
    margin: 1em 0;
    font-weight:normal;
    color:#fff;
    text-transform: uppercase;
}

footer .sub-menu li {
    margin: 0;
}

/* Hamburger Menu Icon */

.toggle-wrapper {
    position: sticky;
    top: 0;
    z-index: 998;
    background: #fff;
    width: 100%;
    padding: 0.5em 1em;
}

.toggle-wrapper::before {
    content: '';
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    mix-blend-mode: multiply;
    box-shadow: #000 0em 0.3em 0.3em;
    opacity:0.5;
}

.hamburgler {
  display: block;
  width: 30px;
  height: 15px;
  cursor: pointer;
  margin: 1em auto;
  padding: 0;
  position:relative;
  z-index:999;
}

.hamburgler .bun {
  background-color: #fff;
  display: block;
  height: 3px;
  position: absolute;
  width: 100%;
  transition: transform 0.3s ease;
}

.hamburgler .bun.top {
  top: 0;
}

.hamburgler .bun.bottom {
  bottom: 0;
}

.toggle-nav .bun.top {
  transform: translateY(17px) rotate(45deg);
}

.toggle-nav .bun.bottom {
  transform: translateY(5px) rotate(-45deg);
}


/* Menu Toggle Animation */


/* Mobile Menu */
.mobile-menu {
    display: none;
    position: sticky;
    top: 55px;
    left: 0;
    width: 100%;
    padding-top: 1em;
    z-index: 998;
    background:var(--primary-colour);
}

.toggle-nav .mobile-menu {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding-left: 0;
}

.mobile-menu li {
    padding: 1em 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu ul a{
  color:#fff;
  text-transform: uppercase;
  font-weight: bold;
}

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

  .top-bar{
    display:none!important;
  }

  .footer-menu li {
    width: 100%;
    margin: 1em 0;
  }

  .footer-menu .sub-menu li{
    margin: 0.5em 0;
}

  .footer-menu{
    margin-top:2em;
  }

}



#fb-menu-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    top: 0;
    z-index: 1;
    position: relative;
}

#fb-menu a {
    display: block;
    padding: 10px 30px;
    text-decoration: none;
    white-space: nowrap;
    color:#fff;
}

.scroll-btn {
    color:#fff;
    background: var(--secondary-colour);    
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

#fb-menu::-webkit-scrollbar {
    display: none;  /* Hide scrollbar in Chrome, Safari, and Opera */
}

#scroll-left {
    left: 0;
}

#scroll-right {
    right: 0;
}

@media only screen and (max-width: 766px) {
  #fb-menu-container {
    display: none;
  }
}

.fb-menu {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.bookmark {
    position: absolute;
    right: -52px;
    top: 40%;
    transform: translateY(-60%);
    background:var(--secondary-colour);
    padding: 1em;
    border-radius: 0px 10px 10px 0px;
    z-index: 1;
}

.close {
    position:fixed;
    top: 0;
    left:0;
    right: 0;
    bottom:0;
    background:#000;
    opacity:0.1;
    z-index:1;
    display:none;
}

#fb-mobile-menu {
    width: 280px;
    height: 100vh;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(20px);
    z-index: 999;
    top: 0;
    left: -277px;
    border-right:3px solid var(--secondary-colour);
    transition:all 0.3s linear;
    background-color: rgba(var(--secondary-rgb), var(--bs-bg-opacity));
    padding: 0 0 2em 0;
    position:absolute;
}

.fb-mobile-menu{
    padding:0;
}

.fb-mobile-menu a {
    display: block;
    padding: 1em 0.5em;
}

.fb-menu a {
    padding: 1em;
}

.fb-menu a.active, .fb-mobile-menu a.active {
    font-weight:bold;
    color:#fff;
    background:var(--primary-colour);
}


.footer-menu ul{
    padding:0;
    list-style: none;
}