/* Base e sfondo */
body {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  background-color: #fffaf2;
  color: #333;
  position: relative;
}

/* Contenitore centrale menu */
.contenitore-menu {
  background: rgba(255, 255, 255, 0.75);
  padding: 30px;
  border-radius: 16px;
  max-width: 1000px;
  margin: 40px auto;
  position: relative;
  z-index: 2;
}

/* Header */
.menu-header {
  background-color: #ed8805;
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
}

.menu-header h1 {
  font-size: 36px;
  margin: 0;
}

.menu-sottotitolo {
  font-size: 20px;
  margin-top: 10px;
}

/* Intrattenimento */
.intrattenimento {
  text-align: center;
  margin: 40px auto 20px;
}

.intrattenimento h2 {
  font-size: 28px;
  color: #2C4F96;
  margin-bottom: 20px;
}

.img-intrattenimento {
  max-width: 90%;
  height: auto;
  border-radius: 8px;
}

/* Sezione band */
.info-band {
  text-align: center;
  margin: 30px auto 20px;
  color: #2C4F96;
  font-size: 18px;
}

/* Effetto luminoso "Spettacolo" */
.roxy-glow {
  font-weight: 900;
  font-size: 20px;
  background: linear-gradient(90deg, #b432a0, #3478f6, #f54336, #ffa400);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: roxyPulse 6s ease infinite;
}

@keyframes roxyPulse {
  0%   { filter: drop-shadow(0 0 2px #3478f6); background-position: 0% 50%; }
  50%  { filter: drop-shadow(0 0 5px #f54336); background-position: 100% 50%; }
  100% { filter: drop-shadow(0 0 2px #ffa400); background-position: 0% 50%; }
}

.social-band {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #2C4F96;
  font-weight: 700;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-item:hover {
  color: #ed8805;
}

.social-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

/* Sezioni menu */
.menu-sezione {
  padding: 30px 20px;
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.menu-sezione h2 {
  font-size: 28px;
  color: #2C4F96;
  margin-bottom: 20px;
}

/* Sottocategorie menu */
.sottotitolo {
  font-size: 22px;
  font-weight: 700;
  color: #2C4F96;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Lista menu */
.menu-lista {
  list-style: none;
  padding-left: 0;
}

.menu-lista li {
  font-size: 20px;
  margin: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 8px;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 16px;
  position: relative;
}

.prezzo-voce {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  color: #ed8805;
  font-size: 20px;
}


/* Nome prodotto */
.voce-menu {
  margin: 0;
  font-size: 18px;
  font-weight: 400; /* ← NON più grassetto */
  color: #333;
}

/* Descrizione sotto */
.descrizione-menu {
  margin: 4px 0 0;
  font-size: 16px;
  color: #666;
}

/* Note */
.menu-note {
  margin-top: 20px;
  font-style: italic;
  font-size: 16px;
  color: #555;
}

/* Pulsante indietro */
.torna-indietro {
  text-align: center;
  margin: 40px 0;
}

.pulsante-back {
  display: inline-block;
  background-color: #2C4F96;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.pulsante-back:hover {
  background-color: #1a3570;
}

/* Footer */
footer {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

.social-info a {
  color: #ed8805;
  font-weight: 700;
  text-decoration: none;
}
