* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR",
    -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto,
    "Helvetica Neue", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif;
}
/* 헤더 스타일 */

header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 80px;
}
section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header_logo {
  color: #fff;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 100% */
}

.header_link {
  color: #fff;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  letter-spacing: -0.54px;
  font-family: Pretendard;
}

.header_menu_container {
  display: flex;
  gap: 60px;
  align-items: center;
}
.header_menu_link {
  color: #fff;
  text-align: right;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
}

/* 모바일 햄버거 버튼 */
.mobile_menu_button {
  display: none;

  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* 모바일 메뉴 오버레이 */
.mobile_menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile_menu_overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile_menu_content {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

.mobile_menu_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 25px 28px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.mobile_header_logo {
  color: #313743;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 100% */
}

.mobile_menu_close {
  /* position: absolute;
  top: 28px;
  right: 28px; */
  background: none;
  border: none;

  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile_menu_items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

.mobile_menu_item {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px; /* 155.556% */
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile_menu_item:active {
  background: linear-gradient(90deg, #ff5694 0%, #ff8028 50%, #ddff47 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile_menu_item:focus {
  background: linear-gradient(90deg, #ff5694 0%, #ff8028 50%, #ddff47 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 헤더스타일 끝 */
@media (max-width: 1024px) {
  /* 헤더 스타일 */

  header nav {
    padding: 25px 28px;
  }

  .header_logo {
    font-size: 28px;
  }

  .header_link {
    font-size: 16px;
    letter-spacing: -0.48px;
  }

  /* 태블릿과 모바일에서 데스크톱 메뉴 숨기기 */
  .header_menu_container,
  .header_link {
    display: none;
  }

  /* 태블릿과 모바일에서 햄버거 버튼 표시 */
  .mobile_menu_button {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* 헤더스타일 끝 */
}

@media (max-width: 767px) {
  .mobile_menu_item {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px; /* 171.429% */
  }
}
