/* ===== LANDING PAGE ===== */
/* Landing page/splash screen styles */

.landing-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0, 0, 0);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all var(--transition-time) ease;
  cursor: pointer;
}

.landing-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.landing-logo img {
  max-width: max(17vw, 250px);
  height: auto;
  object-fit: contain;
  overflow: hidden;
}

/* ===== SLIDESHOW ===== */
.slideshow {
  position: relative;
  width: 100%;
  height: calc(100vh - 2 * var(--header-size));
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  max-height: calc(100vh - 2 * var(--header-size));
  max-width: 100%;
  object-fit: contain;
  cursor: pointer;
}
