/*
Theme Name: ANB Theme
Theme URI: https://anbodaco.com
Description: Custom theme for A N Boda & Co. Chartered Accountants — exact port of the Astro static site with full animations and Web3Forms contact.
Version: 1.0.0
Author: A N Boda & Co.
*/

/* ── Brand logo sizing (matches the previous mark) ── */
.site-logo { height: 2.5rem; width: auto; display: block; }    /* 40px — header */
.site-logo--footer { height: 2rem; }                           /* 32px — footer */

/* ── WordPress admin bar offset (when logged in) ── */
body.admin-bar header.sticky { top: 32px; }
body.admin-bar { scroll-padding-top: calc(5rem + 32px); }

/* ──────────────────────────────────────────────────────────────
   Post / blog content styling (.prose)
   The compiled site.css ships Tailwind's reset but not the
   Typography plugin, so default margins/bullets are stripped.
   These rules restore readable article formatting.
   ────────────────────────────────────────────────────────────── */
.prose {
  color: #334155;            /* slate-700 */
  font-size: 1.125rem;
  line-height: 1.8;
}
.prose > * + * { margin-top: 1.25em; }

.prose p { margin: 0 0 1.25em; }
.prose p:last-child { margin-bottom: 0; }

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: #0a1f44;            /* navy */
  font-weight: 700;
  line-height: 1.25;
  margin: 2em 0 0.75em;
}
.prose h2 { font-size: 1.6rem; }
.prose h3 { font-size: 1.3rem; }
.prose h4 { font-size: 1.1rem; }
.prose > :first-child { margin-top: 0; }

.prose ul,
.prose ol {
  margin: 0 0 1.25em;
  padding-left: 1.6em;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin: 0.4em 0; padding-left: 0.25em; }
.prose li::marker { color: #f4a93c; }   /* saffron bullets */

.prose a {
  color: #0a1f44;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: #f4a93c; }

.prose strong { color: #0a1f44; font-weight: 700; }

.prose blockquote {
  border-left: 4px solid #f4a93c;
  margin: 1.5em 0;
  padding: 0.25em 0 0.25em 1.25em;
  color: #475569;
  font-style: italic;
}

.prose hr {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 2.5em 0;
}

.prose img {
  border-radius: 0.75rem;
  margin: 1.5em 0;
}

.prose code {
  background: #f1f5f9;
  padding: 0.15em 0.4em;
  border-radius: 0.3rem;
  font-size: 0.9em;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.prose th,
.prose td {
  border: 1px solid #e2e8f0;
  padding: 0.6em 0.8em;
  text-align: left;
}
.prose th { background: #f8fafc; color: #0a1f44; }

/* ── Industries We Serve — icon circles ── */
.industry-icon {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0a1f44;
  color: #ffffff;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.industry-icon:hover {
  background-color: #ffffff;
  color: #0a1f44;
  box-shadow: 0 6px 24px rgba(10, 31, 68, 0.22), 0 2px 8px rgba(10, 31, 68, 0.12);
  transform: translateY(-3px);
}
