/* Mobile Adjustments (screens under 768px wide) */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  h3 {
    font-size: 18px;
  }
}

/* (Optional) Hide titles in specific places – update or remove if not used */
/*
.home .entry-title,
.page-id-XX .entry-title {
  display: none;
}
*/

/* --- Post / page titles (H1) --- */
.single .entry-title,
.page .entry-title,
.wp-block-post-title,
.entry-title a {
  color: #000000 !important; /* black */
}

/* --- Headings inside post/page content --- */
.entry-content h2,
.wp-block-post-content h2,
.wp-site-blocks .wp-block-heading:is(h2),
.entry-content h2 a {
  color: #0A741E !important; /* your green */
}

.entry-content h3,
.wp-block-post-content h3,
.wp-site-blocks .wp-block-heading:is(h3),
.entry-content h3 a {
  color: #444444 !important; /* optional dark gray */
}

/* If a block has an inline color set, reset it */
h1.has-text-color {
  color: #000000 !important;
}

h2.has-text-color {
  color: #0A741E !important;
}

h3.has-text-color {
  color: #444444 !important;
}

/* Force header background to white */
header, 
header .wp-block-group, 
header .wp-block-group__inner-container {
  background-color: #ffffff !important;
}

/* Override blog post titles from ALL CAPS */
h1.entry-title, 
.single-post h1.entry-title, 
.page-title {
  text-transform: none !important;
}

/* Hide title on Free-Consult only */
.page-id-586 .entry-title,
.page-id-586 .page-title,
.page-id-586 .wp-block-post-title {
  display: none !important;
}

/* Optional: remove any leftover top spacing */
.page-id-586 .entry-header,
.page-id-586 .page-header,
.page-id-586 .content-area > :first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ===== Make It Memorable Newsletter Form Styling ===== */

/* Form background + padding */
.wp-block-jetpack-form {
  background-color: #0a714e !important;
  padding: 30px !important;
  border-radius: 12px;
}

/* Labels and helper text */
.wp-block-jetpack-form label,
.wp-block-jetpack-form p,
.wp-block-jetpack-form .grunion-field-label {
  color: #ffffff !important;
}

/* Input and textarea fields */
.wp-block-jetpack-form input[type="text"],
.wp-block-jetpack-form input[type="email"],
.wp-block-jetpack-form textarea {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  border-radius: 6px;
  padding: 10px !important;
}

/* Placeholder text */
.wp-block-jetpack-form input::placeholder {
  color: #999999 !important;
}

/* Subscribe button (default: white background, black text) */
.wp-block-jetpack-form button,
.wp-block-jetpack-form input[type="submit"] {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 30px;
  padding: 10px 25px !important;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover state: green background, white text */
.wp-block-jetpack-form button:hover,
.wp-block-jetpack-form input[type="submit"]:hover {
  background-color: #0a714e !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}

/* Newsletter page title only */
.page-id-212 .wp-block-post-title,
.page-id-212 .entry-title {
  color: #0a714e !important;
}

/* ===== Newsletter form scoped to Group wrapper ===== */
.newsletter-box {
  background-color: #0a714e !important;
  padding: 30px !important;
  border-radius: 12px;
}

.newsletter-box .wp-block-jetpack-form,
.newsletter-box .wp-block-jetpack-contact-form,
.newsletter-box form.contact-form,
.newsletter-box form.jetpack-contact-form {
  background: transparent !important;
}

.newsletter-box label,
.newsletter-box .grunion-field-label,
.newsletter-box p {
  color: #ffffff !important;
}

.newsletter-box input[type="text"],
.newsletter-box input[type="email"],
.newsletter-box textarea {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  border-radius: 6px !important;
  padding: 10px 12px !important;
  width: 100%;
}

.newsletter-box input::placeholder,
.newsletter-box textarea::placeholder {
  color: #999999 !important;
}

.newsletter-box input[type="submit"],
.newsletter-box button[type="submit"],
.newsletter-box .wp-block-button__link {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 12px 26px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  display: inline-block;
}

.newsletter-box input[type="submit"]:hover,
.newsletter-box button[type="submit"]:hover,
.newsletter-box .wp-block-button__link:hover {
  background-color: #0a714e !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}

/* Default newsletter button style */
.mim-newsletter input[type="submit"],
.mim-newsletter button[type="submit"],
.mim-newsletter .wp-block-button__link {
  background: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #0a714e !important;
  border-radius: 30px !important;
  padding: 12px 26px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  transition: all .2s ease;
}

.mim-newsletter input[type="submit"]:hover,
.mim-newsletter button[type="submit"]:hover,
.mim-newsletter .wp-block-button__link:hover,
.mim-newsletter input[type="submit"]:focus-visible,
.mim-newsletter button[type="submit"]:focus-visible,
.mim-newsletter .wp-block-button__link:focus-visible {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #0a714e !important;
  box-shadow: 0 0 0 3px rgba(196,235,221,.6) !important;
}

/* Enlarge blog title on single-post pages */
.single-post .entry-title,
.single .entry-title,
.single-post h1.entry-title,
.single-post .wp-block-post-title {
  font-size: clamp(2.1rem, 3.5vw, 3.25rem);
  line-height: 1.15;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.6em;
}

/* Keep archive/blog list titles green */
.blog .entry-title a,
.archive .entry-title a,
.blog .wp-block-post-title a,
.archive .wp-block-post-title a {
  color: #0a714e;
}

/* 1) Force the WordPress page title at the top ("SERVICES") to BLACK */
.page .entry-header .entry-title,
.page h1.entry-title,
.page .page-title,
body.page h1.wp-block-post-title,
body.page .wp-block-post-title {
  color: #000 !important;
}

/* 2) Force the big in-content headline ("Marketing & Social Media Services") to GREEN */
.page .entry-content #services-main,
body.page #services-main,
#services-main {
  color: #0a714e !important;
}

/* Core services grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(10, 113, 78, 0.06);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #0a714e; /* dark green */
}

.card p {
  margin: 0;
}

/* Starter package block */
.block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px 20px;
  box-shadow: 0 2px 10px rgba(10, 113, 78, 0.06);
  margin-top: 16px;
}

