@charset "utf-8";

/* 인트로 영상 스타일 */
.intro-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #000;
    opacity: 1;
    transition: opacity 1s ease-out;
}
.intro-video-wrapper.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.intro-video-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Skip 버튼 스타일 */
.skip-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-family: 'pret-sb';
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.skip-button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* 반응형 */
@media (max-width: 768px) {
    .skip-button {
        bottom: 30px;
        right: 20px;
        padding: 10px 24px;
        font-size: 14px;
    }
}
/* --- 헤더 --- */
.gnbArea {
  background: transparent;
}




.main-sec01 {
  position: relative;
  margin: 100px 0 0;
  padding: 0;
  background: url('/html/images/main/sec01-bg.jpg') no-repeat center / cover;
}

.main-sec01 .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
  
}

/* 왼쪽 */
.main-sec01 .left {
  flex-shrink: 0;
}

.main-sec01 .title {
  font-size: 66px;
  line-height: 1.4;
  color: var(--main-brown);
  text-align: center;
}


/* 세로선 */
.main-sec01 .line {
  width: 2px;
  height: 0;
  background: var(--sub-brown);
  transition: all 1s ease-in-out;
}
.main-sec01 .line.active {
  height: 250px;
}

/* 오른쪽 */
.main-sec01 .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  font-size: 18px;
}

.main-sec01 .sub-title {
  margin-bottom: 40px;
  font-size: 1.9em;
  color: var(--main-black);
}

.main-sec01 .desc {
  font-size: 1em;
  line-height: 1.8;
  color: var(--sub-brown);
}

@media (max-width:1400px){
  .main-sec01 .title { font-size: 45px;}
  .main-sec01 .right { font-size: 15px;}
}

@media (max-width:1024px) {
  .main-sec01 {
    margin: 50px 0;
    background: url('/html/images/main/m/sec01-bg.jpg') no-repeat center / cover;
  }
  .main-sec01 .inner {
    padding: 50px 0;
    flex-direction: column;
  }
  .main-sec01 .outline {
    font-size: 1em;
  }
    /* 세로선 */
  .main-sec01 .line {
    width: 0;
    height: 1px;
  }
  .main-sec01 .line.active {
    width: 20vw;
    height: 1px;
  }
  .main-sec01 .right {
    text-align: center;
    padding: 0 12.5vw;
  }
}
@media (max-width:768px){
  .main-sec01 .inner { gap: 20px;}
  .main-sec01 .title { font-size: 28px;}
  .main-sec01 .sub-title { font-size: 1em;}
}

@media (max-width:380px){
  .main-sec01 .right {
    padding: 0 30px;
  }
}

/* main-sec02 */

.main-sec02 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin: 100px 0 50px;
  padding: 0 10vw;
  /* height: 22.8125vw; */
  height: 438px;
  background: url('/html/images/main/sec02-bg.jpg') no-repeat center / cover;
}

.main-sec02 h2 {
  color: #fff;
  font-size: 40px;
  line-height: 1.5;
}

@media (max-width:768px) {
  .main-sec02 {
    gap: 30px;
    margin: 60px 0 50px;
    padding: 0 8vw;
    height: 104.5vw;
    background: url('/html/images/main/m/sec02-bg.jpg') no-repeat center / cover;
  }
  .main-sec02 h2 {
    font-size: 28px;
  }
}
@media (max-width: 380px) {
    .main-sec02 h2 {
        font-size: 25px;
    }
}

/* main-sec03 */

.main-sec03 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
  /* margin-top: 100px; */
  padding: 0 10vw;
  height: 920px;
  background: url('/html/images/main/sec03-bg.jpg') no-repeat center / cover;
}
.main-sec03::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.22);
}

.main-sec03 p {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 25px;
  line-height: 2;
  text-align: center;
}

@media (max-width:768px) {
  .main-sec03 {
    gap: 40px;
    padding: 0 8vw;
    height: 107.75vw;
    background: url('/html/images/main/m/sec03-bg.jpg') no-repeat center / cover;
  }
  .main-sec03 p {
    font-size: 13px;
  }
}