/* ==========================================================================
   CRS Real Alliance - Micro-Animations
   --------------------------------------------------------------------------
   TABLE OF CONTENTS:
   1. FADE IN UP KEYFRAMES & UTILITIES
   2. SHIELD GLOWS & CUSTOM ENTRANCE DELAYS
   3. SCALING HOVER SHIFT MODES
   ========================================================================== */

/* 1. FADE IN UP KEYFRAMES & UTILITIES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* 2. SHIELD GLOWS & CUSTOM ENTRANCE DELAYS */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes goldGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(199, 160, 76, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(199, 160, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(199, 160, 76, 0);
  }
}

.glow-accent {
  animation: goldGlow 2s infinite;
}

/* 3. SCALING HOVER SHIFT MODES */
.hover-scale {
  transition: var(--crs-transition);
}

.hover-scale:hover {
  transform: scale(1.03);
}
