/* 스크롤 힌트를 위한 애니메이션과 설명 */
#fp-nav::after {
  content: "↓ 스크롤하여 더 보기";
  position: absolute;
  bottom: -50px;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: scrollHint 3s ease-in-out infinite;
  white-space: nowrap;
  z-index: 1000;
}

@keyframes scrollHint {
  0%, 100% { 
    opacity: 0.6; 
    transform: translateY(0); 
  }
  50% { 
    opacity: 1; 
    transform: translateY(-4px); 
  }
}

/* 모바일에서는 스크롤 힌트 숨기기 */
@media (max-width: 768px) {
  #fp-nav::after {
    display: none;
  }
}

/* 나이드신 분들을 위한 추가 시각적 힌트 */
.fp-nav-scroll-indicator {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 50%;
  border: 3px solid #3b82f6;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  font-size: 28px;
  color: #3b82f6;
  animation: pulseStrong 2.5s ease-in-out infinite;
  z-index: 999;
  cursor: pointer;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: system-ui, -apple-system, sans-serif;
  transition: all 0.3s ease;
}

.fp-nav-scroll-indicator:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.fp-nav-scroll-indicator:active {
  transform: translateY(-50%) scale(0.95);
}

@keyframes pulse {
  0%, 100% { 
    opacity: 0.7; 
    transform: translateY(-50%) scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: translateY(-50%) scale(1.05); 
  }
}

@keyframes pulseStrong {
  0%, 100% { 
    opacity: 0.8; 
    transform: translateY(-50%) scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% { 
    opacity: 1; 
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(59, 130, 246, 0);
  }
}

/* fullpage 네비게이션 도트 크기 조정 */
#fp-nav ul li a span {
  width: 12px !important;
  height: 12px !important;
  border: 3px solid #d1d5db !important;
  background: transparent !important;
}

#fp-nav ul li a.active span {
  background: #3b82f6 !important;
  border-color: #3b82f6 !important;
}

/* 마우스 호버시 더 큰 도트 */
#fp-nav ul li a:hover span {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}