.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
/*     background: color(srgb 0.961 0.941 0.894 / 0.9); */
    background: #f8f6f0;
    height: 66px;
    width: 100%;
    border-bottom: 0.4px solid color(srgb 0.365 0.365 0.365 / 0.2);
    padding: 0 24px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9980;
    transition: top 0.3s;
    
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    
}

.logo {
  padding-bottom: 5px;
}

.logo img {
    width: 146px;
    height: auto;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.logo img:hover {
  opacity: .85;
}

.nav-links, .right-links {
    display: flex;
    gap: 35px;
}

.nav-links a, .right-links a {
    text-decoration: none;
    color: #5D5D5D;
    font-size: 11px;
    height: 40px;
    line-height: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "clash-medium", "Helvetica Neue", Arial, sans-serif; 
    font-weight: bold;
    
}

.nav-links a:hover, .right-links a:hover {
color: #7F317D !important;

}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #5D5D5D;
    transition: all 0.3s;
}

.fullscreen-menu {
    display: none;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7F317D;
    color: #827143;
    transition: top 0.5s;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9900;
}

.fullscreen-menu .menu-links {
    display: flex;
    flex-direction: column;
    text-align: center;
}







.fullscreen-menu .menu-links a {
   animation-duration: 1s;
   animation-fill-mode: both;
   animation-name: fadeInUp;
}

.fullscreen-menu .menu-links a:nth-child(1) {
   animation-delay: 0.1s;
}
.fullscreen-menu .menu-links a:nth-child(2) {
   animation-delay: 0.2s;
}
.fullscreen-menu .menu-links a:nth-child(3) {
   animation-delay: 0.3s;
}
.fullscreen-menu .menu-links a:nth-child(4) {
   animation-delay: 0.4s;
}
.fullscreen-menu .menu-links a:nth-child(5) {
   animation-delay: 0.5s;
}
.fullscreen-menu .menu-links a:nth-child(6) {
   animation-delay: 0.6s;
}
.fullscreen-menu .menu-links a:nth-child(7) {
   animation-delay: 0.7s;
}
.fullscreen-menu .menu-links a:nth-child(8) {
   animation-delay: 0.8s;
}

@-webkit-keyframes fadeInUp {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  }

  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
}

@keyframes fadeInUp {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, 25%, 0);
  -ms-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
  }

  100% {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}







.fullscreen-menu .menu-links a {
    text-decoration: none;
    color: #F2ECE2;
    font-size: 40px;
    line-height: 44px;
    font-family: "clash-medium", "Helvetica Neue", Arial, sans-serif; font-weight: 400; letter-spacing: .8px;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .right-links  {
      margin-left: auto;
      margin-right: 15px;
    }
    
    .navbar {
      padding: 0 18px;
    }

/*     .logo {
        margin: 0 auto;
        padding-left: 22px;
    } */

    .hamburger {
        display: flex;
    }

    .fullscreen-menu.show {
        display: flex;
        top: 12px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
