/* 햄버거 토글 버튼 (기본 위치) */
.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  border-radius: 6px;
  z-index: 1001;
  cursor: pointer;
}

/* 사이드 메뉴 */
.side-menu {
  position: fixed;
  top: 0;
  left: -220px;
  width: 200px;
  height: 100%;
  background-color: #2b2b3c;
  padding: 60px 20px 20px 20px;
  transition: left 0.3s ease;
  z-index: 1000;
  box-shadow: 2px 0 6px rgba(0,0,0,0.3);
}
.side-menu.show {
  left: 0;
}

/* 메뉴 안쪽 닫기 버튼 */
.menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-menu ul li {
  margin-bottom: 20px;
}
.side-menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.side-menu ul li a:hover {
  color: #e71909;
}

/* menu.css: 하단 고정 내비게이션 추가 (모바일 전용) */
@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: #2b2b3c;
    border-top: 1px solid #444;
    z-index: 1000;
  }

  .bottom-nav a {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
  }

  .bottom-nav a.active {
    color: #e71909;
    font-weight: 600;
  }

  .bottom-nav a:hover {
    color: #e71909;
  }

  .menu-toggle {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none !important;
  }
}

.bottom-nav a img {
  width: 50px;
  height: 50px;
}