/* release-hero.css
   Versión con Presave CTA añadida al final.
   Mantiene: audio nativo (sin descargas), Merch grid with front/back toggle.
*/

.drop-hero{
  position:relative;
  min-height:360px;
  display:block;
  border-top:1px solid var(--line,#eaeaea);
  border-bottom:1px solid var(--line,#eaeaea);
  margin:0 0 0;
  background-color:#111;
  background-image: url("YOKONO PORTADA MOVIL.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow:hidden;
  /* separación suficiente antes del siguiente bloque */
  padding-bottom:56px;
  z-index:0;
}

@media (min-width: 900px){
  .drop-hero{
    min-height:420px;
    background-image: url("YOKONO PORTADA WEB.png");
    padding-bottom:64px;
  }
}

.drop-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.02) 100%);
  pointer-events:none;
  z-index:0;
}

/* MEDIA (audio area) */
.media{
  background:#fff;
  border:1px solid var(--line,#eaeaea);
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  overflow:hidden;
  position:relative;
  z-index:2;
  margin-top:0; /* no sube sobre el hero */
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  border-top-left-radius:8px;
  border-top-right-radius:8px;
}

/* inner wrapper to limit width of the audio control */
.media-inner{
  width:100%;
  max-width:640px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:6px;
}

/* AUDIO PLAIN: control nativo sin caja ni descargas */
.audio-plain{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  width:100%;
  max-width:420px;
}
.audio-plain audio{
  width:100%;
  max-width:420px;
  outline:none;
  background:transparent;
  border-radius:4px;
}

/* === MERCH GRID === */
.gallery { margin-top:8px; }
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:18px;
  align-items:start;
}
.gallery-item{
  display:flex;
  flex-direction:column;
  gap:8px;
  max-width:520px;
}
.gallery-item img{
  width:100%;
  height:auto;
  display:block;
  border-radius:8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border:1px solid var(--line,#eaeaea);
  transition: transform .18s ease, box-shadow .18s ease;
}
.gallery-item img:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* PRESAVE SECTION (CTA) */
.presave-section{
  margin:24px auto 18px;
  max-width:980px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.presave-inner{ width:100%; max-width:820px; }
.presave-title{ margin:0 0 8px; font-size:1.05rem; font-weight:700; color:var(--text); }
.presave-sub{ margin:0 0 14px; color:var(--muted) }

/* CTA button */
.presave-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  background: linear-gradient(90deg,#ff6b6b 0%, #ff9a6b 100%);
  color:#fff;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 8px 30px rgba(255,105,95,0.12);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.presave-button:hover{ transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,105,95,0.16); opacity:0.98; }
.presave-button:focus{ outline:3px solid rgba(255,150,120,0.18); outline-offset:4px; }

/* small icon inside button */
.presave-icon{ color:inherit; opacity:.98 }

/* COVER SECTION (static) */
.cover-section{
  margin:24px auto 40px;
  max-width:980px;
  padding:28px 20px;
  border-top:1px solid var(--line,#eaeaea);
  background:transparent;
}
.cover-inner{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:28px;
  align-items:center;
}
.cover-img img{
  width:100%;
  height:auto;
  display:block;
  border-radius:8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  background:#fafafa;
  border:1px solid var(--line,#eaeaea);
}
.cover-info{
  display:flex;
  flex-direction:column;
  gap:12px;
  justify-content:center;
}
.cover-title{margin:0;font-weight:800;font-size:clamp(1.8rem,4vw,2.6rem)}
.cover-meta{color:var(--muted);font-weight:600}
.cover-desc{color:var(--muted);margin-top:6px}

/* Responsive adjustments */
@media (max-width:920px){
  .media{ padding:10px; min-height:70px; border-top-left-radius:8px; border-top-right-radius:8px; }
  .audio-plain{ max-width:100%; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .presave-inner{ padding:0 8px; }
  .cover-inner{ grid-template-columns:1fr; align-items:center; }
  .cover-info{text-align:left}
  .cover-img{ order:0 }
  .cover-title{ font-size:1.6rem }
  .drop-hero{ min-height:280px; padding-bottom:80px }
}
