/* assets/css/navbar.css */
/* Navbar EITango — logo + auth in header, nav piena sotto */

/* ═══ HEADER TOP — Logo sx, Auth dx ═══ */
.header-top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
}
.logo-link {
  display: inline-block;
  text-decoration: none;
}
.logo-link:hover { text-decoration: none; }

/* Auth buttons nella fascia bianca */
.header-auth {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.header-auth-link {
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
  text-decoration: none;
  padding: .4rem .7rem;
  transition: color .15s;
}
.header-auth-link:hover {
  color: var(--red);
  text-decoration: none;
}
.header-auth-admin {
  color: var(--red);
}
.header-auth-btn {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  background: var(--red);
  padding: .45rem .9rem;
  text-decoration: none;
  transition: background .15s;
}
.header-auth-btn:hover {
  background: var(--red-dark);
  text-decoration: none;
  color: #fff;
}

/* Auth nascosto su mobile nella fascia bianca (si vede nel menu hamburger) */
.nav-mobile-auth {
  display: none;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .header-top-inner {
    padding: .5rem 1rem;
  }

  /* Nascondi auth nella fascia bianca su mobile */
  .header-auth {
    display: none;
  }

  /* Mostra auth nel menu hamburger */
  .nav-mobile-auth {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: .25rem;
    padding-top: .25rem;
  }
  .nav-mobile-auth .nav-link {
    width: 100%;
  }
}
