@charset "UTF-8";

@font-face {
    font-family: 'ChangwonDanggamAsak';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/CWDangamAsac-Bold.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');

:root {
    --font-main: 'NanumSquare', sans-serif;
    --font-title: 'Oswald', sans-serif;
    --text-black: #333;
}

h2 {
    font-size: 191px;
    color: #fff;
    margin: 0;
    /* 기본 여백 제거 */
    line-height: 1;
    /* 줄 간격 좁히기 */
    opacity: 0.5;
    font-family: var(--font-main);
    font-weight: 800;
}

h3 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 40px;
}


body {
    font-family: var(--font-main);
    color: var(--text-black);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 3%;
}

/* =========================================
   Header
   ========================================= */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'ChangwonDanggamAsak';
    font-size: 30px;
    color: #fff;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #fff;
    font-size: 16px;
    opacity: 1;
    transition: opacity 0.3s;
    font-family: var(--font-main);
    font-weight: 800;
}

/* .nav-link:hover {
    opacity: 1;
} */

.nav-link span {
    color: #FFCE00;
    position: relative;
    top: -3px;
    /* 위로 5px 올림 (숫자 조절 가능) */
    font-size: 16px;
    /* 필요하면 크기 조절 */
}

.lang-icon {
    /* 기존 스타일 유지하면서... */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    /* 이미지가 동그라미 밖으로 넘치지 않게 */
    background: #fff;
    /* 배경 흰색 */
}

/* 이미지 크기 맞추기 */
.lang-icon img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    /* 이미지를 꽉 채우기 */
}

/* =========================================
   main
   ========================================= */


.main-visual {
    width: 100%;
    height: 100vh;
    background-image: url('images/main01.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    /* 높이 꽉 채우기 */
}

/* 3. 텍스트 그룹 (Clivelle) 위치: 하단 3% */
.text-group {
    position: absolute;
    bottom: 5%;
    left: 3%;
}

/* 4. 설명 그룹 위치 */
.desc-group {
    position: absolute;
    bottom: 25%;
    right: 10%;
}

.text-group span {
    display: block;
    /* 블록 요소로 변경 */
    color: #FFCE00;
    font-weight: 700;
    font-size: 25px;
    position: relative;
    margin-left: 1%;
    font-family: var(--font-main);
    font-weight: 800;
}

.desc-group p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    text-align: right;
    font-weight: 300;
    opacity: 0.9;
    margin: 0;
    /* 불필요한 여백 제거 */
    font-family: var(--font-main);
    font-weight: 800;
}

/* =========================================
   line
   ========================================= */

.contact01 {
    width: 100%;
}

/* 라인 박스 (Flex 사용) */
.line {
    width: 100%;
    padding: 3.5% 3% 5% 3%;
    /* 위, 오른쪽(3%), 아래, 왼쪽(3%) 여백 */
    display: flex;
    align-items: center;
    /* 세로 가운데 정렬 */
    justify-content: center;
    color: #FFCE00;
    /* 별 색상 */
    font-size: 24px;
    font-weight: bold;
    font-family: var(--font-title);
    line-height: 1;
}

/* 1. 왼쪽 긴 선 */
.line::before {
    content: "";
    flex-grow: 1;
    /* 남은 공간 꽉 채우기 */
    height: 1px;
    background-color: #ddd;
    margin-right: 10px;
    /* 별과의 간격 */
    transform: translateY(-3px);
}

/* 2. 오른쪽 긴 선 (::after를 오른쪽 선으로 사용) */
.line::after {
    content: "";
    /* 별은 가운데 들어갈 거라 여기서는 선만 그림 */
    flex-grow: 1;
    /* 남은 공간 꽉 채우기 */
    height: 1px;
    background-color: #ddd;
    margin-left: 10px;
    /* 별과의 간격 */
    transform: translateY(-3px);
}

.con1_text {
    text-align: center;
    margin: 0 auto;
}

.con1_text p {
    font-size: 19px;
    font-weight: 600;
    color: #888888;
    padding-bottom: 55px;
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 60px;
    background-color: #ffd200;
    border-radius: 27px;

    color: #333;
    font-size: 18px;
    font-weight: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    transition: all 0.1s ease;
}

/* 화살표 스타일 조절 */
.btn-consult span {
    margin-left: 5px;
    margin-top: 2px;
    font-size: 20px;
    font-weight: 1000;
}

