/* ── V2 Page Overrides ──
   Styles GP inner pages to match V2 homepage design.
   Loaded site-wide alongside v2.css.                  */

/* ---- BASE RESETS FOR GP PAGES ---- */
.site.grid-container {
  max-width: 100%;
  padding: 0;
}
.content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.inside-article {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}
.separate-containers .inside-article {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.entry-content {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800, #1e293b);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- HEADINGS ---- */
.entry-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--gray-900, #0f172a);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.entry-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900, #0f172a);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-top: 48px;
  margin-bottom: 16px;
}
.entry-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900, #0f172a);
  line-height: 1.3;
  margin-top: 36px;
  margin-bottom: 12px;
}

/* ---- PARAGRAPHS ---- */
.entry-content p {
  font-size: 16px;
  color: var(--gray-500, #64748b);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ---- LINKS ---- */
.entry-content a:not(.wp-block-button__link):not(.btn) {
  color: var(--blue, #2563eb);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.entry-content a:not(.wp-block-button__link):not(.btn):hover {
  color: var(--blue-dark, #1d4ed8);
}

/* ---- WP BUTTONS → V2 STYLE ---- */
.entry-content .wp-block-button__link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 9999px;
  background: var(--blue, #2563eb);
  color: #fff;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}
.entry-content .wp-block-button__link:hover {
  background: var(--blue-dark, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
  color: #fff;
}

/* ---- LISTS ---- */
.entry-content ul,
.entry-content ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px;
}
.entry-content ul li,
.entry-content ol li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: var(--gray-600, #475569);
  border-bottom: 1px solid var(--gray-100, #f1f5f9);
}
.entry-content ul li:last-child,
.entry-content ol li:last-child {
  border-bottom: none;
}
.entry-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--blue, #2563eb);
  border-radius: 50%;
}
.entry-content ul li a,
.entry-content ol li a {
  font-weight: 600;
}

/* ---- GB CONTAINERS (form wrappers etc.) ---- */
.entry-content .gb-container {
  background: var(--gray-50, #f8fafc);
  border: 1px solid var(--gray-100, #f1f5f9);
  border-radius: 16px;
  padding: 40px;
  margin: 32px 0;
}

/* ---- JOTFORM IFRAME ---- */
.entry-content iframe[src*="jotform"] {
  border-radius: 12px;
}

/* ---- PAGE HEADER (if GP outputs one) ---- */
.page-header {
  display: none;
}

/* ---- SPACERS — tighten up ---- */
.entry-content .wp-block-spacer {
  height: 16px !important;
}

/* ---- CENTERED TEXT REFINEMENT ---- */
.entry-content .has-text-align-center {
  text-align: center;
}
.entry-content p.has-text-align-center em {
  font-size: 15px;
  color: var(--gray-400, #94a3b8);
}

/* ---- CONTACT PAGE ---- */
.page-id-119 .entry-content .gb-headline-text,
.page-id-119 .entry-content h1.gb-headline-text {
  font-size: 44px;
  font-weight: 800;
  color: var(--gray-900, #0f172a);
  letter-spacing: -0.5px;
  text-align: center;
}
.page-id-119 .entry-content h1 mark {
  background: none !important;
  color: var(--blue, #2563eb) !important;
}
.page-id-119 .entry-content h2.gb-headline-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900, #0f172a);
  text-align: center;
  margin-top: 48px;
}
/* Contact tiles — 3-tile layout */
.contact-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.contact-tile {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.contact-tile strong {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 4px;
}
.contact-tile a {
  color: #2563eb !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}
.contact-tile a:hover {
  color: #1d4ed8 !important;
}
.contact-tile span {
  font-size: 15px;
  color: #64748b;
}
.contact-tile-full {
  grid-column: 1 / -1;
}
.contact-divider {
  width: 60px !important;
  height: 1px;
  background: #e2e8f0;
  margin: 8px 0;
}
@media (max-width: 600px) {
  .contact-tiles {
    grid-template-columns: 1fr;
  }
  .contact-tile-full {
    flex-direction: column;
    align-items: center;
  }
  .contact-divider {
    width: 80% !important;
    height: 1px;
    margin: 12px 0;
  }
}
/* Store photo and video */
.page-id-119 .entry-content .gb-block-image img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.page-id-119 .entry-content [style*="padding:56.25%"] {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* Separator */
.page-id-119 .entry-content hr.wp-block-separator {
  border: none;
  border-top: 1px solid var(--gray-100, #f1f5f9);
  margin: 48px 0;
}
/* Google reviews */
.page-id-119 .entry-content .gb-container {
  background: var(--white, #ffffff);
  border: 1px solid var(--gray-100, #f1f5f9);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .content-area {
    padding: 48px 20px 72px;
  }
  .entry-content h1 {
    font-size: 32px;
  }
  .entry-content h2 {
    font-size: 26px;
  }
  .entry-content .gb-container {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .entry-content h1 {
    font-size: 28px;
  }
  .entry-content .wp-block-button__link {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
  }
}
