
/* أنماق قسم البطل (Hero Section) - تصميم مع إضاءة المصباح */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-section:hover .hero-image-container img {
  transform: scale(1.1);
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.8) 70%,
    rgba(0, 0, 0, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 30px;
  color: #ffffff;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #ffffff; /* لون أبيض خالص */
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(0, 0, 0, 0.7);
  animation: fadeInDown 1.2s ease-out, glow 2s ease-in-out infinite alternate;
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff, #f0f0f0, #ffffff);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  max-width: 900px;
  line-height: 1.7;
  color: #ffffff; /* لون أبيض خالص */
  text-shadow: 
    0 0 8px rgba(255, 255, 255, 0.7),
    0 0 15px rgba(255, 255, 255, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out 0.4s both, glow 2.5s ease-in-out infinite alternate;
  letter-spacing: 1px;
}

/* تأثيرات إضافية محسّنة */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-content > * {
  position: relative;
  z-index: 2;
}

/* تأثيرات الحركة محسّنة */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* تأثير الإضاءة المتلألئة */


/* تصميم متجاوب محسّن */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero-image-container {
    height: 500px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 3rem;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    height: 85vh;
    border-radius: 15px;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .hero-title::after {
    width: 70px;
  }
}
