/*.navbar {
  position: relative;
  background: linear-gradient(135deg, #000000, #141414, #2a0f14);
  font-size: 12px;
  text-transform: uppercase;
}*/

.navbar {
  position: relative;
  background: linear-gradient(135deg, #efd200, #a98400, #2a0f14);
  font-size: 12px;
  text-transform: uppercase;
}
/* Sticky navbar */
.navbar .logo {
}
/*#################*/
.navbar .navbar-link,
a.navbar-item {
  color: #ffffff;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 400;
}
.navbar .navbar-link:active,
a.navbar-item:active {
  color: #000000;
}
.navbar-link:focus,
.navbar-link:focus-within,
.navbar-link:hover,
a.navbar-item:focus,
a.navbar-item:focus-within,
a.navbar-item:hover {
  color: #000000;
}
#navbar-shatrughan .button {
  border-radius: 1px;
  background-color: transparent;
  color: #ffffff;
}
#navbar-shatrughan .navbar-link,
a.navbar-item {
  line-height: 30px;
  padding-left: 25px;
}
/* Mobile off-canvas menu */
@media screen and (max-width: 1023px) {
  .offcanvas-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #202020;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  .offcanvas-menu.is-active {
    left: 0px;
  }
  .navbar-menu {
    display: block;
  }
  body.menu-open {
    overflow: hidden;
  }
}
/* Custom burger button */
.navbar .custom-burger {
  width: 48px;
  height: 48px;
  position: relative;
  padding: 0;
}
/* Icons */
.navbar .custom-burger img {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
/* Default state */
.navbar .icon-menu {
  opacity: 1;
}

.navbar .icon-close {
  opacity: 0;
}
/* Active state */
.navbar .custom-burger.is-active .icon-menu {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.navbar .custom-burger.is-active .icon-close {
  opacity: 1;
}
.navbar a.navbar-burger.custom-burger {
  background: transparent;
}
