/* BASE */
body {
  margin: 0;
  background: #000;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* PAGE WRAPPER */
.photo-spread {
  display: flex;
  padding: 6rem 3rem;
}

/* COLLAGE CANVAS */
.photo-collage {
  position: relative;
  width: 55vw;
  max-width: 720px;
  height: 600px;
  margin-left: 4rem;
  margin-top: calc(4rem - 100px);
}

/* RIGHT TEXT SPACE */
.photo-text {
  width: 35%;
  margin-left: auto;
  position: relative;
}

/* RIGHT-SIDE DESCRIPTION — FINAL POSITION */
.photo-description {
  position: absolute;
  top: 180px;            /* moved UP to align with West New York */
  left: 40px;

  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;

  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

/* PHOTO ITEM */
.photo-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  z-index: 2;
}

/* IMAGE */
.photo-item img {
  width: 200px;
  height: auto;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* INDIVIDUAL IMAGE SIZES */
.item-1 img { width: 160px; } /* Mexico */
.item-2 img { width: 150px; } /* Barcelona */
.item-3 img { width: 170px; } /* Croatia */
.item-4 img { width: 170px; } /* Nice */
.item-5 img { width: 150px; } /* Scotland */
.item-6 img { width: 180px; } /* West New York */
.item-7 img { width: 150px; } /* Untitled */

.photo-item:hover img {
  transform: scale(1.02);
  opacity: 0.9;
}

/* LABEL */
.photo-label {
  margin-top: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
}

.photo-item:hover .photo-label {
  color: #fff;
}

/* CLUSTER POSITIONS */
.item-1 { top: 320px; left: 250px; }
.item-2 { top: 450px; left: 380px; }
.item-3 { top: 150px; left: 0px; }
.item-4 { top: 300px; left: 50px; }
.item-5 { top: 0px; left: 100px; }
.item-6 { top: 200px; left: 460px; }
.item-7 { top: 50px; left: 285px; }

/* MOBILE */
@media (max-width: 768px) {
  .photo-spread {
    flex-direction: column;
    padding: 4rem 2rem;
  }

  .photo-collage {
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .photo-item {
    position: static;
    margin-bottom: 3rem;
  }

  .photo-item img {
    width: 100%;
  }

  .photo-text {
    width: 100%;
    margin-top: 4rem;
  }

  .photo-description {
    position: static;
    margin-top: 2rem;
  }
}
