/*
Theme Name: AI Builder Pro Theme
Description: Professional FSE theme designed specifically for AI-generated websites with dynamic styling capabilities.
Version: 1.0.0
Author: AI Builder Pro
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: ai-builder-pro
*/

/* 
This theme uses theme.json for all styling.
Minimal CSS here - WordPress generates styles from theme.json
*/

/* Ensure proper loading of dynamic styles */
:root {
    --ai-builder-transition: all 0.3s ease;
}

/* Base responsive behavior */
.wp-site-blocks {
    padding: 0;
}

/* Ensure dynamic colors apply properly */
.has-ai-primary-color {
    color: var(--wp--preset--color--ai-primary) !important;
}

.has-ai-primary-background-color {
    background-color: var(--wp--preset--color--ai-primary) !important;
}

.has-ai-secondary-color {
    color: var(--wp--preset--color--ai-secondary) !important;
}

.has-ai-secondary-background-color {
    background-color: var(--wp--preset--color--ai-secondary) !important;
}

/* Dynamic gradient backgrounds */
.has-ai-primary-gradient-background {
    background: var(--wp--preset--gradient--ai-primary-gradient) !important;
}

/* Smooth transitions for dynamic changes */
* {
    transition: var(--ai-builder-transition);
}

/* Ensure proper hero section styling */
.wp-block-cover {
    min-height: 60vh;
}

/* Professional button styling */
.wp-block-button__link {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--ai-builder-transition);
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Professional navigation */
.wp-block-navigation {
    font-weight: 500;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .wp-block-cover {
        min-height: 50vh;
    }
    
    .wp-block-button__link {
        padding: 10px 20px;
        font-size: 14px;
    }
}
