
.navbar{
    background-color: #13659f65;
    backdrop-filter:blur(10px);
    display: flex;
    z-index: 20;
    position: fixed;
    top: 0;
}

.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    height: 80px; 
    width: 100dvw;
    box-shadow: 0 0 6px black;
}

.nav-logo{
    height: 45px;
}

.nav-butoane{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: large;
    white-space: nowrap;
    color:white;
}

.nav-butoane a:hover{
  opacity:0.65;
}

.nav-butoane a, .nav-dropdown-buton{
  padding:1rem;
  transition: 0.2s ease;
  cursor:pointer;
}

a:link{
    text-decoration: none;
    color: white;
    font-family: Poppins;
    /* font-weight: bold; */
}

.nav-dropdown-buton{
  display:flex;
  flex-direction:row;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: white;
  font-size: 18px;
  border: none;

  /* font-weight: bold; */
  font-family: 'Poppins';
}

.nav-dropdown{
  position: relative;
  display: inline-block;
}

.nav-dropdown-content{
  display: none;
  position: absolute;
  background-color: #13659f65;
  backdrop-filter:blur(10px);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  position: absolute;
  left:50%;
  transform: translateX(-50%);
}

.nav-dropdown-content a{
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  justify-content: center;
  transition: 0.2s ease;
}

.nav-login{
  font-family: Poppins;
  color: var(--albastru-inchis) !important;
  background-color: rgba(255, 255, 255, 0.67);
  border: 0;
  padding: 10px 25px !important; 
  margin-left: 1rem;
  font-size:20px;
  font-weight: 700;
  transition: 0.3s ease;
  border-radius:2rem;
}

.nav-login:hover{
  background-color:var(--albastru);
  color:white !important;
  cursor:pointer;
  opacity: 1 !important;
}

.nav-dropdown-content a:hover{
  opacity:0.65;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-buton {
  opacity:0.65;
}
.nav-icon{
  display: none;
}

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

  .nav-logo{
    padding-left:5px;
  }


  .nav-container{
    padding:5px;
  }

.nav-icon{
  display: block;
  font-size: 2rem;
  margin-right: 4dvw;
}


  #nav-header-mobile{
    background-color: rgba(0, 0, 0, 0.651);
    backdrop-filter:blur(4px);
    color:white;
    inset:0;
    position: fixed;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 15dvh 0;
    padding-bottom:20dvh;
    justify-content:space-between;
    align-items: center;
    gap:1rem;
    /* display: none; */
  }

  /* #nav-header-mobile a{
  } */

  .nav-mobile-link{
    padding:0.5rem;
    font-size:1.25rem;
    text-shadow:0 0 3px rgba(0, 0, 0, 0.5);
    width:70%;
    font-weight: 600;
  }

  .nav-login{
    margin-top:2rem;
    margin:0;
    padding: 10px 30px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);;
    width:40% !important;
  }

}