@charset "utf-8";
/* CSS Document */

/* ------------------- RESET ------------------- */
html, body {
  margin: 0;
  padding: 0;
}

/* ------------------- HEADER (sticky, blu pieno) ------------------- */
.page-head {
  background-color: #19236B; /* fascia blu */
  width: 100%;               /* copre tutta la larghezza */
  padding: 20px 0;           /* spazio sopra e sotto */
  text-align: center;        /* logo centrato */
  position: fixed;           /* fisso in alto */
  top: 0;
  left: 0;
  z-index: 1050;             /* sopra Bootstrap */
}

.page-head .brand-logo img {
  max-height: 80px;          /* dimensione logo */
  width: auto;
  display: inline-block;
}

/* Spazio per i contenuti (compensa header sticky) */
body {
  padding-top: 110px; /* >= altezza header */
}

/* ------------------- MENU SECTION ------------------- */
.menu-section {
  padding: 60px 20px;
  background: #19236B;
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* mobile: 2 icone */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr); /* max 4 icone */
  }
}

.menu-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.menu-item a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-item i {
  font-size: 5rem; /* ~80px */
  margin-bottom: 15px;
}

.menu-item h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 992px) {
  .menu-item h5 {
    font-size: 1.7rem;
  }
}

/* ------------------- HERO SECTION ------------------- */
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
}

.header-card {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 3rem 3.5rem;
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  margin: 0 auto;
}

.header-card h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-card .subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.header-card p {
  font-size: 1.6rem;
  margin: 1.2rem 0;
  line-height: 1.5;
}

.header-card strong {
  font-size: 1.8rem;
  font-weight: 800;
}

@media (min-width: 992px) {
  .hero-section {
    justify-content: flex-start;
    padding-left: 8%;
  }

  .header-card {
    text-align: left;
    padding: 4rem 4.5rem;
  }

  .header-card h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
  }

  .header-card .subtitle {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .header-card p {
    font-size: 1.8rem;
    margin: 1.5rem 0;
  }

  .header-card strong {
    font-size: 2.2rem;
  }
}

/* ------------------- SPONSOR SECTION ------------------- */
.sponsor-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.sponsor-carousel .item p {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #333;
}

.sponsor-carousel .item img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
