

/* lang-swith.css */
/* for loading overlay Start the screen */
/* All Overlay loading styles is here GOD*/

#loading-overlay {
  position: fixed;
  inset: 0;
  min-height: 100dvh;

  background: #c8dcf0;
  background: url("../images/CruzGod.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999999;
  color: #353535; /* ← IMPORTANT */
}

/* dark overlay for readability */
#loading-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.45); */
}

.verse-day-card {
  max-width: 90%;
  padding: 24px;
  border-radius: 16px;
  text-align: center;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.verse-label {
  opacity: 0.8;
  margin-bottom: 10px;
}

.verse-text {
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
}
/* end of loading overlay styles */


/* Carousel Verses */

.testimonial {
  max-width: 800px;
  margin: auto;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  opacity: 0.8;
} /* end of carousel verses styles */

.verse-card {
  background: white;
  border-radius: 14px;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.verse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.verse-card-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #333;
}

.verse-card-ref {
  font-weight: 600;
  font-size: 0.9rem;
  color: #2563eb;
}


/* Carousel items styles */

.carousel-item {
  padding: 20px 0;
}

.verse-card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50%;
}

.verse-card-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}

.verse-card-ref {
  font-weight: 600;
  color: #2563eb;
}

/* icon carousel */

#verseCarousel .carousel-control-prev,
#verseCarousel .carousel-control-next {
  width: 25px;
  height: 25px;
  background: rgba(233, 228, 228, 0.6);
  border-radius: 25%;
  top: 25%;
  transform: translateY(-50%);
  opacity: 1;
}

#verseCarousel .carousel-control-prev-icon,
#verseCarousel .carousel-control-next-icon {
  filter: invert(1);
}

#verseCarousel .carousel-control-prev,
#verseCarousel .carousel-control-next {
  opacity: 1 !important;
}

/* Slow animation */

#verseCarousel .carousel-item {
  transition: transform 1.2s ease-in-out; /* default is 0.6s */
}

/* #verseCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M11 1 3 8l8 7'/%3e%3c/svg%3e") !important;
}

#verseCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M5 1l8 7-8 7'/%3e%3c/svg%3e") !important;
} */