/*
Theme Name:   SEO Hired Gun
Theme URI:    https://hermes.example.com
Author:       Hermes
Author URI:   https://hermes.example.com
Template:     twentytwentyfive
Description:  SEO Hired Gun - A custom child theme for SEO agencies with a rugged, professional aesthetic. Features dark slate-blue and rust orange branding, custom fonts, and optimized for SEO service websites.
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
Text Domain:  seogunslinger-child
*/

/* ===== SEO Hired Gun Branding Colors ===== */
:root {
    --primary: #2C3E50;      /* Dark slate-blue */
    --secondary: #E67E22;    /* Vibrant orange-rust */
    --accent: #F1C40F;       /* Warm gold */
    --body-text: #ECF0F1;   /* Almost-white */
    --heading-text: #FFFFFF; /* Pure white */
    --content-card: #34495E; /* Lighter slate */
}

/* Apply branding colors to elements */
body {
    background-color: var(--primary);
    color: var(--body-text);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-text);
}

/* Links */
a {
    color: var(--accent);
}
a:hover {
    color: var(--secondary);
}

/* Site Title */
.wp-block-site-title a {
    color: var(--accent);
    font-family: 'Fredericka the Great', cursive;
}
.wp-block-site-title a:hover {
    color: var(--secondary);
}

/* Navigation */
.wp-block-navigation {
    background-color: var(--secondary);
}
.wp-block-navigation a {
    color: var(--body-text);
}
.wp-block-navigation a:hover {
    color: var(--accent);
}

/* Buttons */
.wp-block-button__link,
.button,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    background-color: var(--secondary);
    color: var(--body-text);
    border: none;
    border-radius: 0;
}
.wp-block-button__link:hover,
.button:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Site Footer */
footer,
.wp-block-template-part,
.site-footer {
    background-color: var(--primary);
}
footer .wp-block-site-title a,
.wp-block-template-part .wp-block-site-title a,
.site-footer .wp-block-site-title a {
    color: var(--body-text);
}

/* WooCommerce specific */
.woocommerce ul.products li.product .price {
    color: var(--accent);
    font-weight: bold;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .wp-block-button__link {
    background-color: var(--secondary);
    color: var(--body-text);
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .wp-block-button__link:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Badges / Labels */
.badge,
.onsale {
    background-color: var(--accent);
    color: var(--primary);
    font-family: 'Bangers', cursive;
}

/* Content Cards */
.wp-block-group,
.wp-block-post-template,
.wp-block-page {
    background-color: var(--content-card);
    border: 1px solid var(--primary);
    padding: 1rem;
    margin-bottom: 1.5rem;
}
