/**
 * Modern Quran & Hadith Display Styles
 * Beautiful, modern design with separate title section
 */

.pll-quran-hadith-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Title Section - Separate and Prominent */
.pll-title-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #e8e8e8;
    position: relative;
}

.pll-title-section::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #7b68ee);
    border-radius: 2px;
}

.pll-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Content Grid */
.pll-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Section Styles */
.pll-quran-section,
.pll-hadith-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.pll-quran-section:hover,
.pll-hadith-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Section Header */
.pll-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.pll-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.pll-quran-section .pll-icon-wrapper {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.pll-hadith-section .pll-icon-wrapper {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.pll-quran-icon,
.pll-hadith-icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.pll-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

/* Reference Badge */
.pll-reference-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pll-quran-section .pll-reference-badge {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.pll-hadith-section .pll-reference-badge {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
}

/* Text Content */
.pll-text-content {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 20px;
}

.pll-text-content p {
    margin: 0 0 15px 0;
}

.pll-text-content p:last-child {
    margin-bottom: 0;
}

.pll-quran-text {
    font-style: italic;
    color: #2d3748;
    font-size: 1.15rem;
}

.pll-hadith-text {
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pll-main-title {
        font-size: 2rem;
    }
    
    .pll-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pll-quran-section,
    .pll-hadith-section {
        padding: 25px;
    }
    
    .pll-section-title {
        font-size: 1.3rem;
    }
    
    .pll-text-content {
        font-size: 1rem;
    }
}

/* RTL Support */
[dir="rtl"] .pll-title-section::after {
    transform: translateX(50%);
}

[dir="rtl"] .pll-section-header {
    flex-direction: row-reverse;
}

/* Classic Style Variant */
.pll-style-classic .pll-quran-section,
.pll-style-classic .pll-hadith-section {
    border: 2px solid #d4af37;
    background: #faf8f3;
}

.pll-style-classic .pll-icon-wrapper {
    background: #d4af37;
    border-radius: 50%;
}

/* Minimal Style Variant */
.pll-style-minimal .pll-quran-section,
.pll-style-minimal .pll-hadith-section {
    box-shadow: none;
    border: 1px solid #e2e8f0;
    background: transparent;
}

.pll-style-minimal .pll-title-section {
    border-bottom: 1px solid #e2e8f0;
}

.pll-style-minimal .pll-title-section::after {
    display: none;
}

