/* ===== MUSIC EVENT PAGE STYLES ===== */

.music-event-page {
  padding-top: 120px;
  background-color: #000000;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

/* Video Background */
.music-video-background {
  position: absolute; /* O fixed se deve rimanere fermo durante lo scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.music-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Overlay scuro per leggerezza del testo */
}

/* Gestione Desktop vs Mobile */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

@media (max-width: 699px) {
  .desktop-video {
    display: none;
  }
  .mobile-video {
    display: block;
  }
}

.music-section {
  padding: 40px 5% 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 80px;
  gap: 80px;
  align-items: center;
}

.music-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.music-badge {
  display: inline-block;
  align-self: center;
  background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
  color: #fff;
  font-weight: 800;
  padding: 6px 18px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  border-radius: 3px 8px 4px 7px;
  transform: rotate(-1deg);
  box-shadow: 2px 2px 0 rgba(6, 182, 212, 0.3);
}

.music-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.music-title::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 5px;
  transform: rotate(-3deg);
  width: 200px;
  height: 25px;
  border-top: 4px solid #38BDF8;
  border-radius: 50%;
  transform: rotate(-3deg);
  opacity: 0.8;
}

.music-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.music-text-blocks p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f1f5f9;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.music-text-blocks p strong {
  color: #ffffff;
  font-weight: 700;
}

.music-text-blocks p.highlight-text {
  background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.music-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
  color: #ffffff;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

.music-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
}

/* Colonna di destra: Box Decorativo */
.music-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.music-visual-box {
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 6px solid #0284C7;
}

.visual-title {
  font-size: 2.2rem;
  color: #1F2937;
  font-weight: 800;
  margin-bottom: 10px;
}

.visual-subtitle {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  margin-bottom: 30px;
}

.visual-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Media Queries per Responsività */
@media (max-width: 1170px) {
  .music-event-page {
    padding-top: 100px;
  }

  .music-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .music-bg-image {
    background-position: left center !important;
  }

  .music-content {
    background: transparent;
    padding: 40px 15px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    overflow-wrap: break-word;
  }

  .music-title {
    font-size: 2rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .music-text-blocks {
    align-items: center;
  }

  .music-badge {
    align-self: center;
  }

  .music-title::after {
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
  }

  .music-cta-btn {
    width: 100%;
    box-sizing: border-box;
  }
}
