/* -----------------------------------------------------------------------------
📦 전체 메뉴 스타일 정의 (PC 전용)
// /a127/www/cms_assets/css/menu.pc_side_style.css
----------------------------------------------------------------------------- */

/* ===== 디자인 토큰(충돌 최소화를 위한 기본값) ===== */
:root {
  --cms-menu-z: 9999;         /* 메뉴 z-index 기본값 */
}

/* ✅ 메뉴 전체 */
.pc-menu {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  height: 100vh;
  /* 폴백 추가: --theme-color 미설정 시 #111 사용 */
  background: var(--theme-color, #111);
  color: white;
  z-index: var(--cms-menu-z);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pc-menu.open {
  right: 0;
}

/* ✅ 로고 영역 */
.pc-menu-header {
  padding: 50px 0 40px;
  text-align: center;
  border: none !important;
}
.pc-menu-header img {
  width: 80px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}
.pc-menu-header .json_site_name {
  font-size: 18px;
  font-weight: bold;
  color: white !important;
}

/* ✅ 메뉴 본문 */
.pc-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.pc-menu-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc-menu-body li {
  margin: 0;
  padding: 0px 0px 20px 12px;
  border: none !important;
  margin-bottom: 11px;
}

/* ✅ 링크 고정 클래스 */
.menu-link {
  font-size: 16px;
  color: white !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  line-height: 1.4;
}
.menu-link:hover,
.menu-link:focus,
.menu-link:visited {
  color: white !important;
  border: none !important;
}

/* ✅ pc-submenu 설정 */
.pc-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  padding-left: 16px;
}
.pc-submenu.open {
  /* 항목이 많을 때 잘림 방지를 위해 600px → 75vh 로 완화 */
  max-height: 75vh;
}
.pc-submenu li {
  padding: 20px 0px 0px 12px;
  margin: 0px;
  border: none !important;
}

/* ✅ 화살표 */
.toggle-arrow {
  display: inline-block;
  margin-right: 10px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  font-size: 14px;
}
.toggle-arrow.rotate {
  transform: rotate(90deg);
}

/* ✅ 닫기 버튼 */
.pc-menu-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* ✅ 메뉴 오버레이 */
.pc-menu-overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .pc-menu {
    display: none !important;
  }
}

/* ✅ 사이트 전체 이동 처리 */
.site-wrapper {
  transition: transform 0.35s ease;
  will-change: transform;
  position: relative;
  overflow-x: hidden;
}
body.cms-menu-opened .site-wrapper {
  transform: translateX(-320px);
}

/* ===== 접근성/UX 보강 (공용) ===== */

/* 메뉴 열릴 때 배경 스크롤 억제 */
body.cms-menu-opened {
  overflow: hidden;
}

/* 포커스 가시성(키보드 사용자 배려) */
.pc-menu .pc-menu-close:focus-visible,
.pc-menu .menu-link:focus-visible {
  outline: 2px solid rgba(255,255,255,.55);
  outline-offset: 2px;
}

/* 모션 민감 사용자 배려 */
@media (prefers-reduced-motion: reduce) {
  .pc-menu { transition: none !important; }
  .pc-submenu { transition: none !important; }
}