/*
Theme Name: The Conch Group Theme
Author: Manus
Description: Custom theme for The Conch Group LTD with Tailwind CSS support.
Version: 1.4
*/

/* 
   Tailwind CSS is loaded via CDN in functions.php.
   This file is used for WordPress-specific overrides and to ensure full-width layouts.
*/

/* Force full width for the main container */
.site-main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Reset default WordPress margins */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Ensure images behave responsively */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for WordPress Admin Bar overlap */
body.admin-bar nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar nav {
        top: 46px;
    }
}
