/* ===========================
   🌍 HALAMAN UTAMA RESPONSIF
   =========================== */
   /* 🌟 Teks inspiratif di bawah judul */
.subtext {
  text-align: center;
  font-size: 1.05em;
  color: #444;
  margin-top: -4px;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 0.3px;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

/* Animasi fade in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 🌑 Mode gelap */
body.dark-mode .subtext {
  color: #bbb;
}

/* 📱 Responsif */
@media screen and (max-width: 600px) {
  .subtext {
    font-size: 1em;
    margin-top: 0;
  }
}
.surah-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.surah-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  transition: 0.2s;
}

.surah-item:hover {
  transform: scale(1.02);
  background: #f1fdfb;
}

.surah-item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  height: 100%;
}

.surah-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.surah-number {
  background: #00897b;
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.surah-item .arab {
  font-family: 'Scheherazade New','Amiri','Traditional Arabic',serif;
  font-size: 28px;
  color: #003366;
  text-align: right;
  margin-top: 8px;
  text-shadow: 0 0 4px rgba(0,0,100,0.15);
}

/* 🔍 Kotak pencarian */
.search-box {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.search-box input[type="text"] {
  flex: 1;
  max-width: 350px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.search-box button {
  padding: 10px 16px;
  background: #00897b;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* 🌑 Mode Gelap */
body.dark-mode .surah-item {
  background: #1e1e1e;
  box-shadow: 0 0 6px rgba(255,255,255,0.08);
}

body.dark-mode .surah-number {
  background: #4dd0e1;
  color: #000;
}

body.dark-mode .surah-item .arab {
  color: #4da6ff;
  text-shadow: 0 0 6px rgba(77,166,255,0.5);
}

/* 📱 Responsif untuk HP */
@media screen and (max-width: 600px) {
  .search-box {
    flex-direction: column;
    gap: 10px;
  }

  .search-box input, .search-box button {
    width: 100%;
  }

  .surah-list {
    grid-template-columns: 1fr;
  }

  .surah-item .arab {
    font-size: 32px;
  }

  h1 {
    text-align: center;
    font-size: 1.4em;
  }

  .surah-number {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .surah-info small {
    font-size: 14px;
  }
}