/* الخطوط */
@font-face {
  font-family: "hafs";
  src: url(hafs_v20.ttf) format("truetype");
}

@font-face {
  font-family: "font1";
  src: url(font1.ttf) format("truetype");
}

/* الألوان */
:root {
  --primary-color: #E2C49E; /* اللون الرئيسي */
  --secondary-color: #D4B48A; /* اللون الثانوي */
  --background-color: #f4f4f4; /* لون الخلفية */
  --text-color: #333; /* لون النص */
  --highlight-color: #E2C49E; /* لون التمييز */
  --border-color: #ddd; /* لون الحدود */
  --shadow-color: rgba(226, 196, 158, 0.78); /* لون الظل */
  --makkah-color: #E2C49E; /* لون السور المكية */
  --madinah-color: #D4B48A; /* لون السور المدنية */
}

/* التصميم العام */
body {
  font-family: 'font', serif;
  background-color: var(--background-color);
  color: var(--text-color);
  direction: rtl;
  text-align: right;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px var(--shadow-color);
  border-radius: 10px;
  margin-top: 20px;
}

/* تصميم حقل البحث */
.search-input {
  width: auto;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1em;
  font-family: 'font1', serif;
  text-align: right;
}

.search-input:focus {
  width: 700px;
  outline: none;
  border-color: var(--highlight-color);
  box-shadow: 0 0 5px var(--highlight-color);
}

h1 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5em;
  margin-bottom: 20px;
  font-family: 'font1', serif;
}

/* الفهرس */
#surah-list {
  list-style-type: none;
  padding: 0;
}

#surah-list li {
  display: flex;
  align-items: center;
  padding: 15px;
  margin: 10px 0;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.2em;
}

#surah-list li:hover {
  background-color: var(--background-color);
  transform: translateY(-5px);
}

/* تصميم رقم السورة */
.surah-number {
  width: 40px;
  height: 40px;
  background-color: var(--highlight-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  margin-left: 15px;
  flex-shrink: 0;
  font-family: 'font1', serif;
}

/* تصميم اسم السورة */
.surah-name {
  flex-grow: 1;
  font-weight: bold;
  color: var(--primary-color);
  font-family: 'hafs', serif;
}

.surah-name::before {
  content: "سورة ";
}

/* تصميم نوع السورة */
.surah-type {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 15px;
  flex-shrink: 0;
  font-family: 'font1', serif;
}

.surah-type.makkah {
  background-color: var(--makkah-color);
  color: #fff;
}

.surah-type.madinah {
  background-color: var(--madinah-color);
  color: #fff;
}

/* صفحة الآيات */
#surah-name {
  text-align: center;
  color: var(--highlight-color);
  font-size: 2.5em;
  margin-bottom: 20px;
  font-family: 'font1', cursive;
}

#ayahs {
  font-size: 0.9em;
  line-height: 2.5;
  text-align: center;
  font-family: 'hafs', serif;
  /* النص في الوسط */
  padding: 8px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 1px 1px 10px var(--shadow-color);
  max-width: 850px;
  margin: 0 auto;
  padding: 15px;
  /* توسيط الصندوق */
}

#ayahs p {
  margin: 10px;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px var(--shadow-color);
  position: relative;
  text-align: justify;
  /* محاذاة النص */
  text-align-last: center;
  /* آخر سطر في الوسط */
}

#ayahs p::before {
  content: attr(data-number);
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--highlight-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
}

/* تحسينات للجوال */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5em;
  }

  #surah-list li {
    font-size: 1em;
    padding: 5px;
  }

  #surah-name {
    font-size: 1.5em;
  }

  .surah-number {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .surah-type {
    font-size: 0.8em;
  }

  #ayahs {
    font-size: 0.9em;
    line-height: 2;
    padding: 8px;
  }

  .container {
    width: 82%;
  }

  .search-input:focus {
    width: 260px;
  }

  #ayahs p::before {
    left: -30px;
    width: 25px;
    height: 25px;
    font-size: 0.7em;
  }
}