@charset "utf-8";
/* ===== BACK TO TOP BUTTON ==========background: #6b4e2e; manuscript brown ================== */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c9a227;

  color: #fff;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease;
  z-index: 9999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#backToTop:hover {
  transform: translateY(-3px);
  background: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}


@media (max-width: 600px) {
  #backToTop {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}


