/*
 * 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.
 */

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.slide-up { animation: slideUp 0.5s ease-out forwards; }
.slide-up-d1 { animation-delay: 0.1s; opacity: 0; }
.slide-up-d2 { animation-delay: 0.2s; opacity: 0; }
.slide-up-d3 { animation-delay: 0.35s; opacity: 0; }
