
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Bold';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
@import url('https://fastly.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.1/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css');

/*COMMON*/

html {
    position: relative;
  }

body {
    font-family: 'Wanted Sans Variable', sans-serif, 'LINESeedKR-Bd', 'Nanum Gothic', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
    background: #000;
    position: relative;
}
a {
    text-decoration: none;
}
img {
    /* img(인라인 요소) 하단에 Baseline 공백을 제거 */
    display: block;
}
h2{
    font-size: 60px;
}

/*INNER*/
.inner {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

/*swiper*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*HEADER*/

header {
    width: 100%;
    position: fixed;
    top: 30PX;
    z-index: 20;
}
header > .inner {
    height: 120px;
}
header .logo {
    height: 100px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
header .logo img{
    height: 100px;
}

header .gnb{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50px;
    display: flex;
    margin: auto;
    align-items:center
}
header .gnb li{
    margin-left: 80px;
}
header .gnb li a{
    color: #333;
}
header .gnb li a p:first-child{
    color: #FFF;
    font-weight: 700;
}

#siteHeader {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px;
    transition: all 1s ease;
    z-index: 999;
  }
  
  /* 사라지는 상태 (스크롤 내릴 때) */
  #siteHeader.hidden {
    transform: translateY(-100%);
    opacity: 0;
  }
  
  /* 나타나는 상태 (스크롤 위로 올릴 때) */
  #siteHeader.visible {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* 블러 + 배경 있는 상태 */
  #siteHeader.bg-on {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
  }


  /* 푸터 */
  footer{
    width: 100vw;
    overflow: hidden;
  }
  footer .inner{
    padding: 80px 0 120px;
    color: #9c9c9c;
  }
  .footer-info{
    margin-top: 50px;
    display: flex;
  }
  .footer-info > div{
    margin-right: 50px;
  }
  .footer-info .info-row {
    display: flex;
    align-items: center;
    gap: 10px; /* label과 내용 간격 */
    margin: 5px 0;
  }
  .footer-logo img{
    height: 100px;
  }
  
  .footer-info .label {
    font-weight: 600;
    min-width: 60px; /* label 고정 너비 */
    color: #fff;
  }
  
  .footer-info span {
    font-size: 14px;
  }
  
  .footer-info a {
    color: #9c9c9c;
    text-decoration: none;
  }
  
  .footer-info a:hover {
    text-decoration: underline;
  }
  
footer p{
    font-size: 14px;
}
  