.navbar {
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.919) 10%,
    rgba(20, 20, 20, 0.564)
  ) !important;
  padding: 1rem 4% !important;
  font-family: "Montserrat", sans-serif;
  position: sticky;
  margin-bottom: 0px;
}

.logo {
  height: 40px;
  width: 40px;
}

.logo-el {
  height: 100%;
  width: 100%;
}

.nav-item a {
  color: white !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--primary-color) !important;
}

.mobile-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0) 10%,
    rgba(20, 20, 20, 0)
  );
  width: 100%;
  z-index: 1000;
  padding: 25px 10px;
}

#menu-toggle .icon.times {
  display: none;
}

#menu-toggle {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-right input {
  padding: 0.5rem;
  margin-right: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--text-color);
  max-width: 150px;
}

.nav-right input::placeholder {
  color: gray;
}

.sign-in-btn {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  cursor: pointer;
  transition: all 0.3s;
}

.sign-in-btn:hover {
  background-color: var(--text-color);
  color: var(--background-color);
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 1rem;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.cart-icon:hover {
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .navbar {
    width: 100%;
    height: auto;
    position: relative;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.919) 10%,
    rgba(20, 20, 20, 0.964)
  ) !important;
  padding: 1rem 4% !important;
  font-family: "Montserrat", sans-serif;
}

  .mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 0;
    background: linear-gradient(
      to bottom,
      rgba(20, 20, 20, 0.919) 10%,
      rgba(20, 20, 20, 0.564)
    );
    
    z-index: 1000;
    padding: 15px 0;
  }

  /* .featured-movie {
    height: 100vh;
    
  } */

  #menu-toggle {
    display: block;
  }

  .navbar-nav {
    font-size: 16px !important;
    align-items: center;
    justify-content: center;
  }

  .nav-form .nav-search,
  .nav-form .nav-button {
    display: none !important;
  }

  .nav-right input,
  .sign-in-btn {
    display: none;
  }

  .cart-icon {
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .navbar {
    height: 0px;
    /* display: none; */
  }
}

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