/*
Theme Name: BT Servant
Theme URI: https://btservant.example
Author: BT Servant Team
Author URI: https://btservant.example
Description: A custom WordPress theme for BT Servant — an AI-powered Bible translation assistant. Built on the BT Servant brand palette (deep black, cream, taupe, gold) with Playfair Display and Inter typography.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bt-servant
Tags: one-column, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*
 * Primary stylesheet is loaded from assets/css/main.css via functions.php.
 * This file exists to provide the WordPress theme header and basic resets.
 */

:root {
    --bt-black: #1F1F1F;
    --bt-cream: #EDECE8;
    --bt-taupe: #857C6F;
    --bt-gold: #B29159;
    --bt-white: #FFFFFF;
    --bt-border: #E2DFD9;
    --bt-muted: #6E6B66;
    --font-heading: 'Playfair Display', 'Lora', Georgia, serif;
    --font-body: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--bt-black);
    background: var(--bt-cream);
    -webkit-font-smoothing: antialiased;
}
