<style>
/* ------------------- RESET SOLO PER HEADER ------------------- */
.header-reset *:not(i) {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* Font Awesome per <i> */
.header-reset i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* ------------------- TOPBAR ------------------- */
.header-reset .topbar {
  width: 100%;
  background-color: #333; 
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  justify-content: center; 
  align-items: center;
  padding: 6px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  gap: 20px;
  transition: background-color 0.3s, opacity 0.3s;
}

.header-reset .topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.header-reset .topbar a:hover {
  color: #ffd700; /* oro chiaro */
  transform: translateY(-2px);
}

/* ------------------- HEADER ------------------- */
.header-reset header {
  width: 100%;
  background-color: #2c2c2c;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0; 
  z-index: 1000;
}

.header-reset .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* Logo con testo inline */
.header-reset .header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-reset .header-logo img { 
  height:50px; 
  display:block;
}

.header-reset .header-logo .logo-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Nascondi testo su mobile */
@media (max-width: 768px) {
  .header-reset .header-logo .logo-text {
    display: none;
  }
}

/* Nascondi nav-menu desktop */
.header-reset .nav-menu { display: none; }

/* ------------------- HAMBURGER ------------------- */
.header-reset .hamburger-wrapper { position: relative; }
.header-reset .hamburger {
  display: flex; 
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  transition: transform 0.3s;
}
.header-reset .hamburger div {
  width:100%;
  height:3px;
  background-color:#fff; 
  transition: all 0.3s;
}
.header-reset .hamburger.active div:nth-child(1){ transform: rotate(45deg) translate(5px,5px);}
.header-reset .hamburger.active div:nth-child(2){ opacity:0;}
.header-reset .hamburger.active div:nth-child(3){ transform: rotate(-45deg) translate(5px,-5px);}

/* ------------------- MOBILE MENU ------------------- */
.header-reset .mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background-color: #2c2c2c;
  position: absolute;
  top: 100%; 
  right: 0; 
  padding: 10px 15px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 999;
}

.header-reset .mobile-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 5px 15px;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header-reset .mobile-menu a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.header-reset .mobile-menu.show {
  display: flex;
  flex-direction: column;
}
</style>