@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);
}

.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;
}

/* Daisy-specific item transforms: scattered layout */
.necklace { 
  transform: translate(-20px, 40px) rotate(-6deg); /* lower vertically */
}
.scrapbook { 
  transform: translate(50px, -10px) rotate(5deg); 
}
.mints { 
  transform: translate(-50px, 20px) rotate(4deg); 
}
.mixtape { 
  transform: translate(30px, 50px) rotate(-4deg); /* lower vertically */
}

@media (max-width: 700px) {
  .container {
    grid-template-columns: 1fr;
  }
  .item {
    transform: none;
    width: 100%;
  }
}
