/* Header fisso */
.header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 90%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 10px 0px;
  min-height: 60px; /* o 50px, se vuoi ancora più compatto */
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

body, html {
  margin: 0;
  padding: 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 0.9rem;
  white-space: nowrap; /* impedisce che vada a capo */
}

.logo img {
  height: 100%;
  max-height: 60px;
  width: auto;
  
}

/* Footer */
footer {
  background-color: black;
  padding: 2rem 0; /* Cambia da 2rem a 2rem 0 per togliere il padding orizzontale */
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  margin-bottom: 0;
  
}

.footer-info p {
  margin: 0.3rem 0;
  color: #aaa;
}

.social-icons a img {
  height: 24px;
  margin: 0 0.5rem;
}

