/*
 * CormackCoreWeb 2.0 - Main Stylesheet
 * Author: Charlie - Cormack Advertising
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
}

/* Header Styles */
/* Removed - header styles now in custom.css */

/* Footer Styles */
/* Removed - footer styles now in custom.css */

/* Hero Styles */
/* Removed - hero styles now in custom.css */

/* Main Content */
main {
    padding: 40px 0;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    main {
        padding: 20px 0;
    }
}
