.navbar {
  position: sticky;
  top: 0;

  z-index: 3;
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 40px;
}

.nav-links ul {
  display: flex;
  align-items: center;

  margin: 0;
}

.nav-links ul li {
  list-style: none;
}

.nav-links ul a {
  color: var(--muted);
}

.nav-links ul a:hover {
  color: var(--brand);
}

.brand-btn {
  background: var(--brand);
  color: #fff !important;
  border: none;
}

.brand-btn:hover {
  opacity: 0.9;
  color: #fff;
  background-color: #222;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;

  background: url(https://ecdn.dhakatribune.net/contents/cache/images/1200x630x1xxxxx1/uploads/dten/2021/07/burger-edited-1626247498650.jpg);
  background-position: center bottom;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .35));
}

.hero .hero-inner {
  position: relative;
  z-index: 2;
}

.section-title {
  font-weight: 700;
  letter-spacing: .5px;
}

.lead-muted {
  color: var(--muted);
}

.card-dish img {
  height: 220px;
  object-fit: cover;

  transition: transform .2s ease;
}

.card-dish img:hover {
  transform: scale(1.05);
  border-radius: calc(.25rem - 1px);
}

.testimonial {
  background: url('https://images.pexels.com/photos/1907228/pexels-photo-1907228.jpeg') center/cover no-repeat fixed;
  position: relative;
  color: #fff;
}

.testimonial::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.testimonial .content {
  position: relative;
  z-index: 2;
}

footer {
  text-align: center;
}

#reserve span {
  color: var(--brand);
}

.mob-menu {
  display: none;
}




.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 50%;

  position: relative;
  z-index: 4;
}

.hamburger:focus {
  outline: none;
}

.hamburger-box {
  width: 28px;
  height: 22px;
  display: inline-block;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {

  display: block;

  position: absolute;
  top: 9px;
  width: 28px;
  height: 4px;
  background-color: var(--brand);
  border-radius: 2px;
  transition:
    transform 0.4s cubic-bezier(.4, 0, .2, 1),
    opacity 0.3s cubic-bezier(.4, 0, .2, 1),
    background-color 0.3s cubic-bezier(.4, 0, .2, 1);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}

.hamburger-inner::before {
  top: -9px;
}

.hamburger-inner::after {
  top: 9px;
}

/* Animation for open/close (X) */
.hamburger.active .hamburger-inner {
  background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
  transform: translateY(-9px) rotate(-45deg);
}

.hamburger.active .hamburger-inner {
  /* Hide the middle bar smoothly */
  background-color: transparent;
}







@media(max-width: 991.5px) {
  .navbar .nav-links {
    display: none;
  }

  .navbar .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 0 20px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;

    transform: translateX(100%);
    transition: transform .3s ease;
  }


  .navbar .nav-links ul {
    flex-direction: column;
    padding: 0;
  }

  .mob-menu {
    display: block;
  }

  .testimonial #middle > div {
    border-top: 1px solid var(--brand);
    border-bottom: 1px solid var(--brand);
  }
}

@media(max-width: 505px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p, .hero a {
    font-size: 1rem;
  }
}