/* css/quran.css */

/* --- 1. LIST SURAT VIEW --- */
.surah-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
}

.surah-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.surah-number {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* --- 2. DETAIL AYAT VIEW --- */

/* Header Sticky yang Rapi */
.sticky-header {
    position: sticky;
    top: 0;
    background: var(--bg-body); /* Mengikuti background utama agar mulus */
    z-index: 100;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: background 0.3s;

    /* FLEXBOX: Kunci agar sejajar */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Tombol di kiri-kanan, judul di tengah */
    gap: 15px;
}

[data-theme="dark"] .sticky-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

/* Judul Surat di Tengah */
.sticky-header h3 {
    flex-grow: 1; /* Mengisi ruang kosong di tengah */
    text-align: center;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tombol Header (Back & Play All) agar tidak gepeng */
.sticky-header .btn-circle {
    flex-shrink: 0; /* Mencegah tombol mengecil */
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

/* Status Bar Audio (Playing...) */
#audio-status-bar {
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- 3. KARTU AYAT --- */
.ayat-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border-bottom: 3px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    scroll-margin-top: 100px; /* Jarak scroll dari header */
}

/* HIGHLIGHT AYAT YANG SEDANG DIPUTAR (Ini yang sebelumnya hilang) */
.ayat-card.playing-highlight {
    background-color: #e8f5e9; /* Hijau sangat muda (Light Mode) */
    border-left: 4px solid var(--primary-color);
    transform: scale(1.01); /* Sedikit membesar */
    box-shadow: var(--shadow-md);
}

/* Highlight di Dark Mode */
[data-theme="dark"] .ayat-card.playing-highlight {
    background-color: rgba(20, 108, 67, 0.25); /* Hijau transparan (Dark Mode) */
}

.ayat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ayat-number {
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(15, 81, 50, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

[data-theme="dark"] .ayat-number {
    background: rgba(74, 222, 128, 0.15);
}

.arabic-text {
    font-family: var(--font-arab);
    font-size: 1.8rem;
    text-align: right;
    direction: rtl;
    line-height: 2.2;
    margin: 20px 0;
    color: var(--text-main);
}

.translation-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* Kotak Tafsir */
.tafsir-box {
    background: var(--bg-body);
    padding: 15px;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    border-left: 3px solid var(--secondary-color);
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
