/* ==============================
   PONGAL THEME – INDEX PAGE ONLY
============================== */

#pongal-theme {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  pointer-events: none;
}

.pongal-pot {
  width: 110px;
  animation: floatPot 3s ease-in-out infinite;
}

.pongal-cane {
  position: absolute;
  right: -35px;
  top: 50px;
  width: 60px;
}

/* Floating animation */
@keyframes floatPot {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ==============================
   CRACKER EFFECT
============================== */

#pongal-cracker {
  position: fixed;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  z-index: 9998;
  display: none;
}

#pongal-cracker img {
  width: 120px;
  animation: crackBurst 1.5s ease-out forwards;
}

/* Burst animation */
@keyframes crackBurst {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ==============================
   MOBILE OPTIMIZATION
============================== */

@media (max-width: 768px) {
  .pongal-pot {
    width: 80px;
  }

  .pongal-cane {
    width: 45px;
    right: -25px;
  }
}
