/* =========================================
   DANA GAIN — MINIMAL BRAND + FEATURED LAYOUT
   Paste in: Appearance → Customize → Additional CSS
   ========================================== */

/* 0) Load Montserrat for body text only */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');

/* 1) Body copy → Montserrat (headings untouched) */
body,
.entry-content,
p, li, dd, dt, figcaption,
.wp-block-paragraph,
.wp-block-list,
.wp-block-table,
.widget-area,
.comment-content {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  line-height: 1.65;
  font-weight: 400;
  color: #1A1A1A;
}

/* 2) Brand purple for links/accents */
:root{
  --brand-purple:#3B0084;
}
a { color: var(--brand-purple); text-decoration: none; }
a:hover, a:focus { color: #2F0069; text-decoration: underline; }

/* Optional: primary buttons in purple (remove if you don't want this) */
.wp-element-button,
.wp-block-button__link,
button,
input[type="submit"]{
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: #FFFFFF !important;
}
.wp-element-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover{
  background:#2F0069;
  border-color:#2F0069;
}

/* 3) BLOG HOMEPAGE — Featured Article layout
   Makes the FIRST (newest) post large on the left,
   others appear smaller to the right/below.
   These selectors cover common Kadence archive wrappers.
*/

/* Turn the posts loop into a 3-column grid on desktop */
.home.blog .posts-container,
.blog .posts-container,
.home.blog .entry-loop,
.blog .entry-loop,
.home.blog .content-area .site-main .loop-entry-wrap,
.blog .content-area .site-main .loop-entry-wrap {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Make the first post span two columns (the "Featured Article") */
.home.blog .posts-container > article:first-child,
.blog .posts-container > article:first-child,
.home.blog .entry-loop > article:first-child,
.blog .entry-loop > article:first-child,
.home.blog .content-area .site-main .loop-entry-wrap > article:first-child,
.blog .content-area .site-main .loop-entry-wrap > article:first-child {
  grid-column: span 2;
}

/* Larger image for the Featured card */
.home.blog article:first-child .entry-media img,
.blog article:first-child .entry-media img,
.home.blog article:first-child .post-thumbnail img,
.blog article:first-child .post-thumbnail img {
  width: 100%;
  height: 420px;           /* adjust if you want taller/shorter */
  object-fit: cover;
  border-radius: 12px;
}

/* Smaller, consistent images for the non-featured cards */
.home.blog article:not(:first-child) .entry-media img,
.blog article:not(:first-child) .entry-media img,
.home.blog article:not(:first-child) .post-thumbnail img,
.blog article:not(:first-child) .post-thumbnail img {
  width: 100%;
  height: 180px;           /* tidy small cards */
  object-fit: cover;
  border-radius: 10px;
}

/* Tablet: 2 columns; Feature spans full width on first row */
@media (max-width: 1024px){
  .home.blog .posts-container,
  .blog .posts-container,
  .home.blog .entry-loop,
  .blog .entry-loop,
  .home.blog .content-area .site-main .loop-entry-wrap,
  .blog .content-area .site-main .loop-entry-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .home.blog .posts-container > article:first-child,
  .blog .posts-container > article:first-child,
  .home.blog .entry-loop > article:first-child,
  .blog .entry-loop > article:first-child,
  .home.blog .content-area .site-main .loop-entry-wrap > article:first-child,
  .blog .content-area .site-main .loop-entry-wrap > article:first-child {
    grid-column: span 2;   /* full-width feature on tablet */
  }
  .home.blog article:first-child .entry-media img,
  .blog article:first-child .entry-media img,
  .home.blog article:first-child .post-thumbnail img,
  .blog article:first-child .post-thumbnail img {
    height: 320px;
  }
}

/* Mobile: 1 column; Feature scales down */
@media (max-width: 781px){
  .home.blog .posts-container,
  .blog .posts-container,
  .home.blog .entry-loop,
  .blog .entry-loop,
  .home.blog .content-area .site-main .loop-entry-wrap,
  .blog .content-area .site-main .loop-entry-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home.blog article:first-child .entry-media img,
  .blog article:first-child .entry-media img,
  .home.blog article:first-child .post-thumbnail img,
  .blog article:first-child .post-thumbnail img {
    height: 240px;
  }
}/* ================================
   DANA GAIN — HEADER + HOME POLISH
   Paste in: Appearance → Customize → Additional CSS
   ================================= */

/* BRAND COLORS (edit if needed) */
:root{
  --brand-purple: #3B0084;
  --brand-purple-dark: #2F0069;
  --brand-white: #FFFFFF;
  --near-black: #111111;
  --soft-border: #ECECEC;
}

/* 2) HEADER / NAV STYLING (Kadence selectors + safe fallbacks) */
.site-header, .header-main-wrapper { background: var(--brand-white); }
.primary-navigation a,
.header-navigation a,
.header-menu .menu > li > a {
  color: var(--near-black);
  text-decoration: none;
}
.primary-navigation a:hover,
.header-navigation a:hover,
.header-menu .menu > li > a:hover {
  color: var(--brand-purple);
}

/* Sticky header subtle shadow */
.site-header.is-sticky,
.header-main-wrapper.is-stuck,
.kadence-sticky-header {
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* 3) TOP BAR (contact/social strip) */
.site-top-bar,
.header-top,
.header-top-row {
  background: var(--brand-white);
  color: var(--brand-purple);
  border-bottom: 1px solid var(--soft-border);
  font-weight: 600;
}
.site-top-bar a,
.header-top a { color: var(--brand-purple); }
.site-top-bar a:hover,
.header-top a:hover { color: var(--brand-purple-dark); }

/* 4) HEADER CTA BUTTON (right side) */
.header-button .wp-block-button__link,
.header-item .wp-element-button,
.header-button .kb-button,
.header-button .kadence-button,
.header-button .button {
  background: var(--brand-purple);
  color: var(--brand-white) !important;
  border: 2px solid var(--brand-purple);
  border-radius: 9999px;       /* pill */
  padding: 10px 20px;
  font-weight: 700;
  line-height: 1.1;
  transition: all .2s ease;
}
.header-button .wp-block-button__link:hover,
.header-item .wp-element-button:hover,
.header-button .kb-button:hover,
.header-button .kadence-button:hover,
.header-button .button:hover {
  background: var(--brand-purple-dark);
  border-color: var(--brand-purple-dark);
  color: var(--brand-white) !important;
  text-decoration: none;
}

/* 5) GLOBAL LINK COLOR (brand) */
a { color: var(--brand-purple); }
a:hover, a:focus { color: var(--brand-purple-dark); text-decoration: underline; }

/* 6) HOME “CONTENT CARD” WRAPPER
   — gives the white box around your posts soft radius + shadow */
.home main .wp-block-group,
.home .content-area .site-main > .wp-block-group {
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  padding: 24px;
}

/* 7) POST CARD IMAGES — rounded & tidy */
.wp-block-post-featured-image img,
.entry-media img,
.post-thumbnail img {
  border-radius: 12px;
  display: block;
  width: 100%;
  height: auto;
}

/* 8) DIVIDERS & BORDERS (soft) */
hr, .wp-block-separator { border-color: var(--soft-border) !important; }

/* 9) OPTIONAL: small intro/hero band under header (if you add it)
   target a top row layout with light background */
.home .kadence-row-layout.kb-row-layout-wrap.has-background,
.home .wp-block-kadence-rowlayout.has-background {
  border-radius: 0;            /* keep full-width band flat */
  box-shadow: none;
}

/* 10) ACCESSIBILITY: focus outlines */
a:focus, button:focus, .wp-block-button__link:focus,
.kb-button:focus, .wp-element-button:focus {
  outline: 2px solid var(--brand-purple) !important;
  outline-offset: 2px;
}

/* 11) MOBILE SPACING TWEAKS */
@media (max-width: 781px){
  .home main .wp-block-group { padding: 16px; }
  .primary-navigation a { padding: .6rem .8rem; }
}/* ============================================
   DANA GAIN — COMPLETE HEADER + FONT + COLOR SYSTEM
   ============================================ */

/* Load Montserrat from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* BRAND VARIABLES */
:root{
  --brand-purple: #3B0084;
  --brand-purple-dark: #2F0069;
  --brand-white: #FFFFFF;
  --near-black: #111111;
  --soft-border: #ECECEC;
}

/* 1) GLOBAL TYPOGRAPHY */
body,
.entry-content,
p, li, dd, dt, figcaption,
.wp-block-paragraph,
.wp-block-list,
.wp-block-table,
.widget-area,
.comment-content {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  line-height: 1.65;
  font-weight: 400;
  color: var(--near-black);
}

/* 2) HEADER + NAV TYPOGRAPHY (all Montserrat) */
.site-header,
.site-header * ,
.header-main-wrapper,
.header-navigation,
.primary-navigation,
.header-menu,
.header-top,
.site-top-bar {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* 4) HEADER / NAV STYLING */
.site-header, .header-main-wrapper { background: var(--brand-white); }
.primary-navigation a,
.header-navigation a,
.header-menu .menu > li > a {
  color: var(--near-black);
  text-decoration: none;
  font-weight: 600;
}
.primary-navigation a:hover,
.header-navigation a:hover,
.header-menu .menu > li > a:hover {
  color: var(--brand-purple);
}

/* Sticky header shadow */
.site-header.is-sticky,
.header-main-wrapper.is-stuck,
.kadence-sticky-header {
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* 5) TOP BAR (contact/social strip) */
.site-top-bar,
.header-top,
.header-top-row {
  background: var(--brand-white);
  color: var(--brand-purple);
  border-bottom: 1px solid var(--soft-border);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}
.site-top-bar a,
.header-top a { color: var(--brand-purple); text-decoration:none; }
.site-top-bar a:hover,
.header-top a:hover { color: var(--brand-purple-dark); }

/* 6) HEADER CTA BUTTON */
.header-button .wp-block-button__link,
.header-item .wp-element-button,
.header-button .kb-button,
.header-button .kadence-button,
.header-button .button {
  background: var(--brand-purple);
  color: var(--brand-white) !important;
  border: 2px solid var(--brand-purple);
  border-radius: 9999px;   /* pill shape */
  padding: 10px 20px;
  font-weight: 700;
  line-height: 1.1;
  transition: all .2s ease;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}
.header-button .wp-block-button__link:hover,
.header-item .wp-element-button:hover,
.header-button .kb-button:hover,
.header-button .kadence-button:hover,
.header-button .button:hover {
  background: var(--brand-purple-dark);
  border-color: var(--brand-purple-dark);
  color: var(--brand-white) !important;
  text-decoration: none;
}

/* 7) GLOBAL LINKS */
a { color: var(--brand-purple); }
a:hover, a:focus { color: var(--brand-purple-dark); text-decoration: underline; }

/* 8) HOME WRAPPER CARD STYLE */
.home main .wp-block-group,
.home .content-area .site-main > .wp-block-group {
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  padding: 24px;
}

/* 9) POST IMAGES */
.wp-block-post-featured-image img,
.entry-media img,
.post-thumbnail img {
  border-radius: 12px;
  display: block;
  width: 100%;
  height: auto;
}

/* 10) ACCESSIBILITY + MOBILE TWEAKS */
a:focus, button:focus, .wp-block-button__link:focus,
.kb-button:focus, .wp-element-button:focus {
  outline: 2px solid var(--brand-purple) !important;
  outline-offset: 2px;
}
@media (max-width: 781px){
  .home main .wp-block-group { padding: 16px; }
  .primary-navigation a { padding: .6rem .8rem; }
}/* --- Diamond Texture Background --- */
body,
.site-content,
.wp-site-blocks {
  background-color: #ffffff; /* clean white base */
  background-image:
    linear-gradient(135deg, rgba(59, 0, 132, 0.04) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(225deg, rgba(59, 0, 132, 0.04) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(45deg,  rgba(59, 0, 132, 0.04) 25%, transparent 25%) 12px 12px / 24px 24px,
    linear-gradient(315deg, rgba(59, 0, 132, 0.04) 25%, transparent 25%) 12px 12px / 24px 24px;
  background-attachment: fixed;
  background-repeat: repeat;
}/* two matching full-width CTA blocks */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}

.cta-box {
  flex: 1 1 500px;
  background: linear-gradient(180deg,#f6f1ff 0%,#3b0084 100%);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.cta-box h3 {
  margin-top: 0;
  color: #fff;
}
/* ========== BLOG META FIX ========== */

/* Force-show author + date under post titles */
.entry-meta,
.post-meta,
.posted-on,
.byline {
  display: inline-block !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 15px;
  color: #3b0084 !important;
  margin-top: 6px;
}

/* Space and style between author/date */
.entry-meta span,
.post-meta span {
  margin-right: 12px;
  color: #3b0084 !important;
  font-weight: 500;
}

/* Ensure title spacing looks balanced */
h2.entry-title, h2.wp-block-post-title {
  margin-bottom: 6px !important;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
}

/* Slight soft hover effect for readability */
h2.entry-title a:hover, h2.wp-block-post-title a:hover {
  color: #5e1ab1 !important;
}

/* Add gentle separation between posts */
article, .wp-block-post {
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
  margin-bottom: 28px;
}
.sticky-guide-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  background: #3b0084;
  color: #fff !important;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  text-decoration: none !important;
  transition: all .2s ease;
}
.sticky-guide-btn:hover {
  transform: scale(1.05);
  opacity: .95;
}
@media (max-width: 600px) {
  .sticky-guide-btn {
    bottom: 18px;
    right: 18px;
    font-size: 15px;
    padding: 12px 18px;
  }