.btn-consult:hover {
    background-color: #333;
    /* 배경은 어둡게 */
    color: #ffd200;
    /* 글자와 화살표는 노란색으로 */
}

/* =========================================
쇼츠 3개를 감싸는 부모 박스
========================================= */
.shorts-container {
    display: flex;
    /* 한 줄로 가로 배치 */
    justify-content: center;
    /* 한가운데 정렬 */
    gap: 30px;
    /* 영상 사이의 간격 정확히 30px */
    width: 100%;
    /* 꽉 차게 */
    margin-bottom: 80px;
    /* 쇼츠 영역 아래쪽 여백 (원하는 대로 조절) */
}

/* 각 쇼츠 아이템 (영상 + 제목 묶음) */
.shorts-item {
    display: flex;
    flex-direction: column;
    /* 영상 아래에 제목이 오도록 세로 배치 */
    align-items: center;
    /* 아이템 안에서 가운데 정렬 */
    width: 211px;
    /* 영상 가로 크기와 딱 맞춤 */
}

.shorts-item iframe {
    border-radius: 12px;
    /* 요즘 숏츠처럼 모서리 살짝 둥글게 */
}

/* 영상 아래 제목 스타일 */
.shorts-title {
    margin-top: 15px;
    /* 영상과 제목 사이 간격 */
    font-size: 16px;
    font-weight: 600;
    color: #333;
    /* 글자 색상 */
    text-align: center;
    /* 긴 제목 처리: 한 줄을 넘어가면 ... 처리 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    /* 211px 안에서 꽉 차게 */
}

/* =========================================
   center_img
   ========================================= */

.center_img {
    width: 100%;
    height: 100vh;
    background-image: url('images/back01.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.con2_text {
    text-align: center;
    margin: 0 auto;
}

/* =========================================
   체험 진행 순서 (contact02)
   ========================================= */
/* 전체 감싸는 박스 */
.step-container {
    display: flex;
    justify-content: space-between;
    width: 96%;
    /* 제일 넓을 때 화면의 96%만 차지 */
    max-width: 1590px;
    margin: 0 auto;

    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    margin-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
}

/* 각 순서 칸 (세로 선으로 구분) */
.step-item {
    flex: 1;
    /* 5칸 동일 비율 */
    text-align: center;
    padding: 30px 15px;
    border-right: 1px solid #eaeaea;
    cursor: pointer;
    transition: background-color 0.3s ease;

    position: relative;
    /* 아이콘 배치의 기준점이 됨 */
    display: flex;
    flex-direction: column;
    /* 안의 글씨들을 세로로 쌓기 */
    justify-content: center;
    /* 세로 공간에서 정중앙에 오도록 맞추기 */
    height: 150px;
}

/* 마지막 5번째 칸은 오른쪽 선 중복 방지 */
.step-item:last-child {
    border-right: none;
}

/* 제목 텍스트 (아이콘 빠져나감) */
.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #888;
    transition: color 0.3s ease;
    word-break: keep-all;
}

/* 동그라미 플레이 아이콘 (세로선 정중앙 배치) */
.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #555;
    /* 평소 색상 고정 */
    color: #fff;
    /* 세모 모양 흰색 */
    border-radius: 50%;
    /* 동그랗게 깎기 */
    font-size: 9px;
    padding-left: 1px;
    /* 세모(▶) 시각적 가운데 정렬용 */

    /* 세로선 정중앙 띄우기 마법 */
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* 마우스를 올리기 전 숨겨진 상세 내용 */
.step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    word-break: keep-all;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: all 0.4s ease;
    /* 스르륵 열리는 애니메이션 */
}

/* ===========================
   마우스를 올렸을 때(Hover)의 변화
   =========================== */
/* 1. 박스 배경을 아주 살짝만 어둡게 */
.step-item:hover {
    background-color: #fafafa;
}

/* 2. 글씨 색이 진해짐 */
.step-item:hover .step-title {
    color: #333;
}

/* 3. 숨겨진 글씨가 스르륵 보임 */
.step-item:hover .step-desc {
    max-height: 150px;
    opacity: 1;
    margin-top: 15px;
}

/* ===========================
   place 시작
   =========================== */
.place-container {
    display: flex;
}

.place-box {
    width: 50%;
    text-align: center;
}

.place-box span {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.place-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.img-item {
    width: 30%;
}

.img-item img {
    width: 100%;
    display: block;
}

.place-container-p {
    text-align: center;
    margin-bottom: 80px;
}

.place-container-p p {
    font-size: 12px;
}