/* css/footer.css */

.footer-easter-egg {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.logo-wrapper {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 10;
}

.runaway-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  cursor: grab;
  /* Add subtle float idle animation */
  animation: float-idle 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.logo-wrapper:nth-child(even) .runaway-logo {
  animation-duration: 4s;
  animation-delay: -1s;
}

.logo-wrapper:nth-child(3n) .runaway-logo {
  animation-duration: 3.5s;
  animation-delay: -2s;
}

@keyframes float-idle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .footer-easter-egg {
    gap: 15px;
    margin-bottom: 40px;
  }
  .logo-wrapper {
    width: 35px;
    height: 35px;
  }
}
