/*
 Theme Name:   SEO Hired Gun Child
 Theme URI:    https://seogunslinger.com
 Description:  SEO Hired Gun Child Theme for store.seogunslinger.com
 Author:       Hermes Agent
 Author URI:   https://hermes.example.com
 Template:     twentytwentyfive
 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(--body-text);
    color: var(--body-text);
}

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

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

/* Site Title - twentytwentyfive uses .wp-block-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 - twentytwentyfive uses .wp-block-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 - twentytwentyfive uses .wp-block-button__link, .button, etc. */
.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; /* twentytwentyfive may have radius, we override */
}
.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 - twentytwentyfive may use .wp-block-template-part for footer? We'll target the footer element */
footer,
.wp-block-template-part[style*="background-color: var(--wp--preset--color--background)"] /* fallback */,
.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 - if active */
.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 (e.g., "Best Seller") - target .onsale, .badge, .wp-block-[name]* */
.badge,
.onsale,
.wp-block-[name*="badge"] {
    background-color: var(--accent);
    color: var(--primary);
    font-family: 'Bangers', cursive;
}

/* Content Cards - target .wp-block-group, .wp-block-post-template, etc. */
.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;
}

/* Dust texture overlay (optional - can be applied via body::before if needed) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%232C3E50"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23FFFFFF" stroke-width="1" opacity="0.05"/></svg>');
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}
