/* Hero Enhancements */

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 100px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s infinite ease-in-out;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-element:nth-child(1) {
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  animation-delay: 1.5s;
}

.floating-element:nth-child(3) {
  animation-delay: 3s;
}

.floating-element:nth-child(4) {
  animation-delay: 4.5s;
}

.floating-element i {
  font-size: 1.5rem;
  color: var(--white);
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* Hero SVG */
.hero-svg {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  animation: pulse 4s infinite ease-in-out;
}

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

/* Logo Link */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-image {
  height: 50px;
  width: auto;
}

/* Nav Items */
.nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-icon {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .stat-item {
    min-width: 80px;
    padding: 10px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .floating-elements {
    display: none;
  }
}