<img> elements don't stretch unless you explicitly set their width and/or height. Your image is 970 pixels wide and will stay that way unless you manually set it to something else.
Also, your header and main images are larger than their containers can accommodate. The usable width of a container is (usually) width - padding so if you have a 1000px wide container with 20px padding on both sides you'll only have 960px available for the contents.
If you need a quick and dirty fix, set width: 1000px for the main image (and also adjust it's height to preserve aspect ratio) and give both the header and main image some negative margin-left to offset them to where you want them.