/*=========================================
            NAVBAR
=========================================*/

.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  transition:
    background 0.35s ease,
    transform 0.35s ease,
    backdrop-filter 0.35s ease;

  background: transparent;
  backdrop-filter: blur(10px);
}

.navbar-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: rgba(0, 0, 0, 0);
}

.navbar-header.navbar-scrolled {
  background: rgba(34, 31, 28, 0.97);
}

.navbar-header.navbar-hide {
  transform: translateY(-100%);
}

/*=========================================
            CONTAINER
=========================================*/

.navbar-container {
  max-width: 1500px;
  margin: auto;
  width: 90%;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 32px;
}

/*=========================================
            LOGO
=========================================*/

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

.navbar-logo img {
  height: 80px;
  display: block;
}

/*=========================================
            MENU
=========================================*/

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.navbar-link {
  position: relative;

  text-decoration: none;

  color: #ececec;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;

  transition: 0.3s;
}

.navbar-link:hover,
.navbar-link.active {
  color: #d4af5a;
}

.navbar-link::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -10px;

  width: 0;
  height: 2px;

  background: #d4af5a;

  transform: translateX(-50%);
  transition: 0.3s;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

/*=========================================
            RIGHT
=========================================*/

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 168px;
  height: 46px;

  background: #cda74c;

  color: #fff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;

  border-radius: 4px;

  transition: 0.3s;
}

.navbar-button:hover {
  background: #b99238;
}

/*=========================================
            TOGGLE
=========================================*/

.navbar-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: none;
  background: none;

  cursor: pointer;
}

.navbar-toggle span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px auto;

  background: #fff;

  transition: 0.3s;
}

/*=========================================
            MOBILE MENU
=========================================*/

.navbar-mobile {
  display: none;

  flex-direction: column;

  background: transparent;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 90%;
  margin: auto;
  max-width: 1500px;
}

/* .navbar-header.navbar-scrolled .navbar-mobile {
  background: #26211d;
} */

.navbar-mobile.active {
  display: flex;
}

.navbar-mobile-link {
  padding: 18px 28px;

  text-decoration: none;

  color: #fff;

  font-size: 15px;
  font-weight: 600;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.3s;
}

.navbar-mobile-link:hover,
.navbar-mobile-link.active {
  color: #d4af5a;
}

.navbar-mobile-button {
  margin: 22px;

  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #cda74c;

  color: #fff;
  text-decoration: none;

  border-radius: 4px;

  font-weight: 700;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media (max-width: 992px) {
  .navbar-menu {
    display: none;
  }

  .navbar-button {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .navbar-container {
    height: 80px;
    padding: 0 20px;
  }

  .navbar-logo img {
    height: 60px;
  }
}
