/* Banner */
#main-banner {
  transition: background-image 0.3s ease-in-out;
  /* background-image: url('https://www.test.zeeuwsonline.dev/wp-content/uploads/2025/07/daytime-banner.png'); */
}

/* Switching img element */
.day-img-wrapper,
.night-img-wrapper {
  transition: opacity 0.3s ease-in-out;
}

.switch-img {
  position: relative;
}
.day .day-img-wrapper {
  position: relative;
  opacity: 1;
  z-index: 1;
}
.day .night-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
}

.night .day-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
}
.night .night-img-wrapper {
  position: relative;
  opacity: 1;
  z-index: 1;
}
/* Text */
.night h1, .night h2, .night h3, .night h4, .night h5, .night h6{
    color: white;
}
.day h1, .day h2, .day h3, .day h4, .day h5, .day h6{
    color: black;
}
.night {
    color:aliceblue;
}
.day {
    color: #333333;
}
p, .ld-fh-element, .lqd-simple-heading {
    transition: color 0.3s ease-in-out;
}