/* Font import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* === TYPOGRAPHY === */
body, p, li, input, textarea, select, button, .entry-content {
  font-family: 'Jost', system-ui, -apple-system, sans-serif !important;
  font-weight: 300 !important;
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .site-title, .entry-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em;
}

/* === BRAND COLORS: deep soft pink + sage green === */
a { color: #b5677a; }
a:hover, a:focus { color: #8f4f61; }

h1, h2, h3, h4, h5, h6 { color: #3d2b2b; }

/* Buttons — sage green */
.wp-block-button .wp-block-button__link {
  background: #7a9e78 !important;
  color: #fff !important;
  border-color: #7a9e78 !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px !important;
}
.wp-block-button .wp-block-button__link:hover {
  background: #608060 !important;
  border-color: #608060 !important;
}

/* === LAYOUT === */

/* Full-width homepage — hide sidebar */
.home #secondary,
.home .sidebar,
.home .widget-area {
  display: none !important;
}

.home #primary,
.home .content-area,
.home main {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

/* Hide page title on home page */
.home .entry-title { display: none; }

/* Hide page title on static pages */
.page .entry-header .entry-title:first-child { display: none; }

/* Category section — uniform image height */
.category-image img,
.wp-block-column .wp-block-image img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.category-image,
.wp-block-column .wp-block-image {
  margin-bottom: 0 !important;
}