/* ===== STYLES POUR SECTION SOURCES ISLAMIQUES ===== */

.sources-islamiques {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(45, 95, 79, 0.1);
    border: 2px solid #E5E3DB;
}

/* Header */
.sources-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sources-icon {
    font-size: 2.5rem;
}

.sources-title {
    font-family: 'Amiri', serif;
    font-size: 2rem;
    color: #2D5F4F;
    margin: 0;
}

.sources-intro {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Liste des sources */
.sources-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Item source */
.source-item {
    background: linear-gradient(135deg, #F8F6F0 0%, #FDFCF9 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #D4A574;
    transition: all 0.3s;
}

.source-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(45, 95, 79, 0.1);
}

.source-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.source-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2D5F4F 0%, #3A7863 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.source-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D5F4F;
}

/* Hadith */
.source-hadith {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
}

.source-hadith-arabic {
    font-family: 'Amiri', serif;
    font-size: 1.5rem;
    color: #2D5F4F;
    text-align: right;
    direction: rtl;
    line-height: 2;
    margin-bottom: 1rem;
}

.source-hadith p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1F2937;
    font-style: italic;
    margin: 0;
}

/* Références */
.source-references {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.source-ref-tag {
    background: #2D5F4F;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Savants */
.source-scholars {
    margin-top: 1rem;
}

.scholars-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.scholar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #E5E3DB;
}

.scholar-icon {
    font-size: 1.5rem;
}

/* Note importante */
.sources-note {
    background: linear-gradient(135deg, #FFF9ED 0%, #FFF5E0 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #D4A574;
    margin-bottom: 2rem;
}

.sources-note-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #2D5F4F;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.sources-note-text {
    color: #1F2937;
    line-height: 1.8;
    margin: 0;
}

.sources-note-text em {
    color: #D4A574;
    font-weight: 600;
}

/* Verset coranique */
.sources-ayah {
    background: linear-gradient(135deg, #2D5F4F 0%, #3A7863 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.sources-ayah-arabic {
    font-family: 'Amiri', serif;
    font-size: 2rem;
    line-height: 2.2;
    margin-bottom: 1.5rem;
    direction: rtl;
}

.sources-ayah-translation {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.sources-ayah-ref {
    font-size: 1rem;
    font-weight: 600;
    color: #D4A574;
}

/* Responsive */
@media (max-width: 768px) {
    .sources-islamiques {
        padding: 2rem 1.5rem;
    }
    
    .sources-title {
        font-size: 1.6rem;
    }
    
    .source-item {
        padding: 1.5rem;
    }
    
    .source-hadith-arabic {
        font-size: 1.3rem;
    }
    
    .scholars-list {
        grid-template-columns: 1fr;
    }
    
    .sources-ayah-arabic {
        font-size: 1.6rem;
    }
}