/* Reset base */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color:#000;
    color:#fff;
    scroll-behavior: smooth;
}

a {
    color:#778899;
    text-decoration:none;
    transition:color 0.3s;
}
a:hover { color:#DCDCDC; }


/* HEADER / NAV */
header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 100;
}

header nav {
  height: 70px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  box-sizing: border-box;
}

/* LOGO */
.logo img {
  width: 200px;
  height: 60px;
  display: block;
}

/* MENU DESKTOP */
.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu a:hover {
  background: #fff;
  color: #000;
}

/* HAMBURGER MOBILE */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;          /* nascosto desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 999;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animazione hamburger aperto */
#menu-toggle:checked + .hamburger div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked + .hamburger div:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .hamburger div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE */
@media (max-width: 768px) {
  .menu {
    display: none;       /* nascosto di default */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 220px;
    height: 100vh;
    background: #000;
    padding: 70px 15px 15px 15px;
    box-shadow: -4px 0 10px rgba(0,0,0,0.5);
    z-index: 900;
  }

  #menu-toggle:checked ~ .menu {
    display: flex;       /* visibile quando checkbox è checked */
  }

  .hamburger {
    display: flex;       /* visibile solo su mobile */
    position: fixed;
    top: 20px;
    right: 20px;
  }
}




/* Banner parallasse */
.banner {
    width:100%;
    height:500px;
    background-image:url('design/home.png');
    background-size:cover;
    background-position:right;
    border-radius:10px;
    margin-bottom:30px;

	
}

/* Promo */
.promo {
    background:#111;
    padding:25px;
    text-align:center;
    border-radius:10px;
    margin-bottom:40px;
    transition:background 0.3s;
}
.promo:hover { background:#222; }
.promo h2 { color:#778899; margin-bottom:10px; }

/* Carosello News */
.news-carousel {
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    margin-bottom:40px;
}
.news-track {
    display:flex;
    transition:transform 0.5s ease;
    gap:20px;
}
.news-item {
    min-width:300px;
    background:#111;
    padding:20px;
    border-radius:10px;
    transition:transform 0.3s, background 0.3s;
}
.news-item:hover { transform:translateY(-5px); background:#222; }
.news-item h3 { color:#778899; margin-bottom:10px; }

/* Carosello bottoni */
/* Carosello bottoni aggiornato */
.news-carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17,17,17,0.8); /* leggermente trasparente */
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}

.news-carousel button:hover {
    background: rgba(255,255,255,0.2);
}

/* distanza dai box */
.news-carousel .prev { left: -25px; }   /* sposta a sinistra */
.news-carousel .next { right: -25px; }  /* sposta a destra */


/* BIOGRAFIA */
.bannerbio {
    width:100%;
    height:500px;
    background-image:url('design/bio.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.media-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(to bottom, #000000, #222222);
  color: white;
  padding: 20px;
}

.media-col {
  flex: 1;
  min-width: 280px;
}

.video-container {
  display: flex;
  overflow: hidden;
  transition: transform 0.5s ease;
}


.video-container {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
  gap: 10px;
}

.video-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5); /* sfondo semi-trasparente */
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s;
}

.video-slider button:hover {
  background: rgba(255,255,255,0.2);
}

.video-slider .prev {
  left: 10px;
}

.video-slider .next {
  right: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .video-slider button {
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }
}



/* BIOGRAFIA */
.biografia-wrapper {
    position: relative;
    width: 100%;
}

.biografia-container {
    display: flex;
    overflow-x: hidden; /* barra nascosta */
    padding: 20px 0;
    gap: 20px;
    scroll-behavior: smooth;
    background: linear-gradient(90deg, #000000, #1a1a1a); /* sfondo nero sfumato */
}

.bio-box {
    min-width: 250px;
    background: linear-gradient(135deg, #111111, #333333); /* sfondo dei box sfumato */
    color: white; /* testo bianco */
    border-radius: 15px;
    padding: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2); /* bottone semi-trasparente */
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
}

.scroll-btn.left {
    left: 10px;
}

.scroll-btn.right {
    right: 10px;
}

/* Rimuove la scrollbar in tutti i browser */
.biografia-container::-webkit-scrollbar {
    display: none;
}
.biografia-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


/* Stile box singolo */
.bio-box {
    flex: 0 0 300px;
    height: 300px;
    background-color: #111;
    border: 2px solid #778899;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Titolo box */
.bio-box h2 {
    font-size: 18px;
    color: #DCDCDC;
    margin-top: 0;
    margin-bottom: 10px;
    flex-shrink: 0;
}

/* Paragrafo con scroll interno se troppo lungo */
.bio-box p {
    font-size: 14px;
    color: #F5F5F5;
    line-height: 1.5;
    overflow-y: auto;
    flex-grow: 1;
    margin: 0;
}

/* Scrollbar personalizzata */
.biografia-container::-webkit-scrollbar {
    height: 10px;
}

.biografia-container::-webkit-scrollbar-track {
    background: #111;
}

.biografia-container::-webkit-scrollbar-thumb {
    background-color: #778899;
    border-radius: 10px;
}

.bio-box p::-webkit-scrollbar {
    width: 6px;
}

.bio-box p::-webkit-scrollbar-track {
    background: #111;
}

.bio-box p::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 10px;
}

/* Responsive: riduce box su schermi piccoli */
@media (max-width: 1000px) {
    .bio-box { flex: 0 0 250px; height: 300px; }
}

@media (max-width: 600px) {
    .bio-box { flex: 0 0 200px; height: 250px; }
}

/* Discografia */


.discografia-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.discografia-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
	max-height: 400px;
}

.album-box {
  flex: 0 0 auto;
  width: 300px;
  background: rgba(255,255,255,0.4);
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s, background 0.3s, border 0.3s;
}

.album-box.active {
  border: 2px solid #778899;
  transform: scale(1.1);
  background: rgba(255,255,255,0.8);
}

.album-box:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.6);
}

