/* ===== HERO CONTAINER FADE UP ANIMATIONS - DISABLED ===== */

/* Hero Container Elements - No Effects (Static Display) */
.hero-container .hero-card,
.hero-container .hero-title,
.hero-container .hero-subtitle,
.hero-container .hero-actions,
.hero-container .hero-nav,
.hero-container .hero-indicators,
.hero-container .hero-progress {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Hero Card Content - Animations Disabled */
/*
.hero-container .hero-card {
  animation: heroCardFadeUp 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.1s;
}

.hero-container .hero-title {
  animation: heroFadeUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
}

.hero-container .hero-subtitle {
  animation: heroFadeUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.6s;
}

.hero-container .hero-actions {
  animation: heroFadeUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.9s;
}

.hero-container .hero-nav.hero-prev {
  animation: heroFadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.2s;
}

.hero-container .hero-nav.hero-next {
  animation: heroFadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.3s;
}

.hero-container .hero-indicators {
  animation: heroFadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.4s;
}

.hero-container .hero-progress {
  animation: heroFadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.5s;
}
*/

/* Fade Up Keyframe Animation */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Card Fade Up Animation with Scale Effect */
@keyframes heroCardFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Individual Hero Dots Staggered Animation */
.hero-container .hero-dot {
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-container .hero-dot:nth-child(1) {
  animation: heroDotFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.5s;
}

.hero-container .hero-dot:nth-child(2) {
  animation: heroDotFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.6s;
}

.hero-container .hero-dot:nth-child(3) {
  animation: heroDotFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.7s;
}

.hero-container .hero-dot:nth-child(4) {
  animation: heroDotFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.8s;
}

.hero-container .hero-dot:nth-child(5) {
  animation: heroDotFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.9s;
}

.hero-container .hero-dot:nth-child(n+6) {
  animation: heroDotFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 2s;
}

/* Hero Dots Fade Up Animation */
@keyframes heroDotFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  70% {
    opacity: 1;
    transform: translateY(-3px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hero Button Enhanced Animation */
.hero-container .hero-btn {
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-container .hero-actions .hero-btn {
  animation: heroBtnFadeUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1s;
}

@keyframes heroBtnFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-3px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile Responsive Adjustments - DISABLED */
/*
@media (max-width: 768px) {
  .hero-container .hero-card {
    transform: translateY(35px) scale(0.96);
  }
  
  .hero-container .hero-title,
  .hero-container .hero-subtitle,
  .hero-container .hero-actions {
    transform: translateY(25px);
  }
  
  .hero-container .hero-nav,
  .hero-container .hero-indicators,
  .hero-container .hero-progress {
    transform: translateY(20px);
  }
  
  .hero-container .hero-dot {
    transform: translateY(15px) scale(0.9);
  }
  
  .hero-container .hero-btn {
    transform: translateY(15px) scale(0.98);
  }
  
  .hero-container .hero-card {
    animation-duration: 1.2s;
    animation-delay: 0.1s;
  }
  
  .hero-container .hero-title {
    animation-duration: 1s;
    animation-delay: 0.2s;
  }
  
  .hero-container .hero-subtitle {
    animation-duration: 1s;
    animation-delay: 0.4s;
  }
  
  .hero-container .hero-actions {
    animation-duration: 1s;
    animation-delay: 0.6s;
  }
  
  .hero-container .hero-nav.hero-prev {
    animation-delay: 0.8s;
  }
  
  .hero-container .hero-nav.hero-next {
    animation-delay: 0.9s;
  }
  
  .hero-container .hero-indicators {
    animation-delay: 1s;
  }
  
  .hero-container .hero-progress {
    animation-delay: 1.1s;
  }
}

@media (max-width: 576px) {
  .hero-container .hero-card {
    transform: translateY(30px) scale(0.97);
  }
  
  .hero-container .hero-title,
  .hero-container .hero-subtitle,
  .hero-container .hero-actions {
    transform: translateY(20px);
  }
  
  .hero-container .hero-nav,
  .hero-container .hero-indicators,
  .hero-container .hero-progress {
    transform: translateY(15px);
  }
  
  .hero-container .hero-dot {
    transform: translateY(12px) scale(0.95);
  }
  
  .hero-container .hero-btn {
    transform: translateY(12px) scale(0.99);
  }
  
  .hero-container .hero-card {
    animation-duration: 1s;
    animation-delay: 0.05s;
  }
  
  .hero-container .hero-title {
    animation-duration: 0.8s;
    animation-delay: 0.1s;
  }
  
  .hero-container .hero-subtitle {
    animation-duration: 0.8s;
    animation-delay: 0.3s;
  }
  
  .hero-container .hero-actions {
    animation-duration: 0.8s;
    animation-delay: 0.5s;
  }
  
  .hero-container .hero-nav.hero-prev {
    animation-delay: 0.7s;
  }
  
  .hero-container .hero-nav.hero-next {
    animation-delay: 0.8s;
  }
  
  .hero-container .hero-indicators {
    animation-delay: 0.9s;
  }
  
  .hero-container .hero-progress {
    animation-delay: 1s;
  }
}
*/

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .hero-container .hero-card,
  .hero-container .hero-title,
  .hero-container .hero-subtitle,
  .hero-container .hero-actions,
  .hero-container .hero-nav,
  .hero-container .hero-indicators,
  .hero-container .hero-progress,
  .hero-container .hero-dot,
  .hero-container .hero-btn {
    animation: none !important;
    transition: opacity 0.3s ease !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Page Load Complete State - Ensure all elements are visible */
.page-loaded .hero-container .hero-card,
.page-loaded .hero-container .hero-title,
.page-loaded .hero-container .hero-subtitle,
.page-loaded .hero-container .hero-actions,
.page-loaded .hero-container .hero-nav,
.page-loaded .hero-container .hero-indicators,
.page-loaded .hero-container .hero-progress,
.page-loaded .hero-container .hero-dot,
.page-loaded .hero-container .hero-btn {
  opacity: 1 !important;
  transform: none !important;
}

/* Enhanced Hover Effects for Animated Elements */
.hero-container .hero-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.hero-container .hero-nav:hover {
  transform: translateY(-1px) scale(1.05);
}

.hero-container .hero-dot:hover {
  transform: translateY(-1px) scale(1.1);
}

/* Smooth Transitions for Interactive Elements */
.hero-container .hero-btn,
.hero-container .hero-nav,
.hero-container .hero-dot {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
