/* ===== NEO THEME (square covers + LP achter de cover, responsive/mobile tuned) ===== */

/* container */
.sc-coverflow{
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 40px auto;
  --gap: 50px;             /* desktop spacing */
}
.sc-coverflow .sc-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.6);
  z-index: 0;
}
.sc-coverflow .sc-glass{
  position: relative;
  z-index: 1;
  min-height: var(--sc-height, 520px);
  display: flex;
  align-items: center;
  gap: var(--gap);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.255);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 28px;          /* geef binnenmarge zodat content niet tegen rand zit */
}

/* arrows (hidden) */
.sc-coverflow .sc-nav{ display: none; }

/* swiper basics (desktop look) */
.sc-swiper{ flex:1 1 auto; width:100%; }
.sc-swiper .swiper-wrapper{ align-items:center; }
.sc-swiper .swiper-slide{
  width: auto !important;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease;
  will-change: transform;
  opacity: .5;
  filter: blur(2px) saturate(.9);
  transform: translateZ(0) rotateY(-16deg) scale(.9);
}
.sc-swiper .swiper-slide-active{
  opacity: 1;
  filter: none;
  transform: rotateY(0) scale(1);
}

/* ===== square card ===== */
.sc-card{
  position: relative;
  width: clamp(260px, 32vw, 450px);  /* desktop: iets ruimer, max 450px */
  aspect-ratio: 1 / 1;               /* altijd vierkant */
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.sc-card .cover-link{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.sc-card .cover{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  display: block;
  aspect-ratio: 1 / 1;   /* safeguard */
}

/* ===== vinyl ===== */
.sc-card .vinyl{
  position: absolute;
  top: 50%;
  right: -26%;
  transform: translateY(-50%);
  width: 90%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(#1b1b1b 45%, #0a0a0a 46%, transparent 25%),
              repeating-radial-gradient(circle at 50% 50%, #454545 0, #424242 2px, #454545 1px, #090909 6px);
  box-shadow: 0 2px 14px rgba(0,0,0,.35);
  transform-origin: center;
  z-index: 1;
  opacity: 0;
  transition: opacity .35s ease;
  animation: none;
}
.sc-swiper .swiper-slide-active .vinyl{
  opacity: .9;
  animation: spin 10s linear infinite;
}
@keyframes spin{ to { transform: translateY(-50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce){
  .sc-swiper .swiper-slide-active .vinyl{ animation:none; }
}

/* play button */
.sc-card .play{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
  z-index: 3;
}
.sc-card .play::after{
  content:'';
  position:absolute;
  left:50%; top:50%;
  transform:translate(-48%,-50%);
  border-left:22px solid #000;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  width:0; height:0;
}

/* ===== title always on top ===== */
.sc-title{
  position:absolute;
  bottom: 14px; left:0; right:0;
  text-align:center;
  z-index: 99;
  pointer-events: none;
}
.sc-title .title-text{
  display:inline-block;
  padding: 8px 14px;
  border-radius:12px;
  color:#fff;
  text-shadow:0 2px 8px rgba(0,0,0,.55);
  font-size: clamp(18px, 5vw, 30px);  /* schaalbaar: mobiel → desktop */
  font-family: "Caveat Brush", cursive;
  font-weight: 400;
  position: relative;
  z-index: 100;
}

/* focus */
.sc-coverflow a:focus-visible,
.sc-coverflow button:focus-visible{
  outline:3px solid #fff;
  outline-offset:3px;
  border-radius:12px;
}




@media (max-width: 700px){

/* container */
.sc-coverflow{
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 40px auto;
  --gap: 50px;             /* desktop spacing */
}
.sc-coverflow .sc-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.6);
  z-index: 0;
}
.sc-coverflow .sc-glass{
  position: relative;
  z-index: 1;
  min-height: 200px;
  display: flex;
  align-items: center;
  gap: var(--gap);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.255);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 10px;          /* geef binnenmarge zodat content niet tegen rand zit */
}

	
/* arrows (hidden) */
.sc-coverflow .sc-nav{ display: none; }

/* swiper basics (desktop look) */
.sc-swiper{ flex:1 1 auto; width:100%; }
.sc-swiper .swiper-wrapper{ align-items:right; }
.sc-swiper .swiper-slide{
  width: auto !important;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease;
  will-change: transform;
  opacity: .5;
  filter: blur(2px) saturate(.9);
  transform: translateZ(0) rotateY(-16deg) scale(.9);
}
.sc-swiper .swiper-slide-active{
  opacity: 1;
  filter: none;
  transform: rotateY(0) scale(1);
}	
	
	
	
}


