@charset "utf-8";
/* ====== BASE ====== */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ====== HEADER STICKY BLU ====== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #003366;                 /* blu istituzionale */
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

/* Logo a sinistra (piccolo ma visibile) */
.header-logo {
  height: 32px;                        /* leggermente più grande */
  width: auto;
  display: block;
  opacity: .95;
}

/* ====== LINK DESTRA ====== */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;                     /* testo più grande */
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .3s ease;
}

.header-link:hover {
  color: #ffd700;                      /* dorato al passaggio */
}

/* Separatore “|” tra i link */
.header-separator {
  color: #fff;
  opacity: .6;
  font-size: 16px;
  padding: 0 6px;
}

/* Icone personalizzate */
.icon-lock {
  color: #ffd700;                      /* oro */
  font-size: 18px;
  line-height: 1;
}

.icon-globe {
  color: #fff;                         /* bianco (globo a griglia) */
  font-size: 18px;
  line-height: 1;
}

/* ====== HERO SECTION (rosso visibile) ====== */
.hero-section {
  background: #eb1700;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
