/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 23, 0.4) 0%,
    rgba(10, 14, 23, 0.6) 50%,
    rgba(10, 14, 23, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.hero__logo {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--space-6);
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-accent-primary);
  margin-bottom: var(--space-8);
  letter-spacing: 0.1em;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (smaller, for inner pages) */
.hero--page {
  min-height: 40vh;
  padding-top: var(--header-height);
}

.hero--page .hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 14, 23, 0.6) 0%,
    rgba(10, 14, 23, 0.9) 100%
  );
}

.hero--page .hero__content {
  padding: var(--space-16) var(--space-6);
}

.hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.hero__breadcrumb a {
  color: var(--color-text-secondary);
}

.hero__breadcrumb a:hover {
  color: var(--color-accent-primary);
}

.hero__breadcrumb .separator {
  color: var(--color-metallic-dark);
}

/* Glow animation */
@keyframes logo-glow {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.6));
  }
}

.hero__logo {
  animation: logo-glow 4s ease-in-out infinite;
}

/* Energy particles background effect */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(0, 119, 182, 0.06) 0%, transparent 45%);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero__logo {
    width: 150px;
    height: 150px;
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__tagline {
    font-size: var(--text-lg);
  }

  .hero--page {
    min-height: 30vh;
  }
}
