* {
  box-sizing: border-box;
}

.dark-background {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
  background-image: url("../images/2025 Christmas Poster1.jpg");
  background-size: cover;	
  background-position: center;	
  background-repeat: no-repeat;	
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 5px;
  padding-left: 0px;	
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

.hero .carousel-container {
  max-width: 100%;
  min-height: 150vh;	
  }


.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 0%;
}



@media (min-width: 900px) {
  .hero p {
    max-width: 70%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 0%;
  }
}

@media (min-width: 900px) {
  .hero p {
    max-width: 100%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 0%;
  }
}

@media (max-width: 900px) {
  .hero .carousel-container {
    min-height: 30vh;
	max-width: 100%;
	  
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 50px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

