/* mobileMenu.css */

/* 공통 버튼 스타일: header의 버튼과 동일한 스타일 */
.header-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background-color: #F98F32;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Noto Sans KR', sans-serif;
  text-align: center;        /* 버튼 내부 텍스트 중앙 정렬 */
  text-decoration: none;     /* 링크 특성인 밑줄 제거 */
  display: inline-block;     /* 링크도 버튼처럼 보이도록 */
}

.header-btn:hover {
  background-color: #d87d1d;
}

/* 기존 모바일 메뉴 스타일은 그대로 유지 */
.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* 기본은 숨김 */
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.mobile-menu-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: #fff;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-menu-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  width: 100%;
}

.mobile-menu-list li {
  margin-bottom: 20px;
}

.mobile-menu-list li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

.mobile-menu-buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* 기본 로그인/회원가입 버튼 스타일 (비로그인 상태) */
.mobile-login-btn,
.mobile-register-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.mobile-login-btn {
  background-color: #66d2ce;
}

.mobile-register-btn {
  background-color: #9c81ff;
}

.mobile-menu-container.active {
  display: block;
}
