/* 🌅 Hero Section Styles */

.hero-bg {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.bounce-slow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-30px); }
  70% { transform: translateY(-15px); }
  90% { transform: translateY(-4px); }
}

.slide-in {
  animation: slideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gradient-primary {
  background: linear-gradient(45deg, #ffc107, #fd7e14);
  border: none;
  color: white;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient-primary:hover {
  background: linear-gradient(45deg, #ffca2c, #fd7e14);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(253, 126, 20, 0.4);
}

.hero-stats .stats-counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}
