/*
Theme Name: Automate Classic
Theme URI: https://automate-agency.com/
Author: Automate Agency
Author URI: https://automate-agency.com/
Description: A high-performance classic WordPress theme optimized for the Gutenberg editor and custom design implementations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: automate-classic
*/

/* Reset and Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #0f172a;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.site-title a {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb;
    text-decoration: none;
    letter-spacing: -0.025em;
}

/* Content */
.site-content {
    padding: 60px 0;
}

/* Gutenberg Support Styles */
.alignwide {
    margin-left: -100px;
    margin-right: -100px;
    max-width: 1400px;
    width: auto;
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

@media (max-width: 1400px) {
    .alignwide {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #ffffff;
    padding: 60px 0;
    margin-top: 60px;
}