body {
  margin: 0;
  background-color: #f5f5f5;
  overflow: hidden;
  font-family: 'Trebuchet MS', sans-serif;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
  color: #333;
}

.hearts {
  width: 80px;
  margin-top: 10px;
}

.collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: center;
}

.item {
  position: absolute;
  width: 15%;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

/* ترتيب عشوائي منسّق */
.item:nth-child(3n+1) { top: 10%; left: 5%; transform: rotate(-6deg); }
.item:nth-child(3n+2) { top: 30%; left: 20%; transform: rotate(3deg); }
.item:nth-child(3n+3) { top: 50%; left: 45%; transform: rotate(-2deg); }
.item:nth-child(3n+4) { top: 70%; left: 65%; transform: rotate(4deg); }
.item:nth-child(3n+5) { top: 20%; left: 75%; transform: rotate(-5deg); }
.item:nth-child(3n+6) { top: 60%; left: 10%; transform: rotate(5deg); }

.item:hover {
  transform: scale(1.1) rotate(0deg);
  z-index: 5;
}

/* تصغير تلقائي للجوال */
@media (max-width: 768px) {
  .item {
    width: 28%;
  }
  h1 {
    font-size: 1.8rem;
  }
  .hearts {
    width: 60px;
  }
}
/* BluePink Noise – Custom Cursor */
body {
  cursor: url("heartcursor.png") 0 0, auto;
}