/* 햄버거 슬라이더 메뉴 */
#category {
    position: fixed; /* 이미 있을 수 있지만 확실히 */
    top: 0;
    right: 0; /* 왼쪽이 아닌 오른쪽에서 나오도록 */
    height: 100%;
    width: 300px; /* 적절한 너비 */
    z-index: 999;
    overflow-y: auto;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transform: translateX(100%); /* 처음에는 화면 밖에 위치 */
    transition: transform 0.3s ease; /* 부드러운 애니메이션 */
}

#category.active {
    transform: translateX(0); /* 활성화되면 화면 안으로 이동 */
}



/* 최상단 바 */
.top-bar {
  background-color: var(--black);
  padding: 10px 0;
  color: var(--white);
  position: relative;
  z-index: 1001;
  line-height: 1.5;
  font-size: 14px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-links a {
  color: var(--white);
  margin-right: 15px;
  font-size: 14px;
}
.social-links a:hover { color: var(--primary-color); }
.account-links a {
  color: var(--white);
  font-size: 14px;
}
.account-links a:hover { color: var(--primary-color); }   


        

/* 햄버거 메뉴 */
.menu-toggle-container {
  display: flex;
  align-items: center;
  margin-left: -190px;
  cursor: pointer;
}
.menu-label {
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
  color: #fff;
  text-transform: uppercase;
}
.hamburger-icon {
  width: 20px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-icon .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
}        



/* 슬라이드메뉴 */
.slide-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.slide-menu.active { right: 0; }
.slide-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}
.slide-menu-content { padding: 60px 30px 30px; }
.slide-menu-nav ul { list-style: none; padding: 0; margin: 0; }
.slide-menu-nav li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.slide-menu-nav a {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.slide-menu-nav a:hover { color: #666; }

/* 메뉴 오버레이 */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

body.menu-open { overflow: hidden; }


/* 헤더 */
.site-header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 1000;
  top: 40px;
  left: 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-logo-sub {
  font-size: 12px;
  letter-spacing: 2px;
}

/* 메인 네비게이션 */
.main-navigation ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.main-navigation li { position: relative; }
.main-navigation a {
  display: block;
  padding: 10px 15px;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}
.main-navigation a:hover { color: #666; }

/* 서브메뉴 */
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  flex-direction: column;
}
.main-navigation li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navigation .sub-menu a {
  color: var(--secondary-color);
  padding: 10px 15px;
  border-bottom: 1px solid var(--light-gray);
}
.main-navigation .sub-menu a:hover { color: #000; }

/* 헤더 액션 */
.header-actions {
  display: flex;
  align-items: center;
}
.btn-hiring {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 500;
  margin-right: 15px;
}
.btn-hiring:hover { background-color: #e0e0e0; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}            
            
            