/* الخط العام */
body {
  font-family: "Cairo", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9fafb;
  color: #333;
  line-height: 1.8;
}

/* تمرير سلس داخل الصفحة */
html {
  scroll-behavior: smooth;
}

/* ترويسة الموقع */
header {
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  color: white;
  padding: 30px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

/* قائمة التنقل */
nav {
  display: flex;
  justify-content: center;
  background-color: #222;
  flex-wrap: wrap;
  border-bottom: 2px solid #27ae60;
}

nav a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

nav a:hover {
  background-color: #27ae60;
  color: white;
}

/* تمييز روابط مهمة */
nav a.important-link {
  background-color: #e67e22;
  color: white;
  border-radius: 6px;
}

nav a.important-link:hover {
  background-color: #d35400;
  color: white;
}

/* أقسام المحتوى */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  border-bottom: 2px solid #4caf50;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

p {
  margin-bottom: 16px;
  text-align: justify;
}

/* أزرار اختيار اللغة */
.lang-toggle {
  text-align: center;
  margin: 20px 0;
}

.lang-toggle button {
  padding: 10px 20px;
  margin: 0 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  transition: 0.3s;
}

.lang-toggle button:hover {
  opacity: 0.85;
}

.lang-toggle button:nth-child(1) {
  background-color: #3498db;
  color: white;
}

.lang-toggle button:nth-child(2) {
  background-color: #e74c3c;
  color: white;
}

/* الأقسام الخاصة باللغات */
.lang-section {
  display: none;
}
.lang-section.active {
  display: block;
}

/* الفوتر */
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: white;
  margin-top: 40px;
  border-top: 2px solid #27ae60;
}

/* قوائم بدون نقاط */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

/* روابط النص */
a {
  color: #2c3e50;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* تصميم متجاوب للشاشات الصغيرة */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5em;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    padding: 12px 15px;
    font-size: 1.1em;
  }

  section {
    padding: 20px 15px;
  }

  .lang-toggle button {
    padding: 8px 15px;
    font-size: 0.95em;
    margin: 5px 3px;
  }
}
