/* QuranPlus - Custom Styles */

/* Import Arabic font */
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Scheherazade+New:wght@400;700&display=swap');

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
}

/* Arabic text styling */
.font-arabic {
    font-family: 'Scheherazade New', 'Amiri', serif;
    line-height: 1.8;
}

/* Ayah text styling */
.ayah-text {
    font-family: 'Scheherazade New', 'Amiri', serif;
    line-height: 2;
    font-size: 1.75rem;
}

/* Surah card styling */
.surah-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.surah-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Audio player styling */
.audio-player {
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

/* Bookmark active state */
.bookmark-active {
    color: #f59e0b;
    fill: #f59e0b;
}

/* Ayah highlight on active */
.ayah-active {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--primary-color);
}

/* Dark mode adjustments */
.dark .ayah-active {
    background-color: rgba(16, 185, 129, 0.2);
}

/* Bismillah styling */
.bismillah {
    font-family: 'Scheherazade New', 'Amiri', serif;
    font-size: 1.75rem;
    text-align: center;
    margin: 1rem 0;
    line-height: 2;
}

/* Surah title in Arabic */
.surah-title-arabic {
    font-family: 'Scheherazade New', 'Amiri', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .ayah-text {
        font-size: 1.5rem;
    }
    
    .bismillah {
        font-size: 1.5rem;
    }
}

/* Loading animation */
.loading-spinner {
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    border-top: 3px solid var(--primary-color);
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tafsir styling */
.tafsir-content {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* RTL support for Arabic UI */
[dir="rtl"] .flex-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .space-x-4 > * + * {
    margin-right: 1rem;
    margin-left: 0;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.dark ::-webkit-scrollbar-track {
    background: #374151;
}

.dark ::-webkit-scrollbar-thumb {
    background: #6B7280;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}