/* ===== HERO SECTION ===== */
.gradient-bg {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.gradient-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}

.hero {
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out 0.1s both;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-text .ba {
  color: var(--primary-blue);
}

.logo-text .bash {
  color: var(--primary-yellow);
}

.logo-text .h-blue {
  color: var(--primary-blue);
}

.hero-logo {
  margin-bottom: 30px;
  animation: slideInUp 1s ease-out 0.1s both;
}

.logo-image {
  max-width: 200px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: slideInUp 1s ease-out 0.2s both;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-yellow);
  color: var(--primary-blue);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: var(--border-radius-large);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
  animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .logo-text {
    font-size: 2rem;
  }

  .logo-image {
    max-width: 150px;
  }
}
