@font-face {
  font-family: 'Liddell';
  src: url('https://solen.neocities.org/Liddell-Regular.woff2') format('woff2'),
       url('https://solen.neocities.org/Liddell-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 80px;
  background-color: #0d0d0d;
  font-family: 'Liddell', serif;
  color: white;
  text-align: center;
}

.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px 80px;
  justify-items: center;
  align-items: center;
  position: relative;
}

.item {
  position: relative;
  text-align: center;
  width: 220px;
  filter: drop-shadow(0 0 8px #444);
  transition: all 0.3s ease;
  user-select: none;
}

.item:hover {
  filter: drop-shadow(0 0 12px #fff);
  transform: scale(1.05); /* hover scale adds to base transform */
}

.item img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.caption {
  margin-top: 16px;
  font-size: 18px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  text-transform: lowercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.item:hover .caption {
  opacity: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

.clickable img {
  pointer-events: auto;
  cursor: pointer;
}

/* Noah-specific scattered layout (unique from Daisy, Chase, Oliver) */
.cross  { transform: translate(-30px, 40px) rotate(-5deg); }  /* lower vertically */
.hoodie { transform: translate(45px, -15px) rotate(6deg); }
.photo  { transform: translate(-50px, 25px) rotate(3deg); }
.rose   { transform: translate(35px, 55px) rotate(-4deg); }  /* lower vertically */

/* responsive: stack single column on narrow screens */
@media (max-width: 700px) {
  .container {
    grid-template-columns: 1fr;
  }
  .item {
    transform: none;
    width: 100%;
  }
}
