/**
 * ============================================
 * HELLO CLAUDE - CHILD THEME
 * Child theme di Hello Elementor con AI Integration
 * ============================================
 * 
 * ISTRUZIONI INSTALLAZIONE:
 * 1. Crea cartella: /wp-content/themes/hello-claude/
 * 2. Inserisci tutti questi file nella cartella
 * 3. Attiva il tema da Aspetto > Temi
 * 
 * FILE DA CREARE:
 * - style.css
 * - functions.php
 * - template-claude-control.php
 * - claude-api.php
 */

// ============================================
// FILE: style.css
// ============================================
/*
Theme Name: Hello Claude
Theme URI: https://michelesedia.t3amsolution.com
Description: Child theme di Hello Elementor con integrazione Claude AI per gestione autonoma
Author: Claude AI & Your Name
Author URI: https://claude.ai
Template: hello-elementor
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: hello-claude
*/

/* Stili personalizzati per l'interfaccia Claude */
.claude-control-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.claude-admin-notice {
    background: #4c51bf;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.claude-button {
    background: #4c51bf;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.claude-button:hover {
    background: #434190;
    transform: translateY(-2px);
}