/* ✅ الهيدر */
header {
  background: linear-gradient(90deg, #8fe8f0, #70cf9b);
  color: white;
  padding: 30px;
  text-align: center;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 2.3rem;
  font-family: 'Amiri', serif;
}

/* ✅ الإعدادات العامة */
body {
  font-family: 'Tajawal', sans-serif;
  line-height: 1.8;
  background-color: #fafafa;
  margin: 0;
  padding: 0;
  text-align: right;
  direction: rtl;
}

/* ✅ حاوية المحتوى الرئيسية */
.main-area {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center; /* توسيط عمودي */
  align-items: center;     /* توسيط أفقي */
  padding: 20px;
  box-sizing: border-box;
}

/* ✅ البوكس الترحيبي */
.intro-box {
  background: #fdfaf6;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 25px;
  margin: 20px auto;
  width: 90%;
  max-width: 700px;
  line-height: 1.9;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.intro-box h2 {
  font-family: 'Amiri', serif;
  font-size: 1.9rem;
  color: #4a2c2a;
  margin-bottom: 15px;
}

.intro-box p {
  font-family: 'Tajawal', sans-serif;
  color: #555;
}

/* ✅ زر بدء الاختبار بتيفاني */
.start-test {
  display: inline-block;
  font-size: 18px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #a0e7e5, #7ed6d4); /* تيفاني */
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, background 0.3s ease;
}

.start-test:hover {
  background: linear-gradient(135deg, #7ed6d4, #56cfcf);
  transform: scale(1.05);
}

/* ✅ قسم المقالات أسفل زر الاختبار */
.articles-section {
  margin: 50px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.articles-section h2 {
  font-family: 'Amiri', serif;
  font-size: 1.6rem;
  color: #4a2c2a;
  margin-bottom: 20px;
  text-align: center;
}

/* ✅ بوكس المقالات */
.article-box {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.article-box h3 {
  margin: 0 0 10px;
  font-family: 'Amiri', serif;
  color: #5a3e3b;
}

.article-box p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* ✅ أزرار المقالات بتيفاني */
.article-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #a0e7e5, #7ed6d4);
  color: white;
  border:none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s ease, background 0.3s ease;
}

.article-button:hover {
  background: linear-gradient(135deg, #7ed6d4, #56cfcf);
  transform: scale(1.05);
}
/* ✅ زر بدء الاختبار */
.PTest {
  display: inline-block;
  font-size: 18px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #a0e7e5, #7ed6d4); /* تيفاني */
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin: 25px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, background 0.3s ease;
}

.PTest:hover {
  background: linear-gradient(135deg, #7ed6d4, #56cfcf);
  transform: scale(1.05);
}

/* ✅ أزرار المقالات */
.article-box button {
  width: 100%;
  max-width: 200px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #a0e7e5, #7ed6d4); /* تيفاني */
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s ease, background 0.3s ease;
}

.article-box button:hover {
  background: linear-gradient(135deg, #7ed6d4, #56cfcf);
  transform: scale(1.05);
}

/* ✅ تمركز المقدمة والزر في الوسط */
.main-area {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center; /* توسيط عمودي */
  align-items: center;     /* توسيط أفقي */
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

footer .contact-links a:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}
/* ✅ تنسيق الفوتر */
footer {
  background: linear-gradient(135deg, #8fe8f0, #70cf9b); /* تيفاني كلاسي */
  color: white;
  padding: 25px 20px;
  text-align: center;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.1);
  margin-top: 40px;
  font-family: 'Tajawal', sans-serif;
}

/* ✅ النصوص داخل الفوتر */
footer p {
  margin: 10px 0;
  font-size: 14px;
  opacity: 0.9;
}

/* ✅ روابط التواصل */
footer .contact-links {
  margin-top: 15px;
}

footer .contact-links a {
  display: inline-block;
  margin: 0 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* ✅ التأثير عند المرور */
footer .contact-links a:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}
