/* center the stage on the page */
body{
  margin:0;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0b0b0b;
  font-family: system-ui, Arial, sans-serif;
}

/* Stage */
.stage{
  width: 750px;
  height: 550px;
  position: relative;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.obj{ position:absolute; }

.obj img{
  width:100%;
  height:auto;
  display:block;
}

/* Background */
#bg{
  left:0; top:0;
  width:750px; height:550px;
  z-index: 1;
}
#bg img{
  width:100%;
  height:100%;
  object-fit: cover;
  filter: contrast(1.05);
}

/* Outfit strip overlay */
#outfit-strip{
  left: 0;
  top: 0;
  width: 750px;
  height: 550px;
  z-index: 3;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Each column becomes 1/5 of the stage width: 150px */
.outfit{
  width: 150px;           /* 750 / 5 */
  height: 550px;          /* matches stage height */
  position: relative;

  display:flex;
  align-items:flex-end;
  justify-content:center;

  /* subtle separation so outfits read as a strip */
  background: rgba(0,0,0,0.08);
  border-left: 1px solid rgba(255,255,255,0.10);
}

.outfit:first-child{
  border-left: none;
}

/* Image fits the height; width auto maintains proportions */
.outfit img{
  height: 550px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

/* Outfit labels */
.label{
  position:absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.35);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Caption */
#caption{
  left: 18px;
  top: 18px;
  z-index: 6;
  color: white;
  background: rgba(0,0,0,0.35);
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.25);
}

.cap-title{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cap-text{
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.9;
  max-width: 300px;
}
