/* Quran Pages Styles */

.quran-content {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.breadcrumb {
    padding: 12px 0;
    margin-bottom: 32px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* Surah Header */
.surah-header {
    background: linear-gradient(135deg, #0F172A 0%, #1e3a5f 100%);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 48px;
    color: white;
    text-align: center;
}

.surah-title-section {
    margin-bottom: 32px;
}

.surah-title-arabic {
    font-family: 'Noto Arabic', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: var(--accent);
}

.surah-title-english {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.surah-title-transliteration {
    font-size: 20px;
    opacity: 0.9;
    font-style: italic;
}

.surah-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.info-item {
    text-align: center;
}

.info-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.info-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
}

.surah-description {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
    font-size: 16px;
}

.surah-description p {
    margin-bottom: 16px;
}

/* Verses */
.verses-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.verse-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.verse-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.verse-card.bismillah {
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    color: white;
    text-align: center;
}

.verse-card.bismillah .verse-arabic {
    color: white;
    font-size: 32px;
}

.verse-card.bismillah .verse-transliteration {
    color: rgba(255, 255, 255, 0.9);
}

.verse-card.bismillah .verse-translation {
    color: rgba(255, 255, 255, 0.95);
}

.verse-number {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.verse-arabic {
    font-family: 'Noto Arabic', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 2;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: right;
}

.verse-transliteration {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 8px;
}

.verse-translation {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Themes Section */
.themes-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.themes-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 32px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.theme-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.theme-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.theme-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    max-width: 900px;
    margin: 0 auto 60px;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.benefits-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.benefits-section ul {
    list-style: none;
    padding: 0;
}

.benefits-section li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
    line-height: 1.7;
}

.benefits-section li:last-child {
    border-bottom: none;
}

.benefits-section strong {
    color: var(--primary);
}

/* Quran CTA */
.quran-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--onboarding-gradient);
    border-radius: 24px;
}

.quran-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.quran-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .surah-title-arabic {
        font-size: 48px;
    }

    .surah-title-english {
        font-size: 28px;
    }

    .surah-header {
        padding: 32px 24px;
    }

    .surah-info {
        gap: 24px;
    }

    .verse-arabic {
        font-size: 28px;
    }

    .verse-translation {
        font-size: 16px;
    }

    .themes-section h3,
    .benefits-section h3,
    .quran-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .quran-content {
        padding: 100px 0 60px;
    }

    .surah-header {
        padding: 24px 16px;
    }

    .surah-title-arabic {
        font-size: 36px;
    }

    .surah-title-english {
        font-size: 24px;
    }

    .verse-card {
        padding: 24px 16px;
    }

    .verse-arabic {
        font-size: 24px;
    }
}
