header {
  position: relative;
  top:17.5vh;
  z-index: 2051;
  background-color: transparent;
  color: #F7EFE8;
  padding: 10px 20px;
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Linia de sus: logo + limbi */
.top-header {
  z-index:3005;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Butoane limbă */
.lang-switcher {
  display: flex;
  gap: 10px;
}

.lang-switcher button {
  background-color: transparent;
  border:0;
  color: #F7EFE8;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s;
}

.lang-switcher button:hover {
  background-color: #F7EFE8;
  color: #222;
}

/* Linia de jos: meniul */
.bottom-nav {
    position: sticky;
    display:flex;
    justify-content: flex-end;
    top:10px;
    right:50px;
    width: 98%;
    background-color: transparent; /* sau altă culoare */
    z-index: 2050;
    padding: 10px 0;
}

.bottom-nav a {
  color: #F7EFE8;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
}

.bottom-nav a:hover {
  background-color: #F7EFE8;
  color: #222;
}
  .lang.active {
    background-color: #F7EFE8;
    color:#333;
  }