/*
Theme Name: CI Landingpage
Theme URI: https://daily-marketing.de
Description: Minimales Landing-Page-Theme mit CI-Injection aus Kundenprofil. Farben, Fonts und Design-Elemente werden per wp_options gesteuert und als CSS Custom Properties injiziert.
Version: 1.0.0
Author: Daily Marketing
Author URI: https://daily-marketing.de
License: Proprietary
Text Domain: ci-landingpage
Requires at least: 6.0
Requires PHP: 8.0
*/

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--ci-font-body, 'Inter'), -apple-system, sans-serif;
    color: var(--ci-text, #334155);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ci-font-heading, 'Space Grotesk'), -apple-system, sans-serif;
    color: var(--ci-dark, #0F172A);
    line-height: 1.15;
    margin-top: 0;
}
p { margin-top: 0; }
