/* 공통 스타일 */

/* 관리자 페이지인데 나중에 수정할것 */

@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: "Spoqa Han Sans Neo", "sans-serif";
  color: #fff;
  align-items: center;
}

a {
  text-decoration: none;
  color: #c6a68d;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* 배경이미지 */
.background-container {
  width: 100%;
  height: 100%;
  background: url("image/background.webp");
  background-size: cover;
  background-position: center;
  position: fixed;
  z-index: -10;
}

/* -------------------------------- 로그인 페이지 스타일 -------------------------------- */

.login-container,
.register-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90vw;
  max-width: 400px;
  margin: auto;
}

.login-container .sideLink,
.register-container .sideLink {
  margin-top: 15px;
  color: #979797;
}

.logo {
  width: 130px;
}

.login-form,
.register-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.login-form input,
.register-form input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-form button,
.register-form button {
  padding: 10px;
  font-size: 16px;
  color: #fff;
  background-color: #c6a68d;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover,
.register-form button:hover {
  background-color: #a8886f;
}

/* -------------------------------- 로그인 관련 스타일 종료 -------------------------------- */

/* 탑메뉴 네비 및 언어선택 */

.topmenu {
  position: fixed;
  display: flex;
  color: #c6a68d;
}

.menubtn {
  display: flex;
}

/* 언어 변환 버튼 */
.lngSelect {
  position: fixed;
  bottom: 70px; /* 화면 하단에서 20px 위로 띄움 */
  right: 70px; /* 화면 우측에서 20px 왼쪽으로 띄움 */
  z-index: 1000; /* 다른 요소들보다 위에 표시되도록 레이어 순서를 조절 */
  color: #fff;
}

.lngSelect .langIcon {
  font-size: 73px;
}

.menu-container {
  padding: 100px 70px;
}

.menu-title {
  text-align: center;
  font-size: 3em;
  margin-bottom: 40px;
  font-weight: bold;
  color: #c6a68d;
}

.menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
  padding-bottom: 20px;
  border-bottom: 2px solid #3c3c3c;
}

.menu-item img {
  border-radius: 10px;
  width: 80vw;
  height: auto;
}

.menu-description {
  padding: 20px;
}

.menu-description h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #c6a68d;
}

.menu-description p {
  font-size: 1em;
  line-height: 1.5;
  color: #ccc;
}
/* 스타일 정의 */
