/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
  font-family: "Segoe UI", sans-serif;
  background-color: whitesmoke;
  color: #111;
}

h1 {
  margin-bottom: 20px;
  color: darkblue;
}

p {
  margin-bottom: 1.2em;
}

main {
  padding-left: 40px;
  padding-right: 40px;
}

/* =========================
   HEADER
========================= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.site-header nav {
  display: flex;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.site-header nav li {
  display: inline;
}

.site-header nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: #5a00b1;
  font-weight: bold;
}

/* =========================
   CATEGORY HEADER (LOCKED)
========================= */
.category-header h3.italic-heading {
  font-style: italic;
  color: #1f3a5f;
}

/* =========================
   FILTER BAR
========================= */
.filter-bar {
  background-color: #1f3a5f;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.filter-bar,
.filter-bar .filter-label {
  color: #ffffff;
}

.filter-bar select {
  background-color: #ffffff;
  color: #111;
  border: 1px solid #ccc;
}

/* Clear Filters */
.filter-clear-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.filter-clear-btn:hover {
  color: #dbe7ff;
}

/* =========================
   DEVOTION LIST
========================= */
.devotion-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  line-height: 1.4em;
}

.devotion-list li {
  margin-bottom: 12px;
}

/* =========================
   DEVOTION TITLE LINKS
   (Correct LVHA ordering)
========================= */
.devotion-list .devotion-card .devotion-title-row h2 a {
  color: #4a6fa5;               /* light blue */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.devotion-list .devotion-card .devotion-title-row h2 a:visited {
  color: #4a6fa5;
}

.devotion-list .devotion-card .devotion-title-row h2 a:hover,
.devotion-list .devotion-card:hover .devotion-title-row h2 a {
  color: #1f3a5f;               /* darker blue on hover */
  text-decoration: underline;
}

/* =========================
   HIDE CATEGORY PILLS
========================= */
.devotion-categories {
  display: none;
}

/* =========================
   LIST FORMATTING
========================= */
main > ul {
  padding-left: 2em;
  margin-bottom: 2em;
  list-style-type: disc;
}

main > ul li {
  margin-bottom: 0.4em;
  line-height: 1.3em;
}

/* Restore italic heading color */
.page-wrapper .category-header h3.italic-heading {
  color: #890f77;
  font-style: italic;
}