body{
    background-color: #FFCD03;
    font-family: "futura-pt", sans-serif;
    font-weight: 200;
    font-size: 24px;
    font-style: normal;
}

.navbar-color{
    background-color: #FDB913;
}

.body-text{
    font-weight: 500;
    font-size: 24px;
    font-style: normal;
}

.footer-heading{
    font-weight: 400;
    text-align: center;
    padding: .5em 2em;
    color: black;
}

.paragraph-text{
    font-weight: 500;
    font-size: 18px;
    font-style: normal;
}

.image-wrapper {
    display: inline-block;   /* matches image width */
    position: relative;
    max-width: 300px;
}

.image-wrapper img{
    width: 100%;
    display: block;
}

.carousel-image {
  display: block;
  justify-content: center;
  max-width: 100%;
}

.carousel-image-wrapper{
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image-wrapper .carousel-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.custom-carousel-item {
  text-align: center;
}

.glass-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-weight: 900;
    color: black;
    background: rgba(255, 255, 255, 0.9);
}

.carousel-image-wrapper .carousel-caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
  max-width: 500px;

  background: rgba(255, 255, 255, 0.8);
  color: black;
  text-align: center;
  padding: 1rem;
}

.caption-text{
    font-weight: 200;
    font-size: 21px;
    font-style: normal;
    padding: .5em 0 1em 1.5em;
}

.footer-link{
    color: "#ffe97f";
}

.body-text-heading{
    font-weight: 600;
    font-size: 36px;
    font-style: normal;
    padding: .75em 0 0 .75em;
}

.center-item{
    justify-content: center;
    display: flex;
    align-items: center;
}

.body-item{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.item-box{
    display: flex;
    background: #ffe97f;
    align-items: center;
    justify-content: center;
    padding: 2em;
    border-radius: 20px;
}

.carousel-image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0 auto;
}

.floating-text{
    text-align: center;
    justify-content: center;
}

@keyframes floating {
    0% { transform: translateY(); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(); }
}
.floating-img {
    animation: floating 3s ease-in-out infinite;
}

.caption-hover{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1em;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;

    font-weight: 200;
    font-size: 21px;
    font-style: normal;
}

.image-wrapper:hover .caption-hover {
  opacity: 1;
}

#flash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;

  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

#flash-overlay.active {
  animation: flashFade 1s ease forwards;
}

@keyframes flashFade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1
  }
  100% {
    opacity: 0;
  }
}

.btn-transparent {
  background: transparent;
  border: none;
  box-shadow: none;
}

.bubbles {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none; /* doesn't block clicks */
  overflow: hidden;
  z-index: -1;
}

.bubbles span {
  position: absolute;
  bottom: -50px;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,1);
  border-radius: 50%;
  animation: rise 10s linear infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-600px) scale(1.5);
    opacity: 0.5;
  }
}

.bubbles span:nth-child(1) { left: 10%; width: 15px; height: 15px; animation-duration: 8s; }
.bubbles span:nth-child(2) { left: 25%; width: 25px; height: 25px; animation-duration: 12s; }
.bubbles span:nth-child(3) { left: 40%; width: 10px; height: 10px; animation-duration: 6s; }
.bubbles span:nth-child(4) { left: 55%; width: 20px; height: 20px; animation-duration: 10s; }
.bubbles span:nth-child(5) { left: 70%; width: 30px; height: 30px; animation-duration: 14s; }
.bubbles span:nth-child(6) { left: 80%; width: 12px; height: 12px; animation-duration: 7s; }
.bubbles span:nth-child(7) { left: 90%; width: 18px; height: 18px; animation-duration: 11s; }
.bubbles span:nth-child(8) { left: 50%; width: 22px; height: 22px; animation-duration: 9s; }

