
nav{
    width: 100%;
}
.navbar{
    background-color: var(--albastru-inchis);
    display: flex;
    width: 100%;
    z-index: 20;
    position: fixed;
    top: 0;
}


#link-feedback{
  color:white;
  background-color: rgb(0, 66, 0);
}

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

.nav-logo{
    height: 90px;
}

.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: var(--albastru-inchis);
  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: var(--albastru);
  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);
    background-color: white;
    border: 0;
    padding: 10px 20px !important; 
    margin-left: 1rem;
    font-size:20px;
    font-weight: 700;
    transition: 0.3s ease;
  }

.nav-login:hover{
  background-color:var(--albastru);
  color:white;
  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;
  }

  #link-feedback{
    background-color: rgb(0, 66, 0);
  }

  .nav-container{
    padding:5px;
  }

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

  #nav-header-mobile{
    background-color: rgba(213, 149, 213, 0.89);
    color:white;
    inset:0;
    position: fixed;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 10vh 0;
    justify-content: space-between;
    align-items: center;
    gap:10px;
    /* display: none; */
  }

  #nav-header-mobile a{
    padding:1.5rem 0;
    font-size:24px;
    text-shadow:0 0 8px rgba(0, 0, 0, 0.5);
  }

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

}