/*
Theme Name: Agency Automation Theme
Theme URI: https://example.com/agency-automation
Author: Antigravity
Author URI: https://google.com
Description: A high-conversion, modern, agency-style theme with support for AI automation, workflows, and dashboard integrations.
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: agency-automation
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-menu, featured-images
*/

/* Reset & Basics */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --text-color: #333;
    --bg-color: #fff;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --container-width: 1200px;
    --spacing-unit: 1rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-unit);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

img {
    max-width: 100%;
    height: auto;
}
