h1, h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--secondary-dark);
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.img_link {
  color: var(--primary-color) !important;
}

.apostles-intro {
  background: linear-gradient(127deg, var(--secondary-dark), var(--primary-dark));
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  color: white;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.apostles-intro h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.apostles-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.apostles-list {
  background: var(--background);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 1rem;
}

.apostles-list h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.2rem;
}

.apostles-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.apostles-list li {
  background: white;
  margin: 0.5rem 0;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--light-text);
  box-shadow: var(--box-shadow);
  transition: transform 0.2s ease;
}

.apostles-list li:hover {
  transform: translateX(5px);
}

p {
  line-height: 1.6;
  margin: 1.2rem 0;
  text-align: justify;
}

blockquote {
  border-left: 4px solid var(--light-text);
  padding-left: 1em;
  margin: 1.5em 0;
  font-style: italic;
  background: var(--background);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--background);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--dialog-text-highlight);
}

th {
  background: linear-gradient(135deg, #0275d8, var(--primary-dark));
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:hover {
  background-color: var(--card-bg);
}

.verse {
  font-style: italic;
  color: var(--light-text);
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--background);
  border-left: 4px solid var(--secondary-dark);
  border-radius: var(--border-radius);
  text-align: center;
  font-size: 1.1rem;
}

.total-count {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 2rem 0;
  box-shadow: var(--box-shadow);
}

.total-count h2 {
  color: white;
  margin-bottom: 1rem;
}

.total-count p {
  font-size: 1.2rem;
  margin: 0;
}

.highlight-number {
  color: var(--dialog-text-highlight);
  font-weight: bold;
  font-size: 1.3em;
}

ul ul {
  margin-left: 1rem;
  padding-bottom: 0.5rem;
  list-style-type: none;
}

.p_indent {
  text-align: left;
  font-size: 1.2rem;
  text-indent: 33%;
}
.indent{
  display: inline-block; text-indent:33%;
}
.crumbs {
  position: sticky;
  top: 0;
  z-index: 100;

  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  will-change: transform, opacity;
}

.crumbs.crumbs-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
/* Dropdown Button */
/* Hide the actual checkbox */
.dropdown-toggle {
    display: none;
}

/* Style the label to look like a button */
.dropdown-label {
    cursor: pointer;
    color: var(--primary-color);
}

.dropdown-label b {
    text-decoration: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* --- The Magic Rule --- */
/* When the checkbox is checked, show the dropdown-content that is a sibling */
.dropdown-toggle:checked~.dropdown-content {
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover,
.dropdown-content a:focus {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content,
.dropdown:focus .dropdown-content {
    display: block;
}

.homepage-grid{
  padding-left: 0;
  padding-right: 0;

}

/* Responsive Design */
@media (max-width: 768px) {
  .apostles-lists {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  th, td {
    padding: 0.7rem 0.5rem;
    font-size: 0.9rem;
  }

  /* Fix mobile responsive layout squeezing */
  article, aside {
    column-count: 1 !important;
    column-gap: normal !important;
  }

  .p_indent {
    text-indent: 0 !important;
  }

  .fl, .rtl, .img_fl, .img_rtl, .carousel-group {
    float: none !important;
    margin: 1rem auto !important;
    display: block !important;
    text-align: center;
    width: 100% !important;
    max-width: 100% !important;
  }

  .fl img, .rtl img, .img_fl img, .img_rtl img, .thumbnail-container img {
    max-width: 100% !important;
    height: auto !important;
  }

  aside[style], div[style], h3[style] {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  p {
    text-align: left;
  }
}
@media (max-width: 500px) {
    .dropdown-content a {
        font-size: 1rem;
    }
    .bread-crumbs{
      font-size: 1rem;
    }
}
