/*
Theme Name: AWH & Brothers Enterprise
Theme URI: https://awhenterprise.com/
Author: AWH & Brothers Enterprise
Author URI: https://awhenterprise.com/
Description: A clean, fast, business-focused WordPress theme built for AWH & Brothers Enterprise. Includes a Products custom post type, hero section, services grid, and contact CTA.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: awhenterprise
Tags: custom-logo, custom-menu, featured-images, blog, one-column, two-columns, footer-widgets
*/
@charset "UTF-8";

/* Base reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #f9fafb;
}
a { color: #0ea5e9; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.site-header { background: #ffffff; border-bottom: 1px solid #e5e7eb; position: sticky; top:0; z-index: 50; }
.site-header .inner { display:flex; align-items:center; justify-content:space-between; height:72px; }
.brand { display:flex; align-items:center; gap: 12px; }
.brand .site-title { font-weight: 700; font-size: 1.25rem; color:#111827; }
.nav { display:flex; gap: 20px; }
.nav a { color:#111827; font-weight:500; }
.nav a:hover { color:#0ea5e9; }

/* Buttons */
.btn { display:inline-block; padding: 10px 18px; border-radius: 999px; border: 1px solid #0ea5e9; }
.btn-primary { background:#0ea5e9; color:white; border-color:#0ea5e9; }
.btn-primary:hover { filter: brightness(0.95); text-decoration:none; }
.btn-outline { background:transparent; color:#0ea5e9; }
.btn-outline:hover { background:#e0f2fe; text-decoration:none; }

/* Hero */
.hero { background: linear-gradient(180deg, #e0f2fe 0%, #ffffff 70%); padding: 64px 0; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 12px; color:#0b132b; }
.hero p { font-size: 1.125rem; color:#334155; max-width: 740px; }
.hero .cta { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
.section { padding: 56px 0; }
.section h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 16px; }
.section .sub { color:#64748b; margin-bottom: 28px; }

.grid { display:grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background:#fff; border:1px solid #e5e7eb; border-radius: 16px; padding: 18px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.card h3 { margin: 8px 0; font-size: 1.125rem; }
.badge { display:inline-block; font-size: 12px; padding: 3px 8px; border-radius: 999px; background:#e0f2fe; color:#0369a1; }

/* Footer */
.site-footer { background:#0b132b; color:#cbd5e1; margin-top:40px; }
.site-footer a { color:#93c5fd; }
.footer-widgets { display:grid; gap:20px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); padding: 32px 0; }
.footer-bottom { border-top:1px solid #1f2937; padding: 16px 0; color:#94a3b8; font-size: 0.875rem; }

/* Blog / Content */
.post-meta { color:#64748b; font-size: 0.875rem; }
.content { background:#fff; border:1px solid #e5e7eb; border-radius: 16px; padding: 24px; }
.wp-block-image img { border-radius: 12px; }
.alignwide { max-width: 1100px; margin: 0 auto; }

/* Products */
.product-grid { display:grid; gap:20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.product { background:#fff; border:1px solid #e5e7eb; border-radius: 16px; overflow:hidden; display:flex; flex-direction:column; }
.product .body { padding:14px; display:flex; flex-direction:column; gap:8px; }
.product .price { font-weight:700; color:#0b132b; }
.taxonomy-pill { display:inline-block; padding:4px 10px; border-radius:999px; background:#f1f5f9; color:#0b132b; font-size:12px; }

/* Forms */
input, textarea, select { width:100%; padding:10px; border:1px solid #d1d5db; border-radius:10px; font: inherit; }
label { font-weight:600; }
form .row { display:grid; gap:14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
*/