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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #333;
  font-family: Calibri;
  font-size: 18px;
}

header {
  padding: 50px 0 0 0;
}

h1 {
  font-size: 26px;
  margin-bottom: 16px;
}

h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

h4 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 20px;
  line-height: 1.4;
}

a:link, a:visited {
    text-decoration: none;
    color: #333;
    background-color: transparent;
}

a:hover, a:active {
    text-decoration: none;
    font-weight: bold;
    color: #FE6C00;
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Navbar fissa */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  color: #333;
  border: 1px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  z-index: 1000;
}

/* Menu hamburger */
.menu-toggle {
  background: none;
  border: none;
  color: #333;
  font-size: 22px;
  cursor: pointer;
}

/* Selettore lingua */
.language-selector {
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
  padding: 4px;
  font-size: 16px;
}

/* Menu dropdown */
.dropdown-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  position: fixed; /* per coprire tutto lo schermo */
  top: 50px;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #000;
  font-size: 18px;
  z-index: 999;
}

.dropdown-menu.visible {
  transform: translateX(0);
}

.dropdown-menu ul {
  list-style: none;
}

.dropdown-menu li {
  border-bottom: 1px solid #000;
}

.dropdown-menu a {
  display: block;
  padding: 16px;
  color: #fff;
  text-decoration: none;
}

.dropdown-menu a:hover {
  color: #FE6C00;
}

.overlay {
  position: fixed;
  top: 50px; /* sotto la navbar */
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 800;
  display: none;
}

.overlay.visible {
  display: block;
}

/* Sezione social */
.social {
  background-color: #fff; /* o il colore di sfondo che vuoi */
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0 5px 0;
  gap: 12px; /* spazio tra testo e icone */
  overflow-x: auto; /* per scroll orizzontale se troppo lungo */
}

.social p {
  margin: 0;
  white-space: nowrap; /* testo sempre su una riga */
  font-size: 18px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a img {
  max-width: 100%; /* o la dimensione che preferisci */
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

/* Sezione logo */
.logo-section {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 0 0;
}

.logo-section img {
  max-width: 90%;
  height: auto;
  display: block;
}

/* Menu orizzontale desktop */
.desktop-menu {
  background-color: #000;
  padding: 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.desktop-menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu li {
  margin: 0 20px;
}

.desktop-menu a {
  position: relative;
  display: block;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.desktop-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #FE6C00;
  transition: width 0.3s ease;
}

.desktop-menu a:hover {
  color: #FE6C00;
  transform: scale(1.1) rotate(-1deg);
}

.desktop-menu a:hover::after {
  width: 100%;
}

.menu-background-image {
  height: 40px; /* o quanto vuoi che sia alta */
  background-image: url('../template/barra-menu.jpg'); /* cambia con il percorso reale */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; /* o 'cover' se vuoi che si adatti all’altezza */
  background-color: #000; /* opzionale se vuoi nero attorno */
}

/* Orange bar */
.orange-bar {
  width: 100%;
  height: 15px;
  background-color: #FE6C00;
}

/* Black bar */
.black-bar {
  width: 100%;
  height: 20px;
  background-color: #000;
}

/* White bar */
.white-bar {
  width: 100%;
  height: 50px;
  background-color: #fff;
}

/* Sezione banner */
.banner-home {
  background: url('../template/ban-home.jpg') center top no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  aspect-ratio: 16 / 9; /* oppure 3 / 1.5 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-music {
  background: url('../template/ban-music.jpg') center top no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  aspect-ratio: 16 / 9; /* oppure 3 / 1.5 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-album {
  background: url('../template/ban-album.jpg') center top no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  aspect-ratio: 16 / 9; /* oppure 3 / 1.5 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-bigcats {
  background: url('../template/ban-tiger.jpg') center top no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  aspect-ratio: 16 / 9; /* oppure 3 / 1.5 */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Titolo */
.banner-titolo {
  max-width: 1200px;
  height: 40px;
  margin: 0 auto; /* centra il blocco */
  background-image: url('../template/title.png');
  background-size: cover; /* o 'contain' se vuoi che l'immagine stia dentro senza tagli */
  background-position: center;
  background-repeat: no-repeat;
}

.text-titolo {
  color: #fff;
  text-align: center;
  padding: 5px 0 0 0;
  transition: transform 0.2s ease-in-out;
}

.text-titolo:hover {
  transform: scale(1.1) rotate(-1deg);
  color: #FE6C00;
}

/* Contenitore centrale con bordo arancione */
.container {
  max-width: 1200px;
  margin: 0px auto;
  background-color: #FE6C00; /* bordo arancione */
  padding: 2px; /* spessore bordo */
}

/* Livello intermedio nero */
.inner-black {
  background-color: #000; /* spazio nero tra bordo e contenuto */
  padding: 10px;
}

/* Contenuto bianco interno */
.content-inner {
  display: flex;
  background-color: #fff;
  padding: 30px;
  color: #333;
  gap: 30px;
  align-items: flex-start;
}

.text-content {
  flex: 1; /* prende lo spazio disponibile */
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.image-row {
  display: flex;
  justify-content: left;
  gap: 5px;
  flex-wrap: wrap;
}

.image-row img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* cover con testo a lato */
.cover-text {
  display: flex;
  flex-wrap: wrap; /* per migliorare il responsive */
  align-items: left;
  gap: 20px;
}

.cover-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.cover-text .text-content {
  flex: 1; /* Occupa lo spazio rimanente */
}

.song-links {
  margin: 0.3em 0 0 0;
}

.song-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0;
  display: flex; /* Mostra i link in orizzontale */
  gap: 10px;     /* Spazio tra i link */
}

.song-links li {
  margin-bottom: 0;
}

/* Ingrandimento thumb */
.cover-thumb img {
  max-width: 100%;
  border-radius: 8px;
  cursor: zoom-in;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
footer {
  margin-top: 0px;
}

/* Footer Container - Layout a 3 colonne */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 20px 60px;

  /* Nuovo: centratura e larghezza massima */
  max-width: 1900px;
  margin: 0 auto;
  width: 100%;

  background-color: #000;
  color: #fff;
}

/* Colonne */
.footer-column {
  flex: 1;
}

/* Colonna Sinistra - Timeline */
.footer-left {
  font-size: 18px;
  text-align: center;
  line-height: 1.1;
}

.footer-timeline div {
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: bold; 
  text-transform: uppercase;
  margin-bottom: 15px;
  padding: 0 0 0 15px;
  color: #FE6C00;
  letter-spacing: 1px;
}

.timeline-item {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease-out forwards;
  animation-play-state: paused;
}

.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }
.timeline-item:nth-child(4) { animation-delay: 0.6s; }
.timeline-item:nth-child(5) { animation-delay: 0.8s; }
.timeline-item:nth-child(6) { animation-delay: 1.0s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Colonna Centrale - Logo + Slogan */
.footer-center img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Colonna Destra - Orario */
.footer-right {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  padding: 10px 20px;
}

.den-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 4px 0;
}

.den-title {
  font-weight: bold;
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  color: #FE6C00;
  transition: transform 0.2s ease-in-out;
}

.den-title:hover {
  transform: scale(1.1) rotate(-1deg);
}

.den-time {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 6px;
}

/* Copyright */
.footer-copy {
  background-color: #fff;
  text-align: center;
  color: #333;
  font-size: 18px;
  padding: 20px 8px;
}