/* Aarti Section Styles */
.aarti-section {
    padding: 100px 0;
    background: #FFF9F0;
    position: relative;
}

.aarti-section .section-header {
    position: relative;
    margin-bottom: 40px;
}

.aarti-section .section-tag {
    background: linear-gradient(135deg, #FF6B35, #F77F00);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-weight: 600;
}

.aarti-section .section-title {
    color: #8B4513;
    font-size: 38px;
    margin-bottom: 10px;
}

.aarti-section .section-subtitle {
    color: #8B4513;
    font-size: 18px;
    font-weight: 500;
}

.aarti-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 4px solid #FF6B35;
    border-right: 4px solid #FF6B35;
}

.aarti-verses {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aarti-verse-pair {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.aarti-verse {
    flex: 1;
    padding: 20px;
    background: #FFF9F0;
    border-radius: 8px;
    border-left: 3px solid #FF6B35;
    transition: var(--transition);
}

.aarti-verse:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.aarti-verse p {
    font-size: 16px;
    line-height: 1.6;
    color: #5D4037;
    margin-bottom: 8px;
    text-align: center;
}

.aarti-verse .chorus {
    font-weight: 600;
    color: #FF6B35;
    margin-top: 8px;
    font-size: 16px;
    text-align: center;
}

.aarti-header, .aarti-footer {
    padding: 20px;
    background: #FFF9F0;
    border-radius: 8px;
    border-left: 3px solid #FF6B35;
    margin-bottom: 25px;
    text-align: center;
}

.aarti-footer {
    margin-bottom: 0;
    margin-top: 25px;
}

.aarti-header p, .aarti-footer p {
    font-size: 16px;
    line-height: 1.6;
    color: #8B4513;
    margin-bottom: 5px;
}

.aarti-header .chorus, .aarti-footer .chorus {
    font-weight: 600;
    color: #FF6B35;
    font-size: 16px;
    margin-top: 8px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .aarti-verse-pair {
        flex-direction: column;
        gap: 15px;
    }
    
    .aarti-verse {
        padding: 15px;
    }
    
    .aarti-verse p, .aarti-header p, .aarti-footer p {
        font-size: 15px;
    }
    
    .aarti-verse .chorus, .aarti-header .chorus, .aarti-footer .chorus {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .aarti-content {
        padding: 20px 15px;
    }
    
    .aarti-verse {
        padding: 12px;
    }
    
    .aarti-verse p, .aarti-header p, .aarti-footer p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .aarti-verse .chorus, .aarti-header .chorus, .aarti-footer .chorus {
        font-size: 14px;
    }
}
