/* 导航栏滚动样式 */

/* 导航栏初始样式 - 透明背景 */
#mainNav {
  transition: all 0.3s ease;
}

/* 滚动后的导航栏样式 */
#mainNav.nav-scrolled {
  background-color: white !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  border-bottom: none !important; /* 移除底部边框白色效果 */
}

/* 确保文本颜色变化正确应用 */
.scroll-text {
  transition: color 0.3s ease;
}

/* 调试辅助样式 */
.debug-info {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 10px;
  border-radius: 5px;
  z-index: 1000;
  font-family: monospace;
  max-width: 300px;
  overflow: hidden;
}