/*
Theme Name: Pipeline Theme
Theme URI: https://github.com/AnshiLeFlay/seo_ai_platform
Description: Shell theme for pipeline-generated WordPress sites. The actual styling comes from the generator (Tailwind CDN + designSystem palette, injected via theme/head.html). This file only carries the WordPress theme header and minimal layout rules — the body class string is pinned by deploy-server from designSystem.mode.
Author: SEO AI Platform
Version: 1.0.0
License: MIT
Text Domain: pipeline-theme
*/

html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body { margin: 0; }
img { max-width: 100%; height: auto; display: block; }

/* Header/footer chrome — minimal, theme-agnostic. designSystem.palette
   colors are wired via Tailwind classes injected into wp_head by the
   generator. */
.pt-site-header,
.pt-site-footer { padding: 1rem; }
.pt-site-header .pt-nav,
.pt-site-footer .pt-nav { display: flex; gap: 1rem; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.pt-site-header .pt-nav a,
.pt-site-footer .pt-nav a { text-decoration: none; opacity: 0.9; }
.pt-site-header .pt-nav a:hover,
.pt-site-footer .pt-nav a:hover { opacity: 1; }
