/**
* Theme Name:        avanam-ciramica
* Theme URI:         https://templatemela.com/
* Template:          avanam
* Author:            TemplateMela
* Author URI:        #
* Description:       This is a child theme of Avanam, generated by TemplateMela.
* Version:           1.0.0
* License:           GNU General Public License v3.0 (or later)
* License URI:       https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain:       avanam-ciramica
* Requires at least: 6.2
* Tested up to:      6.6
* Requires PHP:      7.4
* Tags: translation-ready, two-columns, right-sidebar, left-sidebar, footer-widgets, blog, custom-logo, custom-background, custom-menu, rtl-language-support, editor-style, threaded-comments, custom-colors, featured-images, wide-blocks, full-width-template, theme-options, e-commerce

*/<?php
/*
Plugin Name: WPC Brand Styles
Description: Applies Watt Pottery Collectibles brand styling site-wide (colors, typography, header, hero, buttons, WooCommerce, footer).
Version: 1.0.0
Author: WPC
*/

if (!defined('ABSPATH')) exit;

add_action('wp_enqueue_scripts', function () {
    wp_enqueue_style(
        'wpc-brand-styles',
        plugin_dir_url(__FILE__) . 'brand.css',
        array(),
        '1.0.0'
    );
}, 20);
/* === WPC Brand Styles === */
:root {
  --wpc-apple-red: #B12A2A;
  --wpc-leaf-green: #2E7D32;
  --wpc-bisque: #f7f2ea;
  --wpc-brown: #7A4C2E;
  --wpc-ink: #222;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--wpc-ink);
  font-weight: 600;
  letter-spacing: 0.5px;
}
body, p, li {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--wpc-ink);
  line-height: 1.75;
}

/* HEADER */
.site-header {
  background: var(--wpc-bisque);
  border-bottom: 4px solid var(--wpc-apple-red);
  padding: 10px 0;
}
.site-header .site-title a,
.site-header nav a {
  color: var(--wpc-ink) !important;
  font-weight: 500;
  text-transform: uppercase;
}
.site-header nav a:hover {
  color: var(--wpc-apple-red) !important;
}

/* Kill duplicate menus */
.site-header nav + nav { display:none !important; }
.site-header .wp-block-page-list { display:none !important; }
.header .main-navigation + .main-navigation { display:none !important; }
.elementor-nav-menu--main + .elementor-nav-menu--main { display:none !important; }

/* HERO */
.hero-section {
  background: var(--wpc-bisque);
  padding: 80px 20px;
  text-align: center;
  border-top: 5px solid var(--wpc-apple-red);
  border-bottom: 5px solid var(--wpc-leaf-green);
}
.hero-section h1 {
  font-size: 44px;
  color: var(--wpc-ink);
}
.hero-section p {
  font-size: 18px;
  margin: 10px auto 20px;
  max-width: 600px;
}
.hero-section .button,
.hero-section .elementor-button,
.hero-section a.button {
  background: var(--wpc-apple-red);
  color: #fff !important;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 600;
}
.hero-section .button:hover,
.hero-section .elementor-button:hover,
.hero-section a.button:hover {
  background: var(--wpc-leaf-green);
}

/* BUTTONS */
button, .button, .woocommerce a.button, .elementor-button {
  background-color: var(--wpc-apple-red);
  border-radius: 6px;
  color: #fff !important;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}
button:hover, .button:hover, .woocommerce a.button:hover, .elementor-button:hover {
  background-color: var(--wpc-leaf-green);
  color: #fff !important;
}

/* LINKS */
a { color: var(--wpc-apple-red); text-decoration: none; }
a:hover { color: var(--wpc-leaf-green); }

/* WOOCOMMERCE GRID */
.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.woocommerce ul.products li.product:hover {
  transform: scale(1.02);
  border-color: var(--wpc-apple-red);
}
.woocommerce ul.products li.product .price {
  color: var(--wpc-leaf-green);
  font-weight: bold;
}

/* FOOTER */
.site-footer {
  background: var(--wpc-brown);
  color: #fff;
  padding: 30px 0;
}
.site-footer a { color: #fff !important; }
.site-footer a:hover { color: var(--wpc-bisque) !important; }
/* === Watt Pottery Collectibles Brand Colors === */
:root {
  --wpc-apple-red: #B12A2A;
  --wpc-leaf-green: #2E7D32;
  --wpc-bisque: #f7f2ea;
  --wpc-brown: #7A4C2E;
  --wpc-ink: #222;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
  color: var(--wpc-ink);
}

/* Links */
a {
  color: var(--wpc-apple-red);
}
a:hover {
  color: var(--wpc-leaf-green);
}

/* Buttons */
button, .button, .woocommerce a.button, .elementor-button {
  background-color: var(--wpc-apple-red);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
button:hover, .button:hover, .woocommerce a.button:hover, .elementor-button:hover {
  background-color: var(--wpc-leaf-green);
  color: #fff !important;
}

/* Header background */
.site-header {
  background: var(--wpc-bisque);
  border-bottom: 4px solid var(--wpc-apple-red);
}

/* Footer */
.site-footer {
  background: var(--wpc-brown);
  color: #fff;
}
.site-footer a {
  color: #fff !important;
}
.site-footer a:hover {
  color: var(--wpc-bisque) !important;
}
