/* Iron Shore Roofing brand re-skin overrides */
:root {
  --color-primary: #1a5fd4;
  --color-primary-dark: #124294;
  --color-primary-light: #3b7ef5;
  --color-accent: #1a5fd4;
  --color-accent-dark: #124294;
  --color-accent-light: #3b7ef5;
  --color-bg: #07090f;
  --color-bg-alt: #0c0f18;
  --color-surface: #111827;
  --color-surface-light: #192236;
  --color-surface-border: rgba(255,255,255,0.07);
  --color-text: #ffffff;
  --color-text-muted: #8998ad;
  --color-text-dim: #3e4f65;
  --font-body: "Open Sans", sans-serif;
}

body, p, span, li, a, input, select, textarea, button {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 900 !important;
}

/* Manufacturer brand wordmarks in the "Products We Install" section.
   Verified against the pre-redesign site's own backup: the old site never
   used logo image files here -- each brand name was set in large bold
   Barlow Condensed text, colored in that brand's own signature color
   (GAF red, CertainTeed blue italic, etc.), with a small brand-blue accent
   tick underneath. Restoring that exact typographic treatment instead of
   pasted-in logo image files. Brand-specific colors are applied inline by
   mobile-cta.js (initProductLogos). Applies on desktop and mobile. */
.product-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: none;
  color: #fff;
  display: inline-block;
  margin-bottom: 4px;
  padding-bottom: 0;
  border-bottom: none;
}

/* Small brand-blue accent tick beneath the wordmark -- this is the site's
   own blue mixed in with each product's brand color above it, matching the
   old site's .mat-line treatment (a short 40x3px bar, not a full-width
   underline dragging under the whole word). */
.product-brand::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary, #1a5fd4);
  margin-top: 8px;
  margin-bottom: 14px;
}

/* Free Estimate CTA buttons -- old site used a distinct orange (#e05c1a)
   for these specifically (hero CTA + form submit), while nav/outline
   buttons stayed brand blue. The current build unified everything under
   .btn-primary, so this now applies to all filled Free Estimate buttons,
   matching the old site's most prominent CTA color. Desktop + mobile. */
.btn-primary,
#ish-mobile-cta-bar .ish-cta-quote {
  background: #e05c1a !important;
}

.btn-primary:hover {
  background: #c94f16 !important;
}
