/* shell.css — shared header(mobile)+footer, homepage is source of truth.
   Loaded LAST on inner pages so it overrides the Astra theme CSS. */

/* ===== Footer (copyright bar) ===== */
/* ============================================================
   Footer copyright bar
   ============================================================ */
.site-footer {
  margin: 0;
  padding: 0;
}
.site-below-footer-wrap {
  background: #002d74;
  padding: 20px 40px;
}
.ast-builder-footer-grid-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.site-footer-below-section-1,
.site-footer-below-section-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ast-footer-copyright p {
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  margin: 0;
  text-align: center;
}


/* ===== Mobile header ===== */

/* ============================================================
   MOBILE HEADER
   ============================================================ */
#ast-mobile-header {
  display: none;
  background: #002d74;
}

/* Mobile header — two rows, matching the live site:
   Row 1: logo (left) + Call/Text phone numbers (right)
   Row 2: REQUEST A QUOTE button (left) + hamburger (right)
   Keep the outer wrapper a plain block so a stray flex rule can't
   make a child overflow the viewport horizontally. */
#ast-mobile-header > .ast-main-header-wrap {
  display: block;
  padding: 0;
}
#ast-mobile-header .ast-container {
  padding: 10px 16px 12px;
}

/* Row 1: logo + phone */
.ast-mobile-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.site-branding-mobile {
  display: inline-block;
  line-height: 0;
}
.site-branding-mobile img {
  width: 240px;
  max-width: 58vw;
  height: auto;
  display: block;
}
.ast-mobile-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.35;
  gap: 6px;
}
.ast-mobile-phone a {
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  padding: 5px 4px;
  min-height: 24px;
  box-sizing: border-box;
}
.ast-mobile-phone a:hover { color: #7fbc42; }

/* Row 2: quote button + hamburger */
.ast-mobile-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.ast-mobile-quote-btn {
  display: inline-block;
  background: #46711b;
  color: #ffffff !important;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 11px 12px;
  text-decoration: none !important;
  white-space: nowrap;
}
/* Hide the screen-reader-only "Main Menu" label (was showing as text) */
#ast-mobile-header .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ast-menu-toggle {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.ast-svg-iconset svg { display: block; }
/* Show only hamburger icon (first span), hide X by default */
.ast-menu-toggle .ast-svg-iconset:first-child { display: inline-flex; }
.ast-menu-toggle .ast-svg-iconset:last-child { display: none; }

/* base body font (was provided by Astra theme CSS, now removed on inner pages) */
html, body { margin: 0; padding: 0; }
body { font-family: 'Raleway', sans-serif; }
