@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;
  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;
  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;
  font-size: 18px;
  line-height: 1;
}

.icon-globe {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/* ====== HERO SECTION ====== */
.hero-section {
  background-color: #E4E2DD; /* colore di sfondo */
  background-image: url("../images/home-slider-1-slide-1-1920x900.png");
  background-size: contain;  /* mostra tutta l'immagine */
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #003366; /* blu istituzionale per contrasto */
  padding: 40px 20px;
  position: relative;
}

/* RIMOSSO l’overlay ::before */

/* Contenuto testuale */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #003366;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
  color: #555;
}