
/* Image stack setup */
.image-stack {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 640px;
  margin: 0 auto;
}

.mock-image {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.image-a {
  width: 68%;
  height: 540px;
  left: 0;
  top: 40px;
  transform: rotate(-2deg);
  background-image: url('/assets/venue_alt_2.webp');
}

.image-b {
  width: 42%;
  height: 380px;
  right: 0;
  top: 0;
  transform: rotate(5deg);
  background-image: url('/assets/venue_dj_processed.webp');
}

@media (max-width: 768px) {
  .image-stack {
    height: 520px;
  }

  .image-a {
    width: 100%;
    height: 340px;
    left: 0;
    top: 120px;
    transform: rotate(0deg);
  }

  .image-b {
    width: 70%;
    height: 220px;
    right: 10px;
    top: 0;
  }
}
