/* === Blog Text Styling === */
body {
  color: #222222;  /* off-black for readable body text */
  font-family: system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #4A5F41;  /* moss green for headings */
  font-weight: bold;
}

a {
  color: #202811; /* modern medium blue */
  text-decoration: none; /* remove underline for a cleaner look */
  border-bottom: none; /* subtle underline effect */
}

a:hover {
  color: #1a1b17; /* deeper blue on hover */
  border-bottom-color: transparent; /* underline disappears smoothly */
}

a:visited {
  color: #1a1b17;  /* deep, muted green for visited links */
  text-decoration: none; /* remove underline for a cleaner look */
  border-bottom: none; /* subtle underline effect */
}

hr {
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Post navigation links */
.post_navi {
  display: flex;
}

.post_navi-label {
  font-size: 0.8em;
  opacity: 0.5;
}

.post_navi .post_navi-item {
  padding: 0 2.2em;
  width: 50%;
  position: relative;
  color: inherit !important;
}

.post_navi .nav_prev {
  text-align: left;
}

.post_navi .nav_next {
  text-align: right;
}

.post_navi .nav_prev .post_navi-arrow {
  left: 0;
}

.post_navi .nav_next .post_navi-arrow {
  right: 0;
}

.post_navi .post_navi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5em;
  opacity: 0.3;
}

/* === Header Bar Styling === */
.site-header {
  background-color: #4A5F41; /* change this to your preferred colour */
}

.site-header a,
.site-title,
.site-title a,
.site-nav a {
  color: #ffffff !important; /* force text/links in the header to be white */
}

.site-header a:hover {
  color: #f0f0f0 !important; /* slightly lighter white/grey on hover */
}