.album-box img {
  width: 100%;
	max-height: 300px;
  border-radius: 16px 16px 0 0;
}

.album-box figcaption {
  padding: 8px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 8px;
  border-radius: 50%;
}

.discografia-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 20px 0;
}

.album-box {
    min-width: 200px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.4);
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.album-box img {
   max-width: 300px;
	max-height: 300px !important;

}

.album-box.active {
    border: 3px solid #778899;
    transform: scale(1.1);
    box-shadow: 0 0 20px #778899;
}

.album-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #778899;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Nasconde scrollbar su desktop */
.discografia-track::-webkit-scrollbar { display: none; }
.discografia-track { -ms-overflow-style: none; scrollbar-width: none; }

/*DISCOGRAFIA ALBUM */
.bannerdentrodischi {
    width:100%;
    height:650px;
    background-image:url('design/disco.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

/* DESCRIZIONE — layout a colonna verticale con altezza max 250px */
.central-screen_description {
  display: flex;
  flex-direction: column; /* verticale */
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 25px;
  background: linear-gradient(135deg, #232323 0%, #1a1a1a 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  color: #f0f0f0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;

  /* Scroll e altezza */
  overflow-y: auto;
  max-height: 250px !important; /* <-- qui il limite */
  scrollbar-width: thin;
  scrollbar-color: #778899 #1e1e1e;
}

/*  Scrollbar moderna (WebKit: Chrome, Safari, Edge) */
.central-screen_description::-webkit-scrollbar {
  width: 10px;
}
.central-screen_description::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 10px;
}
.central-screen_description::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #778899, #A9A9A9);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(119,136,153,0.6);
  transition: all 0.3s ease;
}
.central-screen_description::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #A9A9A9, #DCDCDC);
  box-shadow: 0 0 12px rgba(220,220,220,0.8);
}

/* Tipografia */
.central-screen_description h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E6EEF6;
  margin: 0;
}
.central-screen_description h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #C9D4E0;
  margin: 8px 0 4px;
}
.central-screen_description p {
  font-size: 0.95rem;
  color: #DCDCDC;
  margin: 0;
  text-align: justify;
}

