/* ===========================
   Hero Section Styles
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7);
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  text-align: center;
  color: white;
  margin-bottom: var(--spacing-xxl);
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-bolder);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--font-size-xlarge);
  font-weight: var(--font-weight-normal);
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 15px 40px;
  font-size: var(--font-size-large);
  min-width: 160px;
}

.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
  backdrop-filter: blur(10px);
}

.hero-actions .btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xlarge);
  box-shadow: var(--shadow-heavy);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease 0.3s both;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  transition: transform var(--transition-base);
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.stat-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-number {
  font-size: var(--font-size-xxlarge);
  font-weight: var(--font-weight-bolder);
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-small);
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: var(--font-size-large);
  }

  .hero-stats {
    gap: var(--spacing-md);
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-number {
    font-size: var(--font-size-xlarge);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 var(--spacing-xxl);
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  .hero-actions .btn {
    padding: 12px 30px;
    font-size: var(--font-size-base);
    min-width: 140px;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }
}
