/* ============================================
   PIQUED JACKS - Spotify Section
   ============================================ */

.pj-section--spotify .pj-bg {
  background-color: var(--pj-dark);
}

.pj-section--spotify .pj-overlay {
  background: rgba(10, 9, 8, 0.62);
}

.pj-spotify__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 680px;
  text-align: center;
  margin-top: -8vh;
}

/* --- Titolo grande --- */
.pj-spotify__titolo {
  font-family: var(--pj-font-title);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--pj-cream);
  margin: 0 0 0.6rem;
  opacity: 0;
  animation: pj-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* --- Commento piccolo --- */
.pj-spotify__commento {
  font-family: var(--pj-font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.18em;
  color: var(--pj-warm);
  margin: 0 0 2rem;
  opacity: 0;
  animation: pj-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

/* --- Embed wrap --- */
.pj-spotify__embed-wrap {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
  animation: pj-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.pj-spotify__embed-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}


/* --- Bottone Tour --- */
.pj-spotify__tour {
  display: inline-block;
  margin-top: 4rem;
  padding: 2.2rem 8rem;
  border: 1px solid rgba(237, 232, 220, 0.35);
  color: var(--pj-cream);
  font-family: var(--pj-font-title);
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  animation: pj-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.pj-spotify__tour:hover {
  background: rgba(237, 232, 220, 0.08);
  border-color: var(--pj-accent);
  color: var(--pj-cream);
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .pj-spotify__content {
    max-width: 88vw !important;
    margin-top: 0 !important;
  }

  .pj-spotify__titolo {
    font-size: clamp(2.8rem, 11vw, 4rem) !important;
  }

  .pj-spotify__commento {
    font-size: clamp(1.1rem, 4vw, 1.5rem) !important;
    margin-bottom: 1.5rem !important;
  }

  .pj-spotify__embed-wrap {
    width: 88vw !important;
  }

  .pj-spotify__tour {
    display: inline-block !important;
    margin-top: 3.5rem !important;
    padding: 1.2rem 3rem !important;
    font-size: 1rem !important;
    opacity: 1 !important;
    animation: none !important;
    border: 1px solid rgba(237, 232, 220, 0.5) !important;
  }
}