/* إعدادات عامة */
body {
  margin: 0;
  padding: 0;
  font-family: "Cairo", "Tahoma", sans-serif;
  background-color: #faf9f7;
  color: #222;
  line-height: 1.8;
}

/* ترويسة الموقع */
header {
  background-color: #b88a44;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  border-bottom: 3px solid #8a6a2f;
}

header h1 {
  font-size: 2rem;
  margin: 0;
  letter-spacing: 1px;
}

/* شريط التنقل */
nav {
  background-color: #fff;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.8rem;
  border-bottom: 1px solid #ddd;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #b88a44;
}

nav a.active {
  border-bottom: 2px solid #b88a44;
  padding-bottom: 3px;
}

/* الحاوية العامة */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* شبكة المقالات */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  background: linear-gradient(180deg, #fffdf8 0%, #f8f5ee 100%);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
}

/* زخرفة عربية وسطية خفيفة */
.articles-grid::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/6/6f/Islamic_motif_line_gold.png') no-repeat center;
  background-size: contain;
  opacity: 0.3;
}

/* تصميم البطاقة */
.article-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* فاصل زخرفي بين المقالات */
.article-card::after {
  content: "";
  display: block;
  height: 3px;
  width: 60%;
  margin: 1rem auto 0;
  background: linear-gradient(to right, transparent, #b88a44, transparent);
  border-radius: 5px;
  opacity: 0.4;
}

/* صورة المقال */
.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* محتوى البطاقة */
.article-content {
  padding: 1rem 1.2rem;
}

.article-content h2 {
  font-size: 1.3rem;
  color: #b88a44;
  margin-top: 0;
}

.article-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.8rem;
}

.read-more {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #b88a44;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #a0742f;
}

/* تذييل الصفحة */
footer {
  background-color: #f5f3ef;
  color: #666;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
}

/* استجابة الهواتف */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.6rem;
  }
  nav {
    flex-wrap: wrap;
  }
  .read-more {
    font-size: 0.85rem;
  }
}

/* تأثير دخول العناصر */
.article-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease forwards;
}

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