.image-overlay-container {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  display: block;
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* Optional: darken for contrast */
  padding: 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
}

.img-hover-zoom img {
  transition: transform 0.3s ease;
}

.img-hover-zoom img:hover {
  transform: scale(1.05);
}

#goToCBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  font-size: 18px;
  background-color: #2643c0; /* Customize */
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none; /* Hidden by default */
  transition: opacity 0.3s ease;
}

#goToCBtn:hover {
  background-color: #1b2e87; /* Darker on hover */
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 100px;
    border: 5px solid blue; /* test */
  }
}