
  /* RESET BASE MOLTO LEGGERO */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

   body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, .section-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  line-height: 34px;
  margin-bottom: 20px;
}


/* CENTRATURA E STILE DEL FORM */

#iscrizione {
	background-color: #14262f;
	padding-top:100px !important;
	padding-bottom:100px !important;
}

#iscrizione h2, #iscrizione p{
	text-align:center;
}

.text-center {
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;           /* centra tutto orizzontalmente */
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto 0 auto;      /* centra tutto nella pagina */
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-form label {
  font-size: 0.9rem;
  color: #aaa;
  align-self: flex-start;
  margin-left: 0.5rem;
}

.contact-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  background-color: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  transition: border-color .2s ease, background-color .2s ease;
}

.contact-form input:focus {
  outline: none;
  border-color: #fff;
  background-color: rgba(255,255,255,0.1);
}

.contact-form .btn {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 180px;
}






    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* HEADER STICKY */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* LOGO (può diventare un'immagine) */
    .logo {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff;
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .logo img {
      height: 32px;
      width: auto;
    }

    /* MENU DESKTOP */
    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 2rem;
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    nav a {
      position: relative;
      padding-bottom: 2px;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0%;
      height: 2px;
      background-color: #fff;
      transition: width .2s ease;
    }

    nav a:hover::after,
    nav a:focus-visible::after {
      width: 100%;
    }

 /* HAMBURGER ICON — correzione completa */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 2000; /* sopra tutto */
  position: relative;
  line-height: 0;
}

.burger-box {
  width: 28px;
  height: 22px; /* assicurati che il box abbia altezza */
  position: relative;
  display: inline-block;
}

.burger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff; /* linee bianche */
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.25s ease;
}

/* posizionamento delle 3 linee */
.burger-line:nth-child(1) { top: 0; }
.burger-line:nth-child(2) { top: 9px; }
.burger-line:nth-child(3) { top: 18px; }

/* animazione quando il menu è aperto */
.burger.open .burger-line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.burger.open .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.open .burger-line:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* visibile su mobile */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .burger {
    display: block;
  }
}




    /* MENU MOBILE OVERLAY */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background-color: rgba(0,0,0,0.9);
      backdrop-filter: blur(8px);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      z-index: 999;
    }
    .mobile-menu a {
      text-decoration: none;
      color: #fff;
    }
    .mobile-menu.show {
      display: flex;
    }

    /* HERO FULL HEIGHT */
    .hero {
      position: relative;
      min-height: 100vh;
      width: 100%;
      background-color: #000;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("/images/disfunzione-band-2001-head.jpg");
      background-size: cover;
      background-position: center;
      /*filter: grayscale(100%) contrast(1.1) brightness(0.7);*/
      /* overlay scuro */
    }
	


	
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(46, 142, 200, 0.4) 0%, rgba(33, 141, 183, 0.46) 40%, rgb(32, 33, 34) 100%);
    }
	
	.hero-overlay-scura {
		 position: absolute;
		inset: 0;
		background: radial-gradient(circle at 50% 50%, rgb(78, 145, 185) 0%, rgba(8, 28, 36, 0.63) 40%, rgb(0, 0, 0) 100%);
	}

	
	
		/* Versione mobile: sostituisce immagine per schermi piccoli */
@media (max-width: 768px) {
  .hero-bg {
    background-image: url("/images/disfunzione-band-2001-mobile.jpg");
    background-position: center top;
  }
   .hero-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(42, 107, 147, 0.71) 30%, rgba(27, 102, 138, 0.8) 40%, rgb(32, 33, 34) 100%);
    }
	
	.hero-overlay-scura {
	  position: absolute;
	  inset: 0;
	  background: radial-gradient(circle at 50% 50%, rgb(78, 145, 185) 0%, rgba(8, 28, 36, 0.85) 60%, rgb(0, 0, 0) 100%);
	}
	
}
	
	
	
	
	
	

    .hero-content {
      position: relative;
      max-width: 800px;
      padding: 2rem 1rem 6rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 2;
    }

    .hero-title {
      font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.2;
      color: #fff;
      text-shadow: 0 2px 16px rgba(0,0,0,0.4);
      margin-bottom: 1rem;
    }
	
	.hero-title span {
      font-weight: 100;
	  display: inline-block;
	  margin-top: 1.5rem;
      margin-bottom: 1rem;
    }
	

	.hero-title {
  animation: fadeInDown 1.2s ease both;
}



#iscrizione .section-body p {
  max-width: 480px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}



@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



    .hero-sub {
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #d4d4d4;
      max-width: 36ch;
      text-shadow: 0 2px 8px rgba(0,0,0,0.8);
      margin-bottom: 2rem;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .btn {
      appearance: none;
      border: 1px solid rgba(255,255,255,0.4);
      background-color: rgba(255,255,255,0.05);
      color: #fff;
      font-size: .9rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: .9rem 1.25rem;
      border-radius: .5rem;
      cursor: pointer;
      min-width: 160px;
      text-align: center;
      transition: all .15s ease;
    }
    .btn:hover,
    .btn:focus-visible {
      background-color: #fff;
      color: #000;
      border-color: #fff;
    }
	
	
	.hero-content .btn:hover,
    .hero-content .btn:focus-visible {
      background-color: none !important;
    }
	

    /* SEZIONI CONTENUTO */
    section {
      padding: 4rem 1rem;
    }

    .section-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
      color: #fff;
      text-transform: uppercase;
    }

    .section-body {
      font-size: 1rem;
      color: #cfcfcf;
      line-height: 1.6;
    }

    /* “Scarica i dischi” cards */
    .albums {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(260px,100%),1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .album-card {
     display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 30px;
    }

    .album-cover {
      width: 100%;
      aspect-ratio: 1 / 1;
      background-color: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: .5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      color: #888;
      text-align: center;
      padding: 1rem;
    }

    .album-info-title {
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      line-height: 1.4;
    }
    .album-info-desc {
      font-size: .9rem;
      line-height: 1.4;
      color: #a8a8a8;
    }

    .album-actions {
      margin-top: .5rem;
    }

    /* CONTATTI */
    .contacts-list {
      margin-top: 1rem;
      font-size: 1rem;
      line-height: 1.6;
      color: #cfcfcf;
    }

    .contacts-list a {
      color: #fff;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
    }

/* SEZIONE IMMAGINE FINALE */
.closing-image {
  width: 100%;
  margin-top: 4rem;
  overflow: hidden;
  padding:0px !important;
}

.closing-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Effetto leggero di fade-in quando appare */
.closing-image img {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 1.5s ease;
}

.closing-image img.loaded {
  opacity: 1;
  transform: scale(1);
}






    /* FOOTER */
    footer {
      border-top: 1px solid rgba(255,255,255,0.07);
      color: #666;
      text-align: center;
      font-size: .8rem;
      padding: 2rem 1rem 4rem;
    }

    /* RESPONSIVE NAV */
    @media (max-width: 768px) {
      nav ul {
        display: none;
      }
      .burger {
        display: block;
      }
    }
