
h1, h2, h3, h4 {
  font-family: "Dancing Script", cursive;
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 62px;
  transition: color 0.4s ease-in-out;
}
.heading-h1{
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-family: "Times New Roman", serif;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
  color: #f1683a;
}
/* Navbar */
.navbar {
  height: 10vh;
  border-bottom: 1px solid white;
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.navbar > img {
  width: 25px;
}

/* Background Video */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-container > #video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  overflow: hidden;
}

.top-content > .container {
  width: 90%;
  height: auto;
  margin: 10px auto;
  padding:20px;
  gap: 10px;
  align-items: center;
  font-size: 20px;
  color: #f1683a;
  line-height: 26px;
  display: flex;
  flex-direction: column;
  background-color: #00000085;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  backdrop-filter: blur(5px);
}

.top-content > .container .center-text {
  font-weight: bold;
}

.top-content .text-copyright {
  text-decoration: underline;
  padding: 7px 0;
}

.top-content .text-bototm {
  padding: 10px 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.top-content .container img {
  width: 230px;
  height: 200px;
  object-fit: contain;
}
.top-content .data {
  font-size:20px;
  color: #fff;
}

.next-previous-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
/* --------------------- Responsive Design --------------------- */

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  h1, h2, h3, h4 {
    font-size: 85px;
  }
  .heading-h1 {
    font-size: 60px;
    line-height: 64px;
  }
  .heading2, .heading3, .heading4, .heading5 {
      margin-top: 0px;
  }
  .top-content .data {
    font-size:40px;
    color: #fff;
    line-height: 40px;
    font-family: 'roboto';
    font-weight: 500;
  }
  .stage {
    height: 30vh;
    margin: 0px auto 0;
  }
  .stage6 {
    width: 100%;
    height: 45vh;
    margin: 0px auto 0;
    padding: 0;
  }

  .stage6 > .container {
    font-size: 16px;
    padding: 15px;
    margin: 10px auto;
    width: 90%;
  }
  .devotionalText {
   transition: color 0.2s linear;
  }
  .stage6 .container img {
    width: 300px;
    height: 260px;
  }
  .top-content > .container {
    font-size: 40px;
    line-height: 55px;
  }
  .top-content .text-bototm{
    font-size: 40px;
    line-height: 55px;
  }
  .next-previous-btn button{
    padding: 12px 25px;
    font-size: 35px;
  }
}

/* Mobile Landscape (<= 768px) */
@media (max-width: 768px) {
  h1, h2, h3, h4 {
    font-size: 32px;
  }

  .navbar {
    padding: 0 15px;
  }

  .top-content {
    width: 350px;
    height: 350px;
    
  }

  .stage .container {
    width: 200px;
    height: 300px;
  }

  .heading2, .heading3, .heading4, .heading5 {
    margin-top: 300px;
  }

  .stage6 > .container {
    width: 95%;
    font-size: 15px;
  }

  .stage6 .container img {
    width: 250px;
    height: 220px;
  }
}

/* Mobile Portrait (<= 480px) */
@media (max-width: 480px) {
  h1, h2, h3, h4 {
    font-size: 26px;
  }

  .navbar {
    height: 8vh;
    padding: 0 10px;
  }

  .navbar > img {
    width: 20px;
  }

  .stage {
    width: 280px;
    height: 280px;
    margin-top: 100px;
  }

  .stage .container {
    width: 180px;
    height: 250px;
  }

  .stage6 {
    padding: 30px 10px;
  }

  .stage6 > .container {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }

  .stage6 .container img {
    width: 200px;
    height: 180px;
  }

  .text-bototm {
    font-size: 13px;
  }
}

/* ///new css */
 .carousel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
  }

  .carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .carousel {
    width: 250px;
    height: 310px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 1s;
  }

  .carousel img {
    position: absolute;
    width: 210px;
    height: 265px;
    margin: 0 auto;
    top: 15px;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  button {
    margin: 10px 8px;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    background: white;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }

  button:hover {
    background: #ddd;
  }

