/* إعداد عام */
body {
  background-color: #0e2c2c;
  color: #f9e29c;
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* شريط التنقل */
nav {
  background-color: #f9e29c;
  color: #0e2c2c;
  padding: 15px 0;
  font-weight: bold;
}

nav a {
  color: #0e2c2c;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
}

nav a:hover {
  text-decoration: underline;
}

/* قسم الهيرو */
.hero-section {
  background-image: url('hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-section .content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: -30px;
  color: #fff;
}

.hero-section p {
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 20px;
}

.hero-button {
  background-color: #FFD700;
  color: black;
  font-weight: bold;
  padding: 14px 28px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 10px #FFD700;
  animation: pulse 2.5s infinite;
}

.hero-button:hover {
  transform: scale(1.05);
}

/* حركة رفرفة خفيفة */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* تحسين العرض على الموبايل */
@media (max-width: 768px) {
  .hero-title {
    font-size: 26px;
    margin-top: -20px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .hero-button {
    font-size: 16px;
    padding: 12px 20px;
    width: 80%;
    max-width: 250px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }
}

/* الأقسام الأخرى */
section {
  padding: 60px 20px;
}

section h2 {
  color: #f9e29c;
  font-size: 32px;
  margin-bottom: 20px;
}

section p, li {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
}

/* الفوتر */
footer {
  background-color: #f9e29c;
  color: #0e2c2c;
  padding: 20px;
  font-size: 16px;
}

footer a {
  color: #0e2c2c;
  text-decoration: none;
  margin: 0 8px;
}
.hero-title {
  color: #ffffff;           /* أبيض ناصع */
  font-weight: 800;         /* وزن ثقيل */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6); /* ظل خفيف */
  font-size: 36px;          /* تكبير حجم الخط */
}

.hero p {
  color: #FFD700;           /* ذهبي واضح */
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  font-size: 20px;
}
.hero-title {
  color: #ffffff; /* أبيض */
  font-size: 40px; /* أكبر حجم */
  font-weight: 900; /* سميك جدًا */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* ظل خفيف للوضوح */
  margin-bottom: 15px;
}

.hero p {
  color: #ffd700; /* ذهبي واضح */
  font-size: 22px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
.hero-title {
  color: #ffffff;
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8); /* ظل قوي وواضح */
}

.hero p {
  color: #ffd700;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* ظل للوضوح */
}
.hero-title {
  color: #ffffff;
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* ظل غامق يبرز النص */
}

.hero p {
  color: #ffd700;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7); /* ظل لتمييز النص */
}
