/* ======================================
   HEADER CONDIVISO - WALTER
====================================== */

.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;                 /* altezza fissa per tutte le pagine */
  padding: 0 30px;              /* solo laterale */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;

  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Titolo */
.site-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* Social */
.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  opacity: 1;
}

.social-links img {
  width: 150%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
