/* Quotes Index Page Styles */

/* Heart Animation */
.heart {
  position: absolute;
  font-size: 20px;
  animation: bubble 1.2s ease-out forwards;
  opacity: 0.8;
}

@keyframes bubble {
  0% { 
    transform: translateY(0) scale(1); 
    opacity: 0.8;
  }
  50% {
    transform: translateY(-50px) scale(1.2);
    opacity: 1;
  }
  100% { 
    transform: translateY(-100px) scale(0.8); 
    opacity: 0;
  }
}

/* Glow Effect for Quote of the Day */
.glow-effect {
  box-shadow: 0 0 8px 2px rgba(255, 99, 132, 0.6);
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px 2px rgba(255, 99, 132, 0.6);
  }
  50% {
    box-shadow: 0 0 12px 4px rgba(255, 99, 132, 0.8);
  }
  100% {
    box-shadow: 0 0 8px 2px rgba(255, 99, 132, 0.6);
  }
}

/* Heart Container */
.heart-container {
  position: relative;
  pointer-events: none;
}
