You have a max-width of 100px set on the logo somewhere.
Code:
#logo img {
max-width: 100px;
width: 100%;
}
causing it to be rather small.
You can find that and adjust it, or just add some new CSS to overwrite it:
Code:
#XenForo #logo img {
max-width: 300px;
}