:root {
  --bg-main: #0f1f1a;
  --bg-card: #162b24;
  --green-main: #2e7d32;
  --green-light: #66bb6a;
  --green-soft: #a5d6a7;
  --text-main: #e8f5e9;
}

/* الصفحة */
body {
  margin: 0;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  background: linear-gradient(180deg, #0f1f1a, #07140f);
  color: var(--text-main);
  line-height: 2;
  font-size: 18px;
}

/* الهيدر */
.site-header {
  background: #081c15;
  border-bottom: 3px solid var(--green-main);
  text-align: center;
  padding: 15px 10px;
}

.top-title a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  font-weight: bold;
}

/* القائمة */
.main-nav {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main-nav a {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.main-nav a:hover {
  background: #66bb6a;
  color: #000;
}

/* الحاوية */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* الكروت */
.card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* النص */
p {
  font-size: 18px;
  line-height: 2.1;
  margin-bottom: 15px;
}

/* العنوان الرئيسي */
h1 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 20px;
}

/* العناوين الفرعية */
h2 {
  font-size: 22px;
  color: var(--green-soft);
  border-right: 4px solid var(--green-light);
  padding-right: 10px;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* عناوين أصغر */
h3 {
  font-size: 20px;
  color: #c8e6c9;
  margin-top: 20px;
}

/* روابط عامة */
a {
  color: var(--green-light);
}

/* شبكة البطاقات */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* بطاقة القصة */
.story-card {
  display: block;
  background: #1b3a2f;
  color: #ffffff !important;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none !important;
  border: 1px solid var(--green-main);
  transition: 0.3s;
}

.story-card:hover {
  background: var(--green-main);
  transform: translateY(-4px);
}

/* أزرار السابق/التالي */
.nav {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.nav a {
  flex: 1;
  text-align: center;
  background: var(--green-main) !important;
  color: #ffffff !important;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none !important;
}

.nav a:hover {
  background: var(--green-light) !important;
  color: #000 !important;
}

/* الفوتر */
footer {
  text-align: center;
  padding: 25px;
  background: #081c15;
  color: #c8e6c9;
  font-size: 14px;
}

footer a {
  color: #ffffff !important;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  color: var(--green-light) !important;
}

/* الجوال */
@media (max-width: 768px) {

  body {
    font-size: 19px;
  }

  .main-nav {
    flex-direction: column;
    align-items: center;
  }

  .main-nav a {
    width: 95%;
    text-align: center;
  }

  .nav {
    flex-direction: column;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }
}

@font-face {
  font-family: "Tajawal";
  src: url("fonts/Tajawal-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* العناوين */
h1, h2, h3 {
  font-family: "Tajawal", Tahoma, Arial, sans-serif;
  font-weight: 700;
}

p {
  margin-bottom: 18px;
}

.content-text {
  white-space: pre-line;
}

.container p {
  font-family: "Uthmanic", "Tajawal", Tahoma, Arial, sans-serif;
  font-size: 20px;
  line-height: 2.4;
}