/*
Theme Name: GeneratePress Child
Theme URI: https://your-website.com
Description: Custom child theme for AI Core Automation website
Author: Your Name
Author URI: https://your-website.com
Template: generatepress
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: generatepress-child
*/

/* 
====================================
CUSTOM STYLES
====================================
This file is for global styles that apply across your entire website.
Template-specific styles should remain in the template files.
*/

/* Example: Custom button styles that work across all pages */
.custom-btn {
    background: #3b82f6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.custom-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}