
/* Custom colors and gradients only */
.bg-page-gradient { background: linear-gradient(45deg, #4a90e2 0%, #357abd 100%); }


/* HOME SLIDES */
.homeslides-wrapper {
  opacity: 0.5;
  background-color: #FFF
}

/* SLIDESHOW */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Modal Image ===== */
.modal-image {
  max-width: 90%;
  max-height: 90%;
  user-select: none;
  pointer-events: none;
}

/* ===== Navigation Cursor Areas ===== */
.nav-area {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  cursor: pointer;
}
.nav-left {
  left: 0;
}
.nav-right {
  right: 0;
}
/* Hide default outline on focusable divs */
.nav-area:focus {
  outline: none;
}

/* ===== Close Button ===== */
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
  z-index: 1001;
}
.close-btn:hover {
  background: rgba(255, 255, 255, 1);
}
