* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Avenir Next LT Pro";
  src:
    url("https://fonts.cdnfonts.com/s/57910/AvenirNextLTPro-Regular.woff")
      format("woff"),
    url("https://fonts.cdnfonts.com/s/57910/AvenirNextLTPro-Regular.woff2")
      format("woff2");
  font-weight: normal;
  font-style: normal;
}

.nav-interface {
  background-color: white;
  display: flex;
  position: relative;
  font-size: 1.2rem;
  height: 80px;
  justify-content: flex-start; /* Alinează elementele la stânga */
  align-items: center;
  top: 0;
  z-index: 100;
  margin: 0 auto;
  padding: 0 30px; /* Ajustează padding-ul general */
}

.navbar-logo {
  position: relative;
  left: 60px; /* Mută sigla puțin spre stânga */
  margin-top: 7px;
  cursor: pointer;
}

#logo {
  width: 65px; /* Ajustare dimensiune siglă */
  height: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
  margin-left: auto; /* Mută butoanele spre dreapta */
  padding-block: 10px;
}

.navbar-item {
  height: 70px;
  align-items: center; /* Asigură alinierea verticală corectă */
  display: flex;
  /* gap: 100px; */
}

@media screen and (max-width: 1024px) {
  .navbar-item {
    min-width: 260px;
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .navbar-item {
    min-width: 225px;
    display: block;
  }
}

.navbar-link {
  background-color: #c42132;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 300;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 480px) {
  .navbar-link {
    font-size: 15px;
  }
}

.navbar-link:hover {
  background-color: #ff001b;
  color: white;
}

/* Buton pentru mobil */
.navbar-toggle {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 25px;
}

.navbar-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #c42132;
}

@media screen and (max-width: 1300px) {
  #logo {
    margin-left: -50px;
  }
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  #logo {
    width: 55px; /* Siglă mai mică pe tablete */
    margin-left: -50px;
  }
}

@media screen and (max-width: 1024px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

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

  .navbar-toggle {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  #logo {
    width: 45px; /* Siglă mai mică pe telefoane */
    margin-left: -50px;
  }
}
