/* ==========================================
   HERO SECTION
   ========================================== */

.main-hero {
  position: relative;
  width: 100%;
  background: var(--theme-bg-main);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 40px;
  border-bottom: 6px solid var(--theme-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.hero-cover-container {
  width: 100%;
  background: #111;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-cover-img {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  object-fit: contain;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
  animation: aestheticFadeIn 2.5s ease-out forwards;
}

.hero-content {
  position: relative;
  margin-top: 0;
  z-index: 10;
  padding: 30px 20px 0;
}

.hero-logo-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  border: 5px solid var(--theme-border);
  box-shadow: 0 0 40px var(--theme-primary), 0 0 80px var(--theme-primary);
  background: var(--theme-bg-section);
  overflow: hidden;
  animation: epicLogoEntrance 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-logo-wrapper:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px var(--theme-primary), 0 0 100px var(--theme-primary);
}

.hero-logo-wrapper:active {
  transform: scale(0.95);
}

.hero-logo-wrapper:focus {
  outline: none;
}

.hero-logo-wrapper:focus-visible {
  outline: none;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: glow 3s ease-in-out infinite;
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--theme-secondary);
  text-transform: uppercase;
  margin-top: 15px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.8);
  letter-spacing: 1px;
  transition: color 0.5s ease;
}

.hero-subtitle {
  color: var(--theme-text-alt);
  font-size: 18px;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.9;
  transition: color 0.5s ease;
}

/* Desktop Hero */
@media (min-width: 768px) {
  .hero-logo-wrapper {
    width: 220px;
    height: 220px;
    border-width: 6px;
  }
  
  .hero-title {
    font-size: 48px;
  }
}