
/* General */
body {
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.75;
  color: #222;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: auto;
  padding: 25px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.verse {
  font-size: 20px;
  line-height: 1.8;
  margin: 20px 0;
  text-align: justify;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.verse-text {
  display: inline;
}

.verse-number {
  color: #111 !important;
}

.verse.red-letter .verse-number {
  color: #111 !important;
}

.verse.red-letter .verse-text {
  color: red;
}

/* Embeds */
.chapter-top-embed,
.chapter-bottom-embed {
  margin: 30px 0;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #007bff;
}

/* Vote Buttons */
.vote-form {
  display: flex;
  gap: 10px;
}
.icon-btn {
  background: white;
  border: 2px solid black;
  color: black;
  font-size: 18px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
}
.icon-btn:hover {
  background: #f0f0f0;
}
.icon-btn span {
  margin-left: 5px;
  font-weight: bold;
}

/* Header */
header {
  background: #222;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header h1 a {
  color: #fff;
  text-decoration: none;
}
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
nav a:hover {
  color: #add8e6;
}
nav a:visited,
nav a:active {
  color: white;
}

/* Footer */
footer {
  background: #eee;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}
.footer-nav {
  margin-top: 25px;
  text-align: center;
}
.footer-nav label {
  font-weight: bold;
  margin-right: 10px;
}
.footer-nav select {
  padding: 5px 10px;
  font-size: 16px;
}

/* Ad */
.ad-box {
  background: #fff3cd;
  padding: 15px;
  text-align: center;
  border: 1px dashed #f0ad4e;
  margin: 20px auto;
}

/* Search */
.search-section input {
  width: 70%;
  padding: 10px;
}
.search-section button {
  padding: 10px 20px;
}

/* Blockquote */
.verse-of-day blockquote {
  font-style: italic;
  background: #fff;
  padding: 15px;
  border-left: 5px solid #007bff;
}

/* Book Grid */
.book-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.book-link {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  color: #007bff;
  transition: background 0.2s ease, color 0.2s ease;
}
.book-link:hover {
  background: #eef7ff;
  color: #0056b3;
}
.chapter-count {
  font-size: 0.85em;
  font-weight: normal;
  color: #666;
}

/* Testament Sections */
.testament-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}
.section h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #222;
}
.section ul,
.popular-reflections ul {
  list-style: none;
  padding-left: 0;
}
.section ul li,
.popular-reflections li {
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-weight: bold;
}
.section ul li a {
  color: #007bff;
  text-decoration: none;
}
.section ul li a:hover {
  color: #0056b3;
}

/* Special Classes */
.red-letter {
  color: red;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .verse {
    font-size: 18px;
  }
  .book-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .section {
    margin-bottom: 30px;
  }
  .section ul li {
    font-size: 17px;
  }
}

.arrow-left::before {
  content: '← ';
}
.arrow-right::after {
  content: ' →';
}

.arrow-left::before {
  content: '← ';
  font-weight: bold;
}

.arrow-right::after {
  content: ' →';
  font-weight: bold;
}

.book-jump-section {
  margin: 40px auto;
  text-align: center;
}

.book-jump-section select {
  padding: 8px 12px;
  font-size: 16px;
  margin-top: 8px;
}

.reflection-section {
  margin-top: 40px;
  padding-top: 10px;
}

.reflection-box {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f8f8;
  border-left: 4px solid #007bff;
}

.reflection-box small {
  color: #666;
}

.reflection-form {
  margin-top: 20px;
}

.reflection-form input,
.reflection-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.reflection-form button {
  background: #007bff;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.reflection-form button:hover {
  background: #0056b3;
}

.book-jump-section {
  margin: 40px auto;
  text-align: center;
}

.book-jump-section label {
  font-weight: bold;
  margin-right: 10px;
}

.book-jump-section select {
  padding: 8px 12px;
  font-size: 16px;
}

.reflection-section {
  margin-top: 40px;
  padding-top: 10px;
}

.reflection-section h3,
.reflection-section h4 {
  text-align: left;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

.reflection-box {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f8f8;
  border-left: 4px solid #007bff;
}

.reflection-box small {
  color: #666;
}

.reflection-form {
  margin-top: 20px;
}

.reflection-form input,
.reflection-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.reflection-form button {
  background: #007bff;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.reflection-form button:hover {
  background: #0056b3;
}

.chapter-dropdown {
  padding: 10px 14px;
  font-size: 18px;
  min-width: 160px;
}

.chapter-select {
  font-size: 18px;
  padding: 10px 16px;
  min-width: 180px;
}

.verse-legend {
  text-align: center;
  font-size: 0.95em;
  margin: 10px auto 25px;
  color: #444;
  font-style: italic;
}
.verse-legend .red-letter {
  font-weight: bold;
}


.jesus-speaks {
  color: red;
  font-size: 0.95em;
  font-weight: bold;
  margin-left: 5px;
  vertical-align: middle;
}


/* Jesus Speaks Page */
.jesus-page {
  max-width: 950px;
}

.jesus-hero {
  text-align: center;
  padding: 25px 20px 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff7f7, #ffffff);
  border: 1px solid #f1d5d5;
}

.jesus-kicker {
  color: #b30000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 8px;
}

.jesus-hero h1 {
  margin: 0 0 12px;
  font-size: 42px;
}

.jesus-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 20px;
}

.jesus-chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.jesus-chapter-card {
  display: block;
  padding: 18px;
  border: 1px solid #e4dede;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jesus-chapter-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.10);
  border-color: #cc0000;
}

.jesus-book {
  display: block;
  font-size: 20px;
  font-weight: bold;
}

.jesus-chapter {
  display: block;
  color: #b30000;
  font-size: 16px;
  margin-top: 4px;
}

.jesus-read {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: bold;
  color: #007bff;
}

@media (max-width: 768px) {
  .jesus-chapter-grid {
    grid-template-columns: 1fr;
  }

  .jesus-hero h1 {
    font-size: 34px;
  }
}

.jesus-book-summary {
  margin: 40px 0;
  padding: 25px;
  background: #fff8f8;
  border: 1px solid #f0d6d6;
  border-radius: 10px;
}

.jesus-book-summary h2 {
  margin-top: 0;
  text-align: center;
  font-size: 32px;
}

.jesus-summary-intro {
  text-align: center;
  margin-bottom: 25px;
  color: #555;
}

.jesus-book-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.jesus-book-summary-card {
  background: #fff;
  border: 1px solid #e5dcdc;
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.jesus-book-summary-card:hover {
  border-color:#b30000;
  transform:translateY(-2px);
}

.jesus-book-chapters {
  scroll-margin-top:160px;
}

.jesus-book-summary-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.jesus-book-summary-card span {
  color: #b30000;
  font-weight: bold;
}

.jesus-collapsible,
.jesus-book-chapters {
  margin: 25px 0;
  border: 1px solid #eadada;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.jesus-collapsible > summary,
.jesus-book-chapters > summary {
  cursor: pointer;
  padding: 16px 20px;
  font-size: 24px;
  font-weight: bold;
  background: #fff8f8;
  color: #222;
}

.jesus-book-chapters > summary span {
  font-size: 16px;
  color: #b30000;
  margin-left: 10px;
  font-weight: bold;
}

.jesus-book-chapters .jesus-chapter-grid {
  padding: 20px;
}



.current-chapter-header {
    font-size: 28px;     /* CONTROL SIZE */
    font-weight: 700;
    color: #ffd700;      /* Gold text — change as you want */
    margin-top: 10px;
    letter-spacing: 0.5px;
    text-align: center;  /* Backup centering */
}


.chapter-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 10px auto;
}

/* Make any player inside scale nicely */
.chapter-video-wrapper iframe,
.chapter-video-wrapper video,
.chapter-video-wrapper embed,
.chapter-video-wrapper object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



iframe, video, embed, object {
  max-width: 85%;
}

.red-letter {
    color: red;
}

.black-letter {
    color: #222 !important;
}

.verse.red-letter .black-letter {
    color: #222 !important;
}

.black-letter {
    color: #222 !important;
    font-weight: normal !important;
}

.verse-number {
    color: #111 !important;
}

.verse.red-letter .verse-number {
    color: #111 !important;
}

.verse.red-letter .verse-text {
    color: red;
}

.testament-block {
  max-width: 1000px;
  margin: 0 auto;
}

.homepage-container {
  max-width: 1000px;
  margin: auto;
  padding: 25px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.chapter-share-box {
  text-align: center;
  margin: 25px auto;
  padding: 15px;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.chapter-share-box h3 {
  margin-top: 0;
}

.chapter-share-btn {
  display: inline-block;
  margin: 6px;
  padding: 9px 14px;
  background: #0066cc;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.chapter-share-btn:hover {
  background: #004f99;
}

