body.site-bg {
  background-color: #e8f5e9;
  background-image: linear-gradient(rgba(17, 24, 39, 0.22), rgba(17, 24, 39, 0.22)), url("/resources/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hidden {
  display: none !important;
}

.admin-loader-spinner {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  color: var(--color-green-600, #16a34a);
  animation: adminSpinnerRotation 1s linear infinite;
}

@keyframes adminSpinnerRotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Gallery Modal */
#imgModal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 60px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

#modalImg {
  display: block;
  margin: auto;
  max-height: 85vh;
  max-width: 90vw;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalZoom 0.3s ease-out;
}

@keyframes modalZoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#closeImgModal {
  position: absolute;
  top: 16px;
  right: 24px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 101;
}

#closeImgModal:hover {
  color: #4ade80;
}

/* Sticky nav shadow (added by script.js) */
.stickyNav {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.07);
}
