# CoventryTax Child Theme

Below are the two files you need for a proper Blocksy child theme (no `@import`; styles are enqueued the modern way). Copy the contents exactly.

---

## `style.css`
```css
/*
Theme Name: CoventryTax Child
Theme URI: https://coventrytax.com
Description: Blocksy child theme for Coventry Tax branding.
Author: Daniel Tarkeshian / One Coventry LLC
Author URI: https://onecoventry.com
Template: blocksy
Version: 1.0.0
Text Domain: coventrytax-child
*/

/* --- Coventry Tax base tokens --- */
:root{
  --ct-black:#0b0b0b;
  --ct-gray:#6b7280;
  --ct-accent:#111111;
}

body{ font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }

/* Header */
header.site-header{ background:var(--ct-black); color:#fff; border-bottom:1px solid #111; }
.site-title a{ color:#fff !important; letter-spacing: .08em; text-transform: uppercase; font-weight:600; }

/* Buttons */
button, .button, input[type=submit]{ background:var(--ct-accent); color:#fff; border-radius:4px; padding:.7rem 1.2rem; transition:.2s ease; }
button:hover, .button:hover, input[type=submit]:hover{ filter:brightness(1.15); }

/* Footer */
footer.site-footer{ background:#000; color:#c9c9c9; }
footer.site-footer a{ color:#c9c9c9; }
footer.site-footer a:hover{ color:#fff; }
```

---

## `functions.php`
```php
<?php
/**
 * CoventryTax Child – core setup
 */
add_action('wp_enqueue_scripts', function(){
    // Load Blocksy parent style first
    $parent = 'blocksy-style';
    $parent_uri = get_template_directory_uri() . '/style.css';
    wp_enqueue_style($parent, $parent_uri, [], wp_get_theme('blocksy')->get('Version'));

    // Child style (this file)
    wp_enqueue_style('coventrytax-child', get_stylesheet_uri(), [$parent], wp_get_theme()->get('Version'));
});

// Optional: add an SVG upload allowance for logo variations
add_filter('upload_mimes', function($m){ $m['svg'] = 'image/svg+xml'; return $m; });
```

---

## (Optional) `screenshot.png`
Create a 1200×900 PNG with your Coventry Tax logo on black/white and place it in the theme folder so it displays in Appearance → Themes.
