I love the overall look of the site, it looks very classy but clean and easy to navigate.
In terms of the look and feel of the site, I'd recommend making the following changes:
(1) Kirsty was mentioning that the pink looked a bit hazy in places - and I've noticed that you are using JPG images for your logo and the menu items. These would probably look better if you re-created them as PNG images - as this is a lossless format - whereas JPEG is a lossy format and can look a bit blocky and fuzzy - especially around what should be otherwise sharp edges.
(2) You are missing "alt" text on your images. Which is bad from a search engine optimisation and accessibility point of view. You definitely want "alt" text for your logo - to say "Beauty By Roxie" - and also for all the navigation links - this means that search engines and blind/partially sighted/disabled/dyslexic people who need to use "screen readers" which "speak" the text of a web page to them will be able to understand what the images mean.
(3) It would be a nice touch if you used an image rollover for your navigation menu items - these would show a different image (perhaps the star and the text in a brighter colour) when you hover over with the mouse.
(4) On your contact page, the link is being displayed in blue text. It would be better if you updated the CSS to display links in white text to fit in with the rest of your site - I also like the effect where the text isn't underlined initially but does underline when you hover the mouse over it, The CSS you would need to do that is as follows:
a
{
color: white;
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}
Hope that helps :hug: