/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* AI Accordion toggle text */
.ai-accordion .ai-toggle-text::after {
  content: "펼치기";
}

.ai-accordion[open] .ai-toggle-text::after {
  content: "접기";
}

/* Typewriter cursor effect */
.typing-cursor::after {
  content: "|";
  animation: blink 1s infinite;
  color: currentColor;
  font-weight: bold;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Hover animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Gradient animation */
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
}

/* Float animation on hover */
.hover-float:hover {
  animation: float 2s ease-in-out infinite;
}

/* Pulse animation */
.animate-pulse-slow {
  animation: pulse 2s ease-in-out infinite;
}
