/* ===================================================
   Responsive fixes for Smuggler Cottage website
   Added for mobile / tablet compatibility
   =================================================== */

/* Fluid images - prevent them overflowing their containers */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrollbar appearing on html element
   (body zoom handled by responsive.js) */
html {
    overflow-x: hidden;
}

/* On narrow screens, make sure the body doesn't add side margins */
@media screen and (max-width: 960px) {
    body {
        margin: 0 !important;
        padding: 0 !important;
    }
}
