/* Stickers CSS */
.sticker-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none; /* Allow clicks to pass through */
}

.sticker {
  position: absolute;
  opacity: 0;
  transform: scale(0) translate(-50%, -50%);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease-out;
  width: 140px; /* Doubled size from original 70px */
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
  z-index: 5;
}

/* Specific sticker positioning and sizing - moved away from center */
.sticker-breakfast {
  top: 10%;
  left: -2%;
  width: 130px;
  transform: scale(0) translate(-50%, -50%) rotate(-8deg);
}

.sticker-dog {
  top: 15%;
  right: -2%;
  width: 150px;
  transform: scale(0) translate(-50%, -50%) rotate(5deg);
}

.sticker-goose {
  bottom: 30%;
  left: -5%;
  width: 160px;
  transform: scale(0) translate(-50%, -50%) rotate(-5deg);
}

.sticker-polaroid {
  bottom: 10%;
  right: -12%;
  width: 200px;
  transform: scale(0) translate(-50%, -50%) rotate(8deg);
}

.sticker-vege {
  top: 70%;
  left: -8%;
  width: 120px;
  transform: scale(0) translate(-50%, -50%) rotate(-3deg);
}

/* Active state when scrolled to */
.slide-active .sticker {
  opacity: 1;
  transform: scale(1) translate(0, 0) rotate(var(--rotation, 0deg));
}

/* Staggered animation timing for each sticker */
.slide-active .sticker-breakfast {
  transition-delay: 0.2s;
}

.slide-active .sticker-dog {
  transition-delay: 0.3s;
}

.slide-active .sticker-goose {
  transition-delay: 0.4s;
}

.slide-active .sticker-polaroid {
  transition-delay: 0.5s;
}

.slide-active .sticker-vege {
  transition-delay: 0.6s;
}

/* Responsive styling */
@media (max-width: 992px) {
  .sticker {
    width: 100px; /* Slightly smaller on mobile */
  }

  .sticker-breakfast {
    top: 8%;
    left: -5%;
    width: 90px;
  }

  .sticker-dog {
    top: 12%;
    right: -5%;
    width: 105px;
  }

  .sticker-goose {
    bottom: 20%;
    left: -8%;
    width: 110px;
  }

  .sticker-polaroid {
    bottom: 8%;
    right: -5%;
    width: 95px;
  }

  .sticker-vege {
    top: 45%;
    left: -10%;
    width: 85px;
  }
}
