
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'VT323', monospace;
  background-color: #2c1b10;
  background-image: url('images/pixel-desk.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  overflow: hidden;
}

#screen {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Notebook image on the right side of the desk */
#notebook {
  position: absolute;
  right: 15%;
  top: 35%;
  width: 400px;
  height: 480px;
  image-rendering: pixelated;
}
#dream-desk {
  position: relative;
  width: 100%; /* or fixed pixel width */
  height: auto;
}

#dream-cards {
  position: absolute;
  top: 270px;
  left: 740px;
  height: 200px; /* scale to match notebook */
  cursor: pointer;
  transition: transform 0.2s ease;
}

#dream-cards:hover {
  transform: scale(1.05) rotate(-2deg);
}
#dream-card-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: auto;
  z-index: 999;
}

#popup-bg {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#dream-card-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  font-family: 'VT323', monospace;
  font-size: 20px;
  color: #111;
  text-align: center;
}
.hidden {
  display: none;
}
#moments-diary {
  position: absolute;
  bottom: 30px;
  left: 200px;
  width: 230px;
  z-index: 10;
  transform: rotate(-10deg);
  cursor: pointer;
}
#moments-diary:hover {
  transform: scale(1.05) rotate(-2deg);
}
#about-polaroid {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 220px;
  transform: rotate(5deg);
  cursor: pointer;
  transition: transform 0.2s ease;
}

#about-polaroid:hover {
  transform: scale(1.05) rotate(5deg);
}
#notes-about-humans {
  position: absolute;
  bottom: 40px;    /* adjust to fit desk */
  left:380px;     /* pull it back onto the screen */
  width: 140px;    /* resize to something tidy */
  z-index: 30;
  cursor: pointer;
}
#notes-about-humans:hover {
  transform: scale(1.05) rotate(5deg);
}

#notes-about-humans img {
  width: 100%;
  height: auto;
  display: block;
}
#jeepy-note {
  position: absolute;
  top: 300px;
  left: 30px;
  width: 100px;
  height: 140px;
  background: #fdf18d;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
  padding: 15px;
  font-family: 'Patrick Hand', cursive; /* or similar handwritten font */
  font-size: 9.5px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 1px solid #ccc;
  z-index: 999;
}

#jeepy-note:hover {
  transform: rotate(-2deg) scale(1.02);
}

#jeepy-text {
  display: block;
  white-space: pre-wrap;
}
#jeepy-label {
  position: absolute;
  top: 240px;
  left: 20px;
  width: 150px; /* adjust size */
  z-index: 1000;
  pointer-events: none; /* allows clicks to pass through */
}