/* Ogni sezione/colonna interna */
.central-screen_description .desc-column {
  width: 100%;
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(119,136,153,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.central-screen_description .desc-column:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(119,136,153,0.4);
}

.central-screen {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    gap: 20px;
	margin-bottom:50px;


}

/* Colonne */
.col {
    background: #111;
    border-radius: 15px;
    padding: 15px;
    box-sizing: border-box;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Colonna 1: Album + Singoli */
.album-cover-container {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}

.album-title {
text-align: left;
    top: 10px;
    left: 50%;
    
    color: #DCDCDC;
    font-size: 18px;
    font-weight: bold;
  
}

.album-info {

    top: 40px;
   text-align: left;

    color: #F5F5F5;
    font-size: 12px;
}

.album-cover {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px #778899, 0 0 50px #DCDCDC;
    transition: transform 0.5s;
}
.album-cover:hover {
    transform: scale(1.05) rotate(1deg);
}

.singles-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;

  scroll-snap-type: x mandatory; /* abilita lo snapping */
  -webkit-overflow-scrolling: touch; /* scroll fluido su mobile */
  
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #888 transparent; /* Firefox */
}

/* Nascondi scrollbar su Chrome/Safari */
.singles-scroll::-webkit-scrollbar {
  height: 8px;
}

.singles-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.singles-scroll::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

/* Le singole card */
.singles-scroll .card {
  min-width: 200px; /* larghezza minima */
  flex: 0 0 auto;
  background: #222;
  color: #fff;
  border-radius: 12px;
  padding: 15px;
  scroll-snap-align: start; /* ogni card si “ancora” allo scroll */
  transition: transform 0.3s;
}

/* Effetto hover sulle card */
.singles-scroll .card:hover {
  transform: scale(1.05);
}
.single {
    flex: 0 0 80px;
    text-align: center;
    font-size: 8px;
}
.single img {
    width: 55px;
	height: 50px;
    border-radius: 10px;
    transition: transform 0.3s;
}
.single img:hover {
    transform: scale(1.2);
}

/* Colonna 2: Tracklist */
.tracklist-col h3 {
    color: #DCDCDC;
    margin-bottom: 10px;
}
.tracklist li {
    color: #F5F5F5;
    padding: 5px 0;
    transition: color 0.3s;
	
}
.tracklist li:hover {
    color: #778899;
}



/* Colonna 3: Lyrics */
.tracklist-col, .lyrics-col {
    max-height: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    padding-right: 8px; /* evita che lo scrollbar copra il testo */
    scroll-behavior: smooth;
    
    /* Effetto moderno di â€œscorrimento morbidoâ€ */
    backdrop-filter: blur(6px);
    background: rgba(20, 20, 20, 0.3);
    border-radius: 12px;
    box-shadow: inset 0 0 8px rgba(119, 136, 153, 0.2);
    transition: box-shadow 0.3s, background 0.3s;
}

.tracklist-col, .lyrics-col:hover {
    box-shadow: inset 0 0 15px rgba(119, 136, 153, 0.4);
    background: rgba(20, 20, 20, 0.45);
}

/* Scrollbar moderna e sottile */
.tracklist-col,.lyrics-col::-webkit-scrollbar {
    width: 8px;
}

.tracklist-col,.lyrics-col::-webkit-scrollbar-track {
    background: rgba(34, 34, 34, 0.4);
    border-radius: 10px;
}

.tracklist-col,.lyrics-col::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #778899, #DCDCDC);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tracklist-col, .lyrics-col::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #000, #222);
    box-shadow: 0 0 6px #555;
}

/* Per browser Firefox */
.tracklist-col, .tracklist-col, lyrics-col {
    scrollbar-width: thin;
    scrollbar-color: #778899 rgba(34, 34, 34, 0.4);
}

.lyrics-box {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 15px;
 height:499px;
overflow: auto;
margin: 5px auto;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
 flex: 0 0 340px;          /* forza anche in contesti flex: non si espande/contrae */
}

/* Hover effects */
.lyrics-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #778899;
}

/* Titolo brano */
.lyrics-box h4 {
    color: #DCDCDC;
    font-size: 16px;
    margin-bottom: 8px;
}

/* Testo */
.lyrics-box p {
    color: #F5F5F5;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
	overflow: auto;
}

/* Scrollbar personalizzata */
.lyrics-box::-webkit-scrollbar {
    width: 6px;
}

.lyrics-box::-webkit-scrollbar-track {
    background: #111;
}

.lyrics-box::-webkit-scrollbar-thumb {
    background-color: #778899;
    border-radius: 10px;
}
/* Colonna 4: Effetti colorati */
.effects-col {
    position: relative;
}
.color-effect {
 height: 50px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, #444444, #222222);
    animation: slideEffect 3s infinite alternate;
    text-align: center;

    /* ðŸ‘‰ centratura del testo */
    display: flex;
    align-items: center;   /* centra verticalmente */
    justify-content: center; /* centra orizzontalmente */

    /* stile opzionale per rendere piÃ¹ bello il bottone */
    font-weight: bold;
    color: #fff;
    border: none;
    cursor: pointer;
	
}
@keyframes slideEffect {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 20;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}
/* Discografia BANNERS */

