/* -------------------- Base Styles -------------------- */
body {
  background-color: #f0f4ff;
  font-family: 'Segoe UI', sans-serif;
}

h1, h4, h5 {
  color: #0c1e61;
}

/* -------------------- Bible Verse -------------------- */
.bible-verse {
  font-weight: bold;
  font-size: 1.05rem;
  color: #0c1e61;
}

.bible-verse a {
  color: #d4af37;
  text-decoration: none;
}

.bible-verse a:hover {
  text-decoration: underline;
}

/* -------------------- Cards -------------------- */
.card {
  border: none;
  border-left: 5px solid #0c1e61;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(12, 30, 97, 0.2);
}

.highlight-today {
  border-left-color: #d4af37 !important;
  background-color: #fffdf4;
}

.devotion-date {
  font-size: 0.875rem;
  color: #666;
}

/* -------------------- Buttons -------------------- */
.btn-light.btn-lg {
  background-color: #d4af37;
  color: #0c1e61;
  border: none;
}

.btn-light.btn-lg:hover {
  background-color: #c2a131;
  color: #fff;
}

/* -------------------- Headings -------------------- */
.section-heading {
  color: #0c1e61;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  margin-bottom: 2rem;
}

/* -------------------- Hero Section -------------------- */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(12, 30, 97, 0.7)), center/cover no-repeat;


}

.hero-section h1,
.hero-section p {
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* Reduced-height Hero Variant */
.hero-section.small-hero {
  min-height: 20vh; /* adjust as needed */
  padding: 30px 0;
}


.hero-section.small-hero h1 {
  font-size: 2rem;
}

.hero-section.small-hero p.lead {
  font-size: 1.1rem;
}

.hero-section.small-hero .btn {
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
}

/* -------------------- Search -------------------- */
.search-wrapper {
  max-width: 500px;
  width: 100%;
}
