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

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

  transition:
    background 0.3s ease,
    transform 0.4s ease;
}

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

  width: 100%;
  height: 1px;

  background: rgba(255, 255, 255, 0.25);
}

.navbar-inner {
  max-width: 1400px;
  margin: auto;

  height: 100px;

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

  padding: 0 24px;
}

/* Transparent */

.navbar-header {
  background: transparent;
}

.navbar-header .navbar-menu a {
  color: var(--white);
}

/* Scrolled */

.navbar-header.navbar-scrolled {
  background: var(--white);
}

.navbar-header.navbar-scrolled::after {
  background: rgba(0, 0, 0, 0.08);
}

.navbar-header.navbar-scrolled .navbar-menu a {
  color: var(--text);
}

.navbar-header.navbar-scrolled .search-btn {
  color: var(--text);
}

.navbar-header.navbar-scrolled .navbar-toggle span {
  background: var(--text);
}

/* Hide Navbar */

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

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

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

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

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

.navbar-menu a {
  position: relative;

  color: white;
  text-decoration: none;

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

  padding: 32px 14px;

  transition: 0.3s;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--primary);
}

.navbar-menu a::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--primary);

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

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 70%;
}

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

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

.search-btn {
  border: none;
  background: none;
  cursor: pointer;

  color: var(--white);

  font-size: 20px;
}

.book-btn {
  background: var(--primary);

  color: white;
  text-decoration: none;

  padding: 14px 32px;

  border-radius: 8px;

  font-weight: 600;

  transition: 0.3s;
}

.book-btn:hover {
  background: var(--primary-dark);
}

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

.navbar-toggle {
  display: none;

  border: none;
  background: none;

  cursor: pointer;

  flex-direction: column;
  gap: 5px;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;

  background: white;
}

.mobile-menu {
  display: none;

  flex-direction: column;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
/*   background: #00000040; */
/*   backdrop-filter: blur(12px); */
}

.navbar-scrolled .mobile-menu {
  background: var(--white);
}

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

.mobile-menu a {
  padding: 16px 24px;

  text-decoration: none;

  color: var(--white);

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

.navbar-scrolled .mobile-menu a {
  color: var(--text);
}

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

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

  .book-btn {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }
	
	.navbar-header{
		background: #00000040;
		        backdrop-filter: blur(12px);
	}
}

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

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