/* Font families */
.font-pinyon {
  font-family: 'Pinyon Script', sans-serif;
}
.font-cormorant {
  font-family: 'Cormorant', sans-serif;
}
.font-abhaya {
  font-family: 'Abhaya Libre', sans-serif;
}
.font-roboto {
  font-family: 'Roboto', sans-serif;
}
.font-noto {
  font-family: 'Noto Serif', sans-serif;
}
.font-aboreto {
  font-family: 'Aboreto', sans-serif;
}
.font-average {
  font-family: 'Average', sans-serif;
}

/* Margins */
.m-10\% {
  margin: 10%;
}

.mb-10\% {
  margin-bottom: 10%;
}

.mt-10\% {
  margin-top: 10%;
}

.m-110\% {
  margin: 110%;
}
.m-50vh {
  margin: 50vh;
}

/* Colors */
.bg-black\/50 {
  background-color: rgba(27, 27, 27, 0.5);
}


.bg-black-cover {
  background-color: #1B1B1B;
}

.bg-brown-with {
  background-color: #2C1C05;
}

.bg-gray-copy-button {
  background-color: #69727d;
}

.border-brown-with {
  border-color: #2C1C05;
}

.text-gray-copy-button {
  color: #69727d;
}

.text-brown-with {
  color: #2C1C05;
}

.text-transparent {
  color: transparent;
}


.text-stroke {
  -webkit-text-stroke: 1px white;
}

/* Object Position */
.object-50 {
  object-position: 50%;
}

/* Min Height */
.min-h-60 {
  min-height: 15rem;
}

/* Custom sizing */

.vid-size {
  width: 1511.11px;
  height: 850px;
}

@media (max-width: 768px) {
  .vid-size {
      width: 1185.78px;
      height: 100vh
  }
}

.h-100 {
  height: 40rem;
}

.h-modal {
  max-height: calc(100vh - 4rem);
}

.gallery-container {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.gallery-item {
  flex: 1 1 calc(20% - 10px);
  max-width: calc(20% - 10px);
  box-sizing: border-box;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}
.gallery-item:hover img {
  transform: scale(1.25);
}

@media screen and (max-width: 1023px) {
  .gallery-item {
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
    max-width: calc(50% - 10px);
  }
}
.video-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* slideshow */
.background-slideshow {
  position: relative;
  width: 100%;
  height: calc(100vh + 3rem);
  overflow: hidden;
}

.background-slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.background-slide.active {
  opacity: 1;
}

/* Map */
.map-container iframe {
  width: 100%;
  height: 100%;
}
.map-container {
  width: 100%;
  height: 0;
  border-radius: 2px;
  padding-bottom: 56.25%;
  position: relative;
}
.map-container iframe {
  position: absolute;
  top: 0;
  border-radius: 2px;
  left: 0;
}

/* Transitions */
#content-cover {
  padding: 10px;
  animation: zoom-in 3s ease-out;
}

@keyframes zoom-in {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.slide-up-enter-active,
.slide-up-leave-active {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.slide-up-enter,
.slide-up-leave-to {
  transform: translateY(-100%);
  opacity: 0;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 1s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

#carousel-4 .transition-transform {
  animation: carousel4Animation 35s cubic-bezier(0.5, 1, 0.5, 1) infinite;
}



@keyframes carousel4Animation {
  0%, 12.5% { transform: translateX(0%); }
  30%, 37.5% { transform: translateX(-30%); }
  45%, 62.5% { transform: translateX(-60%); }
  70%, 87.5% { transform: translateX(-90%); }
  100% { transform: translateX(-100%); }
}

