/* --- Quran Page Styles --- */
:root {
    --emerald: #064e3b;
    --gold: #d97706;
    --cream: #fdfcf0;
}

.quran-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(6, 78, 59, 0.7)), 
                url('https://images.unsplash.com/photo-1609599006353-e629aaabfeae?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.quran-main-content {
    max-width: 1200px;
    margin: -60px auto 50px;
    padding: 0 20px;
}

.intro-glass {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
}

.intro-glass h2 {
    font-family: 'Playfair Display', serif;
    color: var(--emerald);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Surah Grid Explorer */
.explorer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

#surahSearch {
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid #ddd;
    width: 300px;
    font-size: 1rem;
}

.surah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.surah-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #eee;
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.surah-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.surah-number {
    width: 40px;
    height: 40px;
    background: var(--emerald);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.surah-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--emerald);
}

.surah-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .explorer-header { flex-direction: column; gap: 1rem; text-align: center; }
    #surahSearch { width: 100%; }
}