/* =====================
RESET + BASE
===================== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #0e0e0e;
  color: #ffffff;
  overflow-x: hidden;
}

/* =====================
VARIABILI
===================== */
:root {
  --muzak-gold: rgb(243,181,63);
  --sc-orange: #ff8800;
  --yt-red: #ff2a2a;
}

/* =====================
MENU ICON + SIDE MENU
===================== */
.menu-icon {
  position: fixed;
  top: 24px;
  right: 24px;
  font-size: 28px;
  color: var(--muzak-gold);
  cursor: pointer;
  z-index: 3000;
}

/* menu laterale */
.side-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: 280px;
  padding: 80px 32px;
  background: rgba(0,0,0,0.96);
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 2500;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu a {
  color: var(--muzak-gold);
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 1px;
  opacity: 0.85;
}

.side-menu a:hover {
  opacity: 1;
}

/* =====================
BACK LINK
===================== */
.back-link {
  position: fixed;
  top: 24px;
  left: 24px;
  color: var(--muzak-gold);
  text-decoration: none;
  font-size: 22px;
  opacity: 0.85;
  z-index: 3000;
}

.back-link:hover {
  opacity: 1;
}

/* =====================
LAYOUT ARTICOLO
===================== */
.jam-article {
  max-width: 900px;
  margin: 160px auto;
  padding: 0 20px;
  text-align: center;
}

.jam-header h1 {
  font-size: 42px;
  letter-spacing: 4px;
  color: var(--muzak-gold);
  margin-bottom: 16px;
}

.jam-project {
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.jam-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: justify;
}

.jam-text p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.jam-claim {
  margin: 80px 0 120px;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--muzak-gold);
}

/* =====================
IMMAGINI
===================== */
body.jam-vol-1-page .jam-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 140px;
}

body.jam-vol-2-page .jam-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 160px;
}

body.jam-vol-4-page .jam-images-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 140px;
}


.jam-images-grid img {
  width: 100%;
  border-radius: 8px;
}

/* =====================
STREAMING
===================== */
.jam-streaming-title {
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--muzak-gold);
  margin-bottom: 40px;
}

.streaming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.streaming-box {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.streaming-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streaming-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.streaming-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.streaming-box:hover::after {
  opacity: 1;
}

.streaming-box:hover .streaming-logo {
  opacity: 1;
  transform: scale(1);
}

.streaming-box.soundcloud:hover {
  box-shadow:
    0 0 0 2px rgba(255,136,0,0.85),
    0 0 26px rgba(255,136,0,0.25);
}

.streaming-box.youtube:hover {
  box-shadow:
    0 0 0 2px rgba(255,42,42,0.85),
    0 0 26px rgba(255,42,42,0.25);
}

/* =====================
FOOTER
===================== */
.site-footer {
  text-align: center;
  padding: 80px 20px;
  opacity: 0.4;
  font-size: 14px;
}

/* =====================
RESPONSIVE
===================== */
@media (max-width: 900px) {
 body.jam-vol-1-page .jam-images-grid,
 body.jam-vol-2-page .jam-images-grid,
 body.jam-vol-4-page .jam-images-grid,
 .streaming-grid {
 grid-template-columns: 1fr;
 }


  .jam-header h1 {
    font-size: 32px;
  }
}
