/*
Theme Name: HosterVox Business Patched
Theme URI: https://hostervox.com/
Author: OpenAI
Description: HosterVox business theme with logo support and editable page images in the Customizer.
Version: 1.2
Text Domain: hostervox-business
*/

:root {
  --primary: #123c73;
  --secondary: #1d2939;
  --accent: #0ea5e9;
  --bg: #f8fafc;
  --text: #111827;
  --muted: #475467;
  --white: #ffffff;
  --border: #e5e7eb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(6px); }
.topbar { font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--border); }
.topbar-inner, .header-inner { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:10px 0; }
.branding a { color: var(--secondary); font-size: 28px; font-weight: 700; }
.branding .site-title { color: var(--secondary); font-size: 28px; font-weight: 700; }
.site-logo img { max-height: 64px; width: auto; }
.custom-logo-link { display: inline-block; line-height: 0; }
.branding small { display:block; color: var(--muted); font-size: 12px; }
.main-nav ul { list-style:none; margin:0; padding:0; display:flex; gap:22px; align-items:center; }
.main-nav a { color: var(--secondary); font-weight:600; }
.btn, button, input[type=submit] {
  display:inline-block; background: var(--primary); color: var(--white); border:none; border-radius: 10px;
  padding: 12px 18px; font-weight:700; cursor:pointer; text-decoration:none;
}
.btn.secondary { background: transparent; color: var(--primary); border:1px solid var(--primary); }
.hero { background: linear-gradient(135deg, #eff6ff, #ffffff 55%); padding: 72px 0; }
.hero-grid, .two-col { display:grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items:center; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; font-size: 13px; }
.hero h1, .page-hero h1 { font-size: clamp(34px, 5vw, 56px); line-height:1.05; margin: 10px 0 16px; color: var(--secondary); }
.hero p.lead, .page-hero p.lead { font-size: 18px; color: var(--muted); margin-bottom: 20px; }
.section { padding: 72px 0; }
.section.alt { background: var(--bg); }
.section h2 { font-size: clamp(28px, 4vw, 40px); line-height:1.1; margin: 10px 0 16px; color: var(--secondary); }
.section p.section-intro { color: var(--muted); max-width: 720px; }
.grid-4 { display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.card { background: var(--white); border:1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: 0 6px 18px rgba(16,24,40,.05); }
.card h3 { margin-top: 8px; margin-bottom: 10px; color: var(--secondary); }
.icon { width: 54px; height: 54px; border-radius: 14px; background:#e0f2fe; display:flex; align-items:center; justify-content:center; font-size: 24px; }
.checks { list-style:none; padding:0; margin:18px 0 0; }
.checks li { margin-bottom: 10px; padding-left: 28px; position: relative; }
.checks li::before { content:'✓'; position:absolute; left:0; top:0; color: var(--accent); font-weight:700; }
.trustbar { background: var(--secondary); color: var(--white); }
.trust-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 18px 0; }
.trust-item { text-align:center; font-weight:700; }
.page-hero { background: linear-gradient(135deg, #eff6ff, #ffffff 55%); padding: 64px 0 50px; border-bottom:1px solid var(--border); }
.page-content { padding: 56px 0; }
.service-block { display:grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items:center; margin-bottom:40px; }
.service-block:nth-child(even) { grid-template-columns: 1.05fr .95fr; }
.service-block img, .hero img, .two-col img { border-radius: 18px; border:1px solid var(--border); }
.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 30px; }
form.contact-form input, form.contact-form textarea, form.contact-form select {
  width:100%; padding: 13px 14px; border:1px solid var(--border); border-radius: 10px; margin-bottom: 14px; font: inherit;
}
form.contact-form textarea { min-height: 140px; }
.notice { padding: 14px 16px; border-radius: 12px; margin-bottom: 16px; }
.notice.success { background:#ecfdf3; color:#067647; }
.notice.error { background:#fef3f2; color:#b42318; }
.site-footer { background: var(--secondary); color: #d0d5dd; padding: 50px 0 18px; }
.footer-grid { display:grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 24px; }
.site-footer h4 { color: var(--white); margin-top:0; }
.site-footer a { color: #d0d5dd; }
.copyright { border-top: 1px solid rgba(255,255,255,.08); margin-top: 26px; padding-top: 16px; font-size: 14px; }
@media (max-width: 900px) {
  .hero-grid, .two-col, .service-block, .contact-grid, .footer-grid, .grid-4, .grid-3, .trust-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .hero-grid, .two-col, .service-block, .contact-grid, .footer-grid, .grid-4, .grid-3, .trust-grid { grid-template-columns: 1fr; }
  .main-nav ul { flex-wrap: wrap; gap:12px; }
}
