/* ========================= */
/* scroll-menu.css */
/* ========================= */

/* === PC: 스크롤 메뉴 === */
.scroll-menu {
  position: fixed;
  top: 74px;
  left: 0;
  width: 100%;
  background: #202020;
  z-index: 5500; /* 항상 최상단 */
  border-bottom: 1.5px solid #393939;
  border-top: 1.5px solid #222;
  height: 42px;
  box-shadow: 0 2px 10px #0002;
}

.scroll-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  padding: 8px 0;
  margin: 0 auto;
  max-width: 1200px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.scroll-menu ul::-webkit-scrollbar { display: none; }

.scroll-menu li a {
  color: #f2f2f2;
  font-size: 1.09rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 4px;
  transition: color .2s, background .17s;
  white-space: nowrap;
  pointer-events: auto;
  touch-action: manipulation;
}
.scroll-menu li a:hover {
  color: #ffe066;
  background: rgba(255,224,102,0.13);
  box-shadow: 0 2px 9px #ffe06622;
}

/* === 모바일: 스크롤 메뉴 === */
@media (max-width: 650px) {
  body {
    padding-top: 80px !important; /* 헤더+스크롤메뉴 높이 */
  }
  .scroll-menu {
    position: fixed !important;
    top: 68px !important;
    background: #202020 !important;
    z-index: 5500 !important; 
    border-bottom: 1.5px solid #393939 !important;
    border-top: none !important;
    height: 42px !important;
    box-shadow: 0 2px 8px #0002 !important;
  }
}
