/* ================= AYAH / QUOTE SECTION ================= */
.hadith-section {
  font-family: 'Amiri', serif;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background-image: url('../IMG/quoteback.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hadith-container {
  padding: 40px 50px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  border-radius: 8px;
}



/* Arabic Ayah */
.hadith-main-text {
  font-size: 43px;
  line-height: 1.75;
  color: #c9934a;
  font-weight: 700;
  margin-bottom: 30px;
}

.hadith-line {
  display: block;
}

/* English translation */
.hadith-source {
  font-size: 25px;
  color: #1e3a4c;
  font-weight: 400;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .hadith-container {
    padding: 40px 30px;
  }

  .hadith-main-text {
    font-size: 28px;
  }

  .hadith-source {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hadith-container {
    padding: 35px 20px;
  }

  .hadith-main-text {
    font-size: 24px;
    line-height: 1.5;
  }

  .hadith-source {
    font-size: 15px;
  }
}