html,
body {
  height: 100%;
  overflow: hidden;
}

/* Background */
.bg-image {
  position: fixed;
  inset: 0;
  background: url("/images/bg.jpg") center/cover no-repeat;
  filter: blur(3px);
  transform: scale(1.1);
  z-index: 1;
}

.carousel-img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* Dark overlay */
.dark-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Card container */
.content {
  position: relative;
  z-index: 3; /* ABOVE blur & overlay */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bi {
  font-size: 1.5rem; /* Increase icon size */
  color: white;
  transition: color 0.3s;
}

.bi:hover {
  color: #0d6efd; /* Bootstrap primary color */
}

#zoomOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

#zoomedImage {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}

.zoomable-image {
  cursor: zoom-in;
}