.bannerdischi93 {
    width:100%;
    height:650px;
    background-image:url('design/disco93.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi94 {
    width:100%;
    height:650px;
    background-image:url('design/disco94.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi94spa {
    width:100%;
    height:650px;
    background-image:url('design/disco94SPA.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi96 {
    width:100%;
    height:650px;
    background-image:url('design/disco96.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi98 {
    width:100%;
    height:650px;
    background-image:url('design/disco98.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi00 {
    width:100%;
    height:650px;
    background-image:url('design/disco00.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi01 {
    width:100%;
    height:650px;
    background-image:url('design/disco01.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi02 {
    width:100%;
    height:650px;
    background-image:url('design/disco02.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi04 {
    width:100%;
    height:650px;
    background-image:url('design/disco04.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi06 {
    width:100%;
    height:650px;
    background-image:url('design/disco06.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi08 {
    width:100%;
    height:650px;
    background-image:url('design/disco08.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi11 {
    width:100%;
    height:650px;
    background-image:url('design/disco11.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi11 {
    width:100%;
    height:650px;
    background-image:url('design/disco11.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi13 {
    width:100%;
    height:650px;
    background-image:url('design/disco13.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi15 {
    width:100%;
    height:650px;
    background-image:url('design/disco15.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi16 {
    width:100%;
    height:650px;
    background-image:url('design/disco16.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi18 {
    width:100%;
    height:650px;
    background-image:url('design/disco18.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi23 {
    width:100%;
    height:650px;
    background-image:url('design/disco23.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi25 {
    width:100%;
    height:650px;
    background-image:url('design/disco25.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi09 {
    width:100%;
    height:650px;
    background-image:url('design/disco09.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi07 {
    width:100%;
    height:650px;
    background-image:url('design/disco07.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi05 {
    width:100%;
    height:650px;
    background-image:url('design/disco05.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi01l {
    width:100%;
    height:650px;
    background-image:url('design/disco01l.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi22 {
    width:100%;
    height:650px;
    background-image:url('design/disco22.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi20 {
    width:100%;
    height:650px;
    background-image:url('design/disco20.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi19 {
    width:100%;
    height:650px;
    background-image:url('design/disco19.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi06s {
    width:100%;
    height:650px;
    background-image:url('design/disco06s.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi03 {
    width:100%;
    height:650px;
    background-image:url('design/disco03.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi99 {
    width:100%;
    height:650px;
    background-image:url('design/disco99.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi12l {
    width:100%;
    height:650px;
    background-image:url('design/disco12l.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.bannerdischi18l {
    width:100%;
    height:650px;
    background-image:url('design/disco18l.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi22 {
    width:100%;
    height:650px;
    background-image:url('design/disco22.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi20 {
    width:100%;
    height:650px;
    background-image:url('design/disco20.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}


.bannerdischi19 {
    width:100%;
    height:650px;
    background-image:url('design/disco19.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi06s {
    width:100%;
    height:650px;
    background-image:url('design/disco06s.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi03 {
    width:100%;
    height:650px;
    background-image:url('design/disco03.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

.bannerdischi99 {
    width:100%;
    height:650px;
    background-image:url('design/disco99.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .central-screen {
        flex-direction: column;
        height: auto;
    }
    .col { flex: 1 1 100%; height: auto; }
    .album-cover { height: auto; }
}

/* CENTRAL SCREEN DISCROGRAFIA */

.central-screen {
    display: flex;
    flex-wrap: wrap;          /* mantiene la responsività */
    align-items: stretch;     /* colonne stesse altezze */
    gap: 20px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(120deg, #111, #222, #333);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

/* Colonne */
.col {
    flex: 1 1 0;              /* si espandono per riempire lo spazio */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

/* Box interni scrollabili */
.tracklist-col,
.lyrics-col,
.effects-col,
.central-screen_description {
    flex: 1 1 0;             /* si adattano all’altezza della colonna */
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 100%;
}

/* Lyrics box adattiva */
.lyrics-box {
    flex: 1 1 0;
    overflow-y: auto;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 15px;
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 900px) {
    .central-screen {
        flex-direction: column;
    }
    .col {
        width: 100%;
    }
}

/* Contenuto interno (scrollabile ma non altera altezza totale) */
.tracklist-col, .lyrics-col, .effects-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Lyrics box adattiva */
.lyrics-box {
  flex: 1;
  overflow-y: auto;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  margin: 5px 0;
}

/* Responsive fix */
@media (max-width: 900px) {
  .central-screen {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .col {
    width: 100%;
    min-height: 400px;
  }
}





/*videoclip*/

.video-section {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.video-section h4 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #778899;
}

.video-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.video-card {
    flex: 0 0 auto;
    width: 300px; /* larghezza card */
    height: 250px; /* altezza fissa */
    background: linear-gradient(135deg, #232323, #2b2b2b);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* importante per iframe */
}

.video-container::-webkit-scrollbar {
    height: 8px;
}

.video-container::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 10px;
}

.video-container::-webkit-scrollbar-thumb {
    background: #778899;
    border-radius: 10px;
}

.video-container::-webkit-scrollbar-thumb:hover {
    background: #778892;
}

.video-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* proporzione 16:9 */
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 768px) {
    .col {
        flex: 1 1 100%;
        padding: 10px;
        gap: 10px;
        min-height: auto;
    }
    
    .col > .tracklist-col,
    .col > .lyrics-col,
    .col > .effects-col,
    .col > .central-screen_description {
        max-height: 300px;   /* limite di altezza su mobile */
        overflow-y: auto;    /* scroll verticale se serve */
        padding: 5px;
    }
}


@media (max-width: 768px) {
  
  /* Tracklist, Lyrics, Effects */
  .tracklist-col,
  .lyrics-col,
  .effects-col {
    max-height: 250px;       /* altezza massima */
    overflow-y: auto;        /* scroll se il contenuto supera l’altezza */
    padding: 8px;
    gap: 8px;
  }

  /* Scrollbar sottile e moderna */
  .tracklist-col::-webkit-scrollbar,
  .lyrics-col::-webkit-scrollbar,
  .effects-col::-webkit-scrollbar {
    width: 6px;
  }

  .tracklist-col::-webkit-scrollbar-thumb,
  .lyrics-col::-webkit-scrollbar-thumb,
  .effects-col::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #778899, #A9A9A9);
    border-radius: 8px;
  }

  /* Titoli e testo più piccoli */
  .tracklist-col h3,
  .lyrics-col h4 {
    font-size: 0.9rem;
  }
  .tracklist li,
  .lyrics-col p {
    font-size: 0.8rem;
  }

  /* Box effetti */
  .effects-col .color-effect {
    height: 40px;
    font-size: 0.8rem;
  }

}

  /* MEDIA */

.bannermedia {
    width:100%;
    height:650px;
    background-image:url('design/bannermedia.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
.media-banner {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #111, #222);
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.media-banner img:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* ----------------- */
/* CONTAINER E BOTTONI MEDIA */
/* ----------------- */

.media-container {
    max-width: 100%;
    margin: 80px auto;
    background: cover;
    padding: 0 20px;
    text-align: center;
}

.media-container h1 {
    color: #778899;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.media-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0 10px; /* padding interno per non far uscire i bottoni */
    box-sizing: border-box;
    overflow: scroll;
}

.media-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 15px;
    width: 260px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #778899;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.media-card:hover {
    background: #1c1c1c;
    transform: translateY(-5px);
    box-shadow: 0 0 15px #778899;
    color: #c0d0e0;
}

.media-card i {
    font-size: 1.6rem;
    margin-right: 10px;
}
/* Scroll invisibile */
.media-links {
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* Internet Explorer e Edge */
}

.media-links::-webkit-scrollbar {
    display: none;              /* Chrome, Safari, Opera */
}

/* ----------------- */
/* RESPONSIVE MOBILE */
/* ----------------- */
@media (max-width: 768px) {
    .media-banner {
        height: 250px; /* riduce altezza su tablet e smartphone */
    }

    .media-container h1 {
        font-size: 2rem;
    }

    .media-links {
        flex-direction: column; /* impila i bottoni */
        gap: 15px;
        padding: 0 20px;
    }

    .media-card {
        width: 90%;           /* occupa quasi tutto il container */
        max-width: 300px;     /* mai più largo di così */
        height: 50px;         /* ridotta rispetto a desktop */
        font-size: 1rem;
    }
}




/* Container principale */
.container-foto {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #111, #222);
    display: flex;
    justify-content: flex-start;
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;
}

/* Pulsanti anni */
.year-filter {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 5px;
    scroll-behavior: smooth;
}

.year-filter button {
    background: #222;
    color: #fff;
    border: 1px solid #444;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.year-filter button:hover,
.year-filter button.active {
    background: #555;
    transform: scale(1.05);
}

/* Scrollbar anni (verticale) */
.year-filter::-webkit-scrollbar {
    width: 6px;
}
.year-filter::-webkit-scrollbar-thumb {
    background-color: rgba(200,200,200,0.4);
    border-radius: 3px;
}
.year-filter::-webkit-scrollbar-track {
    background: transparent;
}

/* Wrapper griglia foto */
.gallery-grid-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Griglia immagini */
.gallery-grid {
    display: none; /* rimane nascosto di default */
    opacity: 0;    /* trasparente inizialmente */
    transition: opacity 0.5s ease; /* effetto fade-in */
}

.gallery-grid.active {
    display: flex;  /* mostra la griglia */
    opacity: 1;     /* diventa visibile */
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;          /* va a capo automaticamente */
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;         /* scroll orizzontale se necessario */
    padding-bottom: 10px;
    scroll-behavior: smooth;
    display: none;            /* visibile solo anno selezionato */
    position: relative;
}

/* Miniature */
.thumbnail {
    flex: 0 0 calc(11.11% - 10px); /* max 9 immagini per riga desktop */
    max-width: calc(11.11% - 10px);
    height: 135px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255,255,255,0.4);
}

/* Mobile: massimo 3 immagini per riga */
@media (max-width: 768px) {
    .thumbnail {
        flex: 0 0 calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
        height: 120px;
    }
}

/* Lightbox immagine intera */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* Frecce sopra immagini */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(50,50,50,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.gallery-arrow:hover {
    background: rgba(80,80,80,0.7);
}

.gallery-arrow.prev { left: 0; }
.gallery-arrow.next { right: 0; }

/* Responsive */
@media (max-width: 768px) {
    .container-foto {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .year-filter {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-height: none;
        width: 100%;
        margin-bottom: 10px;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .gallery-grid-wrapper {
        width: 100%;
    }
}




/*FILMATI */

/* Contenitore principale */
.media-banner-wrapper {
    width: 100%;
    max-width: 1300px;
    height: 500px;
    margin: 0 auto 50px;
    display: flex;
    gap: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #111, #222);
}

/* Colonna immagine fissa a sinistra */
.media-photo-fixed {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.media-photo-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.9);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.media-photo-fixed img:hover {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Colonna video a destra */
.media-banner-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

/* Griglia video 2 a 2 */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Singolo video card */
.video-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #222;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.02);
}

/* Iframe video */
.video-card iframe {
    width: 100%;
	heigh: 300px;
    border-radius: 10px;
}

/* Descrizione video */
.video-desc {
    font-size: 0.9rem;
    color: #fff;
	text-align: center
}

/* Scrollbar moderna per la colonna video */
.media-banner-scroll::-webkit-scrollbar {
    width: 10px;
}

.media-banner-scroll::-webkit-scrollbar-track {
    background: #222;
    border-radius: 10px;
}

.media-banner-scroll::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

.media-banner-scroll::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/*mobile*/

@media (max-width: 768px) {

  /* Banner wrapper */
  .media-banner-wrapper {
    flex-direction: column; /* scorre in verticale */
    height: auto;
    gap: 10px;
  }

  .media-photo-fixed {
    width: 100%;
    height: auto;
  }

  /* Sezione scroll verticale semplice */
  .media-banner-scroll {
    width: 100%;
    overflow-y: auto; /* scroll verticale */
    overflow-x: hidden;
    max-height: 300px; /* altezza visibile */
    padding: 5px;
  }

  .video-grid {
    display: flex;
    flex-direction: column; /* ora verticale */
    gap: 10px;
  }

  .video-card {
    width: 100%;
    min-height: 200px; /* altezza minima */
    flex: none;
  }

  .video-card iframe {
    width: 100%;
    height: 200px;
  }

  /* Sezione snap verticale (uno alla volta) */
  .video-snap-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh; /* occupa tutto lo schermo */
  }

  .video-snap-card {
    scroll-snap-align: start;
    width: 100%;
    height: 100vh; /* un video per schermo */
  }

  .video-snap-card iframe {
    width: 100%;
    height: 100%;
  }

}


/* FILMATI COLONNE ESIBIZIONI - LIVE - SHOW */
/* --- INTERVISTE (nuova colonna sinistra) --- */

/* Colonna titoli */
.interview-list {
  width: 300px;      
  background: #181818;
  padding: 20px;
  border-radius: 20px;
  overflow-y: auto;
}


.interview-list h2 {
  color: #999;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.interview-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.interview-list li {
  background: #222;
  padding: 12px 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ddd;
}

.interview-list li:hover,
.interview-list li.active {
  background: #333;
  color: #fff;
  transform: scale(1.02);
}

/* Scrollbar moderna per la lista titoli */
.interview-list::-webkit-scrollbar {
  width: 10px;
}

.interview-list::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

.interview-list::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* Colonna video */
.media-banner-scroll {
  width: 1000px;        
  overflow-y: auto;
  padding: 10px;
}


/* --- MOBILE --- */
@media (max-width: 768px) {
  .media-banner-wrapper {
    flex-direction: column;
    height: auto;
  }

  .interview-list,
  .media-banner-scroll {
    width: 100%;
  }


  .interview-list ul {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .interview-list li {
    min-width: 150px;
    text-align: center;
  }
}
/* Colonna video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* MOBILE: 1 video per riga */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr; 
  }
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #222;
  padding: 12px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.video-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}


@media (max-width: 768px) {

    /* Allarga il container principale */
    .media-container,
    .media-banner-wrapper,
    .container-foto {
        width: 98% !important;
        margin: 0 auto !important;
    }

    /* Allarga i contenitori dei bottoni */
    .media-links,
    .year-filter,
    .video-grid,
    .media-banner-scroll,
    .interview-list {
        width: 98% !important;
        max-width: 98% !important;
        margin: 0 auto !important;
    }

    /* Bottoni media */
    .media-card {
        width: 98% !important;
        max-width: 98% !important;
    }
}


/* ----------------------- TOUR SECTION ----------------------- */


.bannertour {
    width:100%;
    height:650px;
    background-image:url('design/bannertour.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
#tour {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
  color: #DCDCDC;
  text-align: center;
	height: 600px;
}

.tour-banner {
  margin-bottom: 40px;
}

.tour-banner h2 {
  font-size: 2.5rem;
  color: #778899;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tour-banner p {
  color: #B0C4DE;
  font-size: 1.2rem;
}

.tour-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tour-filters .filter {
  background-color: #222;
  border: 1px solid #778899;
  color: #DCDCDC;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tour-filters .filter:hover,
.tour-filters .filter.active {
  background-color: #778899;
  color: #fff;
  box-shadow: 0 0 10px #778899;
}

.tour-dates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;

  /* Scroll aggiunto */
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px; /* spazio per scrollbar */
}

/* Scrollbar moderna */
.tour-dates::-webkit-scrollbar {
  width: 8px;
}

.tour-dates::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

.tour-dates::-webkit-scrollbar-thumb {
  background-color: #778899;
  border-radius: 4px;
  border: 2px solid #1a1a1a;
}

/* Firefox scrollbar */
.tour-dates {
  scrollbar-width: thin;
  scrollbar-color: #778899 #1a1a1a;
}

.tour-card {
  background-color: #111;
  border: 1px solid #2F4F4F;
  border-radius: 20px;
  padding: 25px;
  width: 270px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(119, 136, 153, 0.2);
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(119, 136, 153, 0.4);
}

.tour-card h3 {
  color: #B0C4DE;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.tour-card .tour-date {
  font-weight: bold;
  color: #DCDCDC;
  margin-bottom: 5px;
}

.tour-card .tour-venue {
  color: #A9A9A9;
  margin-bottom: 15px;
}

.ticket-btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: #778899;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.ticket-btn:hover {
  background-color: #B0C4DE;
  box-shadow: 0 0 10px #B0C4DE;
  color: #000;
}

/* Responsività */
@media (max-width: 768px) {
  .tour-card {
    width: 90%;
  }
}

/* Nascondi tutte le date inizialmente */
.tour-card {
  display: none;
}

#tour-details {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, #111, #222);
  padding: 10px 50px; /* spazio per frecce */
  box-sizing: border-box;
  overflow: hidden;
}

.details-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.details-column {
  background-color: #111;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 0 15px rgba(119,136,153,0.2);
  flex: 0 0 auto;
  text-align: center;
}

.manifesto img {
  width: 200px;
  height: 250px;
  object-fit: cover;
}

.scroll-column {
  width: 250px;
  max-height: 350px;
  overflow-y: auto;
  text-align: left;
}

/* scrollbar moderna */
.scroll-column::-webkit-scrollbar {
  width: 6px;
}
.scroll-column::-webkit-scrollbar-thumb {
  background: #778899;
  border-radius: 3px;
}

/* frecce */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(119,136,153,0.3);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;

}
.carousel-btn:hover {
  background-color: #778899;
}
.details-prev { left: 10px; }
.details-next { right: 10px; }



@media (max-width: 768px) {
  /* Nascondi la scrollbar orizzontale */
  .details-wrapper {
    overflow-x: hidden;  /* nasconde scrollbar */
    -ms-overflow-style: none;  /* IE e Edge */
    scrollbar-width: none;      /* Firefox */
  }
  .details-wrapper::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
  }
}

#tour-manifesti {
  padding: 50px 20px;
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
  color: #DCDCDC;
  text-align: center;
}

#tour-manifesti h2 {
  color: #778899;
  font-size: 2rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Carousel container */
.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden; /* nasconde scrollbar nativa */
}

/* Carousel interna */
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: scroll; /* consente scroll programmato e swipe */
  scroll-behavior: smooth;
  padding-bottom: 10px;

  /* Nascondi scrollbar su desktop */
  -ms-overflow-style: none;  /* IE e Edge */
  scrollbar-width: none;      /* Firefox */
}
.carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Carousel items */
.carousel-item {
  max-width: 200px;
  flex: 0 0 auto;
  background-color: #111;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(119, 136, 153, 0.2);
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.carousel-item .desc {
  font-size: 0.9rem;
  color: #B0C4DE;
}




/* Posizioni */
.manifesti-prev { left: 5px; }
.manifesti-next { right: 5px; }
.details-prev { left: 5px; }
.details-next { right: 5px; }

/* Solo mobile */
@media (max-width: 768px) {
  .carousel-btn { display: block; }
  #tour-manifesti .carousel,
  #tour-details { overflow-x: hidden; }
}


/*FORUM*/

  /* Responsività per mobile */
  @media (max-width: 768px) {
    div {
  
    }
  }

/*credits*/
.creditsbanner {
    width:100%;
    height:650px;
    background-image:url('design/creditsdesign.png');
    background-size:cover;
    background-position:center;
    border-radius:10px;
    margin-bottom:30px;
    transition:transform 0.5s;
}
/* ===== CREDITS PARALLAX (Dark Theme) ===== */
.credits-parallax {
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  height: 600px;
  margin: 100px auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: linear-gradient(#333, #444, #333);
}

.credits-photo {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.credits-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 0.3s ease-out;
  will-change: transform;
  filter: brightness(0.9) contrast(1.1);
}

.credits-content {
  flex: 1;
  padding: 60px;
  background: rgba(1, 2, 4, 0.6);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
	overflow-y: scroll;
}

.credits-content h2 {
  font-size: 2.4em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #00797F;
  text-shadow: 0 0 12px rgba(1, 1, 1, 0.4);
}

.credits-content p {
  font-size: 1.1em;
  margin: 10px 0;
  transition: color 0.3s ease, transform 0.3s ease;
	
}

.credits-content p:hover {
  color: #073250;
  transform: translateX(6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .credits-parallax {
    flex-direction: column;
    height: auto;
  }

  .credits-photo img {
    border-radius: 40px 40px 0 0;
  }

  .credits-content {
    text-align: center;
    padding: 40px 30px;
  }
}



/* Footer */
footer {
    text-align:center;
    padding:15px;
    background:#111;
    color:#888;
    border-top:1px solid #222;
}

@media (max-width: 768px) {
    .central-screen {
        flex-direction: column;
        height: auto;
        background-size: cover; /* se usi gradient animato */
    }
}
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #111;
    width: 200px;
    padding: 15px;
    border-radius: 0 0 10px 10px;
  }

  .menu.active {
    display: flex !important;
  }

  .hamburger {
    display: flex;
  }
}


/*RECENSIONI*/
.review-container {
  max-width: 1300px;
  height: 500px;
  width: 100%;
  background-color: #222; /* sfondo scuro */
  color: #fff;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* centratura orizzontale */
  margin: 20px auto; /* 20px margine sopra e sotto, centrato orizzontalmente */
}


.reviews-list {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 10px;
  scroll-behavior: smooth;
}

.reviews-list::-webkit-scrollbar {
  width: 8px;
}

.reviews-list::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 4px;
}

.review {
  background-color: #333;
  padding: 8px;
  margin-bottom: 5px;
  border-radius: 8px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#nameInput {
  height: 30px;
  padding: 5px;
  border-radius: 5px;
  border: none;
  background-color: #444;
  color: #fff;
}

#commentInput {
  height: 80px;
  padding: 5px;
  border-radius: 5px;
  border: none;
  background-color: #444;
  color: #fff;
  resize: none;
}

#submitReview {
  background-color: #555;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
}

#submitReview:hover {
  background-color: #666;
}

/* MOBILE */
@media screen and (max-width: 600px) {
  #nameInput {
    height: 25px;
  }
  #commentInput {
    height: 70px;
  }
}

/* Container principale */
.intro-container {
  position: relative;
  width: 1800px;
  height: 900px;
  border-radius: 20px;
  overflow: hidden;
  background-image: url("design/indexdesign.png"); /* IL TUO DESIGN ORIGINALE */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeContainer 1.5s ease forwards;
  opacity: 0;
}

/* Animazione del container */
@keyframes fadeContainer {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Effetto luce animato sopra il design */
.intro-container::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), rgba(255,255,255,0.05) 1px, transparent 2px);
  animation: moveBg 15s linear infinite;
  z-index: 0;
}

@keyframes moveBg {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.1); }
}

/* Titolo sopra il design */
.intro-title {
position: relative;
  font-size: 3em;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 2s ease forwards;
  opacity: 0;
  z-index: 1; /* sopra il design */

  /* Gradient nero-bianco sul testo */
  background: linear-gradient(to bottom, #79c8e6, #d5eff9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Opzionale: aggiungi un po' di ombra per risaltare */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Pulsanti lucidi neri con scritta bianca */
.intro-buttons {
  position: relative;
  display: flex;
  gap: 40px;
  margin-top: 50px;
  animation: fadeIn 3s ease forwards;
  opacity: 0;
  z-index: 1;
}

.intro-buttons a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 1.5em;
  padding: 15px 40px;
  border-radius: 50px;

  /* Pulsante nero lucido */
  background: linear-gradient(145deg, #000 0%, #333 50%, #000 100%);
  color: white; /* testo bianco */
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Lucentezza in movimento */
.intro-buttons a::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.2);
  transform: rotate(25deg);
  transition: all 0.5s ease;
  z-index: 2;
}

.intro-buttons a:hover::after {
  left: 125%;
}

.intro-buttons a:hover {
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

/* Animazioni fade */
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(40px); }
}

/* Adattamento per schermi piccoli */
@media (max-width: 1200px) {
  .intro-container {
    width: 100%;
    height: 100vh;
    border-radius: 0;
	background-position:right;
  }
  .intro-title {
    font-size: 2em;
    text-align: center;
  }
  .intro-buttons {
    flex-direction: column;
    gap: 20px;
  }
}

.counter{
  font-size: 3em;
  font-weight: bold;
  color: #333;
}
