
/* =========================================================
   FONTS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');


/* =========================================================
   BASE TYPOGRAPHY + COLORS
   ========================================================= */

body {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FAFAFA;
}

/* Paragraphs */
p {
  color: #4A4A4A;
}


/* =========================================================
   HEADINGS (STRUCTURE COLOR - COOL NAVY)
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif !important;
  text-transform: none !important;
  color: #1E2A4A !important;
  line-height: 1.2 !important;
}


/* =========================================================
   H1 (EDITORIAL HERO)
   ========================================================= */

html body h1,
html body .entry-title,
html body .wp-block-heading h1,
html body .wp-block-post-title,
html body .cover h1 {
  font-size: 62px !important;
  font-weight: 600 !important;
  letter-spacing: -1px !important;
  line-height: 1.1 !important;
  font-family: 'Lora', serif !important;
  color: #1E2A4A !important;
  margin-top: 0 !important;
}


/* =========================================================
   H2 / H3 STRUCTURE
   ========================================================= */

h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}


/* =========================================================
   👋 HELLO BADGE (WARM BRAND)
   ========================================================= */

.hello-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #D6452D;
  background: rgba(214, 69, 45, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}


/* =========================================================
   LINKS (WARM BRAND COLOR)
   ========================================================= */

a {
  color: #D6452D;
  text-decoration: none;
}

a:hover {
  color: #B93A25;
}


/* =========================================================
   BUTTONS (PRIMARY BRAND ACTION - WARM RED ORANGE)
   ========================================================= */

button,
.wp-block-button__link {
  background-color: #D6452D !important;
  color: #ffffff !important;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
}

button:hover,
.wp-block-button__link:hover {
  background-color: #B93A25 !important;
  transform: translateY(-1px);
}


/* =========================================================
   NAVIGATION (CLEAN + STRUCTURAL)
   ========================================================= */

.site-header {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #EAEAEA;
  position: relative !important;
  z-index: 1;
}


/* =========================================================
   LAYOUT FIXES (LODESTAR CLEANUP)
   ========================================================= */

body.page .site-content {
  padding-top: 40px !important;
}

.single-featured-image-header,
.wp-custom-header,
.custom-header,
.header-image {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.page .entry-header {
  display: none !important;
}

body.page .site-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* =========================================================
   FOOTER CLEANUP
   ========================================================= */

.site-info {
  display: none !important;
}


/* =========================================================
   SOCIAL / EXTRAS REMOVAL
   ========================================================= */

.sharedaddy,
.sd-sharing,
.sd-block,
.jetpack-sharing-buttons,
.jetpack-social-navigation,
.jp-relatedposts,
.entry-content .sharedaddy,
.like-button,
.wp-block-jetpack-likes {
  display: none !important;
}


/* =========================================================
   RESPONSIVE TYPOGRAPHY
   ========================================================= */

@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  html body h1,
  html body .entry-title,
  html body .wp-block-post-title {
    font-size: 40px !important;
    letter-spacing: -1px !important;
  }

  h2 {
    font-size: 26px;
  }
}


/* =========================================================
   DESKTOP SPACING
   ========================================================= */

@media (min-width: 1024px) {
  body.page .site-content {
    padding-top: 90px !important;
  }
}