/* Pricing grid */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.tier {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(10, 113, 78, 0.06);
}

.tier h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #0a714e;
}

/* Notes, price + muted text */
.note {
  font-size: 0.9rem;
  color: #666666;
}

.price {
  font-weight: 600;
}

.muted {
  color: #777777;
  font-size: 0.95rem;
}

/* Divider spacing */
.divider {
  height: 24px;
}

/* CTA buttons */
.cta-wrap {
  text-align: center;
  margin-top: 24px;
}

.cta-wrap .btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: #0a714e;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  margin: 4px 6px;
}

.cta-wrap .btn:hover {
  opacity: 0.9;
}

.cta-wrap .btn.alt {
  background: transparent;
  border: 1px solid #0a714e;
  color: #0a714e;
}

/* Fix for Watch & Learn YouTube embeds (extra safety) */
.wp-block-embed,
.wp-block-embed__wrapper,
.wp-block-embed iframe {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 100% !important;
  max-height: 1000px !important;
}
/* Equalize column heights on Watch & Learn video rows */
.page-id-823 .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.page-id-823 .wp-block-column > * {
    margin-bottom: 12px;
}

.page-id-823 .wp-block-separator {
    margin-top: auto;
}
/* Forest Friends / Hazel & Hawk section styles */
/* === Forest Friends / Hazel & Hawk section styles (FINAL CLEAN VERSION) === */

.hh-series {
  border: 2px solid #c4ebdd;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  margin: 2rem 0;
  background: #f9fbfa;
}

/* Badge + headings */
.hh-series-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: #c4ebdd;
  color: #0a714e;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hh-series h2 {
  margin: 0 0 0.25rem;
  color: #0a714e;
}

.hh-series-subtitle {
  margin: 0 0 1rem;
  color: #555;
  font-style: italic;
}

/* === IMAGE GRID (cover + interior page) === */
.hh-series-grid {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hh-series-cover img,
.hh-series-inside img {
  max-width: 260px !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.08);
  display: block;
  margin: 0 auto;
}

/* Desktop: two images side-by-side */
@media (min-width: 900px) {
  .hh-series-grid {
    grid-template-columns: 260px 260px !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
}

/* TEXT below images */
.hh-series-main p {
  margin: 0 0 0.75rem;
}

.hh-highlight {
  font-weight: 600;
}

.hh-bullets {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.2rem;
}

.hh-bullets li {
  margin-bottom: 0.35rem;
}

/* === BUY BUTTONS === */
.hh-buttons {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.5rem;
  align-items: center;
}

.hh-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.5rem 1.3rem !important;
  min-height: 42px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  border: 2px solid transparent !important;
  text-align: center !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
}

.hh-btn-primary {
  background: #0a714e !important;
  color: #ffffff !important;
  border-color: #0a714e !important;
}

.hh-btn-primary:hover {
  background: #08563b !important;
  border-color: #08563b !important;
}

.hh-btn-outline {
  background: transparent !important;
  color: #0a714e !important;
  border-color: #0a714e !important;
}

.hh-btn-outline:hover {
  background: #e5f7f0 !important;
}

/* === KINDLE PREVIEW BOX === */
.hh-kindle-preview {
  margin-top: 1.25rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e3f2ec;
  max-width: 480px;
}

.hh-kindle-preview img {
  width: 100% !important;
  height: auto !important;
  border-radius: 10px;
  box-shadow: 0 8px 14px rgba(0,0,0,0.08);
  margin: 0.5rem 0 0.6rem;
}

.hh-kindle-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #0a714e;
}

/* === SERIES FOOTER === */
.hh-series-footer {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e3f2ec;
  font-size: 0.9rem;
  color: #555;
}

.hh-series-books-grid {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hh-series-books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.hh-book-card {
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: #ffffff;
  border: 1px solid #e3f2ec;
}

.hh-book-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: #0a714e;
}

.hh-book-tagline {
  font-size: 0.9rem;
  margin: 0 0 0.4rem;
  color: #666;
}

.hh-book-meta {
  font-size: 0.8rem;
  color: #777;
}
/* Add space below Kindle preview box */
.hh-kindle-preview {
    margin-bottom: 1.5rem; /* increase this if you want even more space */
}

/* Make It Memorable — Contact Page Hero Glow Frame */
.mim-contact-hero {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  border-radius: 22px;
  overflow: hidden;

  /* ✨ Golden Firefly Glow — matches Clarity Catcher™ aesthetic */
  box-shadow:
    0 0 0 12px rgba(255, 223, 100, 0.80),   /* warm yellow-gold border glow */
    0 15px 50px rgba(255, 223, 100, 0.30);  /* soft glowing halo */
}

.mim-contact-hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* Blog index intro box */
.blog-intro-box {
    max-width: 780px;      /* controls how wide the box can be */
    margin: 0 auto 3rem;   /* center it + add space below */
    box-sizing: border-box;
}

/* Optional: tighten it a bit on small screens */
@media (max-width: 768px) {
    .blog-intro-box {
        max-width: 100%;
        margin: 0 1.5rem 2.5rem;
    }

h1.hidden-h1 {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}