.hero {
  position: relative;
  min-height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../../images/ngo-banner-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 7, 136, 0.75) 0%,
    rgba(12, 7, 136, 0.45) 40%,
    rgba(33, 28, 27, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(254, 250, 211, 0.08) 0%,
    transparent 50%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 20px;
  color: var(--cream);
}

.hero-title {
  max-width: 880px;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 8px 24px rgba(12, 7, 136, 0.4);
}

.hero-subtitle {
  margin-top: 56px;
  margin-bottom: 36px;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--peach);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 12px rgba(33, 28, 27, 0.5);
}

.hero-description {
  max-width: 720px;
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.94;
  text-shadow: 0 2px 6px rgba(33, 28, 27, 0.6);
  border-left: 4px solid var(--peach);
  padding-left: 24px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  border-radius: 60px;
  border: none;
  background: var(--primary);
  color: var(--cream);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.3s ease,
    color 0.2s ease;
  box-shadow: 0 8px 20px rgba(12, 7, 136, 0.45);
  cursor: pointer;
}

.hero-button:hover {
  transform: translateY(-4px);
  background: var(--primary-dark);
  box-shadow: 0 16px 34px rgba(12, 7, 136, 0.55);
  color: #ffffff;
}

.hero-button:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(12, 7, 136, 0.5);
}

.hero-button:hover .eye-icon {
  border-color: var(--peach);
}

.hero-button:hover {
  background: var(--peach);
}

@media (max-width: 768px) {
  .hero-content {
    padding: 60px 28px;
  }

  .hero-subtitle {
    margin-top: 36px;
    margin-bottom: 28px;
  }

  .hero-description {
    font-size: 18px;
    padding-left: 18px;
    border-left-width: 3px;
  }

  .hero-button {
    padding: 16px 28px;
    font-size: 15px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 50px 20px;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero-subtitle {
    font-size: clamp(28px, 8vw, 38px);
    margin-top: 28px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-button {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}