/*
Theme Name: KoeHub Theme
Theme URI: https://github.com/koehub/koehub-gitops
Author: KoeHub
Description: KoeHub GitOps - WordPress theme with static HTML and Bricks support
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: MIT
Text Domain: ai-theme

This theme is designed to work with the ai-sync mu-plugin for GitOps-based
content management. It supports two content modes:
- Static HTML: Pre-built HTML pages rendered as-is
- Bricks: Bricks Builder JSON imported and editable

DSGVO/GDPR: Strict-by-default, no external resources loaded.
*/

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* WordPress Core Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* AI Static Page Container */
.ai-static-content {
    width: 100%;
}

/* Error States */
.ai-error {
    padding: 2rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    margin: 2rem;
}

.ai-error h2 {
    color: #856404;
    margin-top: 0;
}

.ai-error p {
    color: #856404;
    margin-bottom: 0;
}
