@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url('https://fonts.googleapis.com/css2?family=Caprasimo&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+AU+NSW:wght@100..400&family=Playwrite+HU:wght@100..400&display=swap');

/* 기본 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root {
  --font_color1: #17171B;
  --font_color2: #FAFAF8;
  --font_color3: #5487AC;
  --font_color4: #646464;
  --font_color5: #2d4a75;
  --point_color: #0040AF;
}

body {
  font-family: Pretendard, Noto Sans KR, sans-serif;
}

.inner {
  max-width: 1440px;
  margin: auto;
}

#header {
  position: relative;
  width: 100%;
  height: 100vh;
  color: var(--font_color2);
  overflow: hidden;
}

#header nav {
  position: relative;
}

#header .menu {
  position: absolute;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  font-weight: 300;
  font-size: 18px;
  z-index: 10;
}

#header .hamburger {
  width: 80px;
  height: 80px;
  position: absolute;
  color: #FAFAF8;
  display: none;
  justify-content: end;
  z-index: 10;
  margin-top: 50px;
}

#header .hamburger span {
  font-size: 50px;
}

#header nav ul li {
  position: relative;
}

#header nav ul li::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #FAFAF8;
  left: 0;
  top: 120%;
  transition: width 0.3s;
}

#header nav ul li:hover::after {
  width: 100%;
}

@media (max-width:1240px) {
  #header .menu {
    gap: 50px;
  }
}

@media (max-width:700px) {
  #header .menu {
    display: none;
  }

  #header .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
  }
}

section {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 150px;
  position: relative;
}

.sec_title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 60px;
}

/*  푸터 스타일  */
footer {
  width: 100%;
  font-size: 14px;
  color: #919191;
  padding: 50px;
  border-top: 1px solid #dadada;
}

footer .footer_title {
  font-weight: 700;
  font-size: 20px;
}

footer .footer_sub {
  display: flex;
  gap: 100px;
  margin: 30px 0;
  line-height: 2em;
}

@media (max-width:600px) {
  footer .footer_sub {
    display: block;
  }
}

/* 폰트 지정 영역 */
.main_title span {
  font-family: Montserrat, Noto Sans KR, sans-serif;
}

#package .grid_item {
  font-family: Montserrat, Noto Sans KR, sans-serif;
}

#price_info .price li.title {
  font-family: Montserrat, Noto Sans KR, sans-serif;
}

#gallery_slide a {
  font-family: Montserrat, Noto Sans KR, sans-serif;
}

#levelup_camp .copy span,
#levelup_camp .img_desc {
  font-family: Montserrat, Noto Sans KR, sans-serif;
}

#gallery_slide span {
  font-family: Pretendard, Noto Sans KR, sans-serif;
}

.item3 .panel .desc {
  font-family: Montserrat, Noto Sans KR, sans-serif;
}
