/* Carousel full page responsive styles */
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}
#home-carousel-container {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
#home-carousel {
  width: 100vw;
  height: 100vh;
}
.carousel-item {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px #000a;
}
.btn-home-login {
  margin-top: 2rem;
  padding: 0.8rem 2.5rem;
  font-size: 1.3rem;
  border-radius: 30px;
  background: linear-gradient(90deg, #00adcb 0%, #6e3b8f 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.3s;
}
.btn-home-login:hover {
  filter: brightness(0.95);
}
