/* ================= SCROLL INDICATOR ================= */
.scroll-indicator {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 900; /* נמוך מה-NAV */
}

.scroll-indicator .icon-scroll,
.scroll-indicator .icon-scroll:before {
  position: absolute;
  top: 0;
}

.scroll-indicator .icon-scroll {
  width: 20px;  /* חצי מהגודל המקורי */
  height: 35px; /* חצי מהגובה המקורי */
  border-radius: 12.5px; /* חצי מהמקורי */
  box-shadow: inset 0 0 0 1px rgba(210, 180, 140, 0.8), 0 0 6px rgba(210, 180, 140, 0.6);
  animation: scroll-indicator-glow 2s infinite ease-in-out;
  position: relative;
}

.scroll-indicator .icon-scroll:before {
  content: '';
  width: 5px;   /* חצי מהמקורי */
  height: 5px;  /* חצי מהמקורי */
  top: 5px;
  margin-right: -2px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 6px #d4af37;
  animation: scroll-indicator-scroll 1.3s infinite ease-out;
}

.scroll-indicator .chevron-container {
  position: absolute;
  top: 35px; /* מתחת לסמן הקטן */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;   /* חצי מהמרווח המקורי */
  width: 16px; /* חצי מהמקורי */
  height: 12px; /* חצי מהגובה המקורי */
}

.scroll-indicator .chevron {
  position: absolute;
  width: 16px;  /* חצי מהמקורי */
  height: 3px;  /* חצי מהגובה המקורי */
  opacity: 0;
  transform: scale3d(0.6, 0.6, 0.6);
  animation: scroll-indicator-move 2.4s ease-out infinite;
}

.scroll-indicator .chevron:nth-child(1) { animation-delay: 0.2s; }
.scroll-indicator .chevron:nth-child(2) { animation-delay: 0.6s; }
.scroll-indicator .chevron:nth-child(3) { animation-delay: 1s; }

.scroll-indicator .chevron:before,
.scroll-indicator .chevron:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: #d4af37;
}

.scroll-indicator .chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.scroll-indicator .chevron:after {
  right: 0;
  transform: skew(0deg, -30deg);
}

/* ================= ANIMATIONS ================= */
@keyframes scroll-indicator-scroll {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(22px); } /* חצי מהמקורי */
}

@keyframes scroll-indicator-glow {
  0%, 100% {
    box-shadow: inset 0 0 0 1px rgba(210, 180, 140, 0.8), 0 0 6px rgba(210, 180, 140, 0.6);
  }
  50% {
    box-shadow: inset 0 0 0 1px rgba(210, 180, 140, 1), 0 0 12px rgba(210, 180, 140, 1);
  }
}

@keyframes scroll-indicator-move {
  0% { opacity: 0; transform: translateY(0) scale3d(0.6, 0.6, 0.6); }
  25% { opacity: 1; }
  50% { opacity: 1; transform: translateY(9px); } /* חצי מהמקורי */
  75% { opacity: 1; transform: translateY(13px); } /* חצי מהמקורי */
  100% { opacity: 0; transform: translateY(17px) scale3d(0.6, 0.6, 0.6); } /* חצי מהמקורי */
}

