@charset "utf-8";

.section01 {
    width: 100%;
    height: 100vh;
    position: relative;
}

.section01-img {
    width: 100%;
    height: 100vh;
}

.section01-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-list {
    width: 100%;
    height: 100%;
}

.slick-track {
    width: 100%;
    height: 100%;
}

.bg-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.bg-slide-img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.bg-slide-img img {
    width: 100%;
    height: 100%;
    transition: all 3s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
    object-fit: cover;
}

.bg-slide-img.slick-active img {
    transform: scale(1);
}

.section01-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.section01-text h2 {
    font-family: var(--font-en);
    text-align: center;
    font-size: 36px;
    line-height: 45px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 날씨 */
.weather-box {
    position: absolute;
    left: 65px;
    bottom: 45px;
    z-index: 5;
}

.weather-box ul {
    display: flex;
    flex-direction: column;
    gap: 5px 0;
}

.weather-box ul li {
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.weather-box ul li.weather {
    font-size: 20px;
    font-weight: 500;
}

/* 메인 달력 */
.reservation-box {
    position: absolute;
    left: 50%;
    bottom: 65px;
    transform: translateX(-50%);
    z-index: 5;
}

.reservation-box .main-calendar-box {
    display: none;
    width: 378px;
    height: auto;
    max-height: 345px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 4px 4px 4px 0px rgba(180, 180, 180, 0.11);
    margin-bottom: 15px;
    padding: 30px 20px;
}

.reservation-box .main-calendar-box.open {
    display: block;
}

.reservation-box .btn {
    width: 380px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 16px;
    background: #C08F5C;
    color: #fff;
    text-align: center;
    font-size: 20px;
    border-radius: 80px;
}

.reservation-box .calendar-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.reservation-box .calendar-top h3 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.reservation-box .calendar-top .arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 15px;
    cursor: pointer;
}

.reservation-box .calendar-top .arrows.prev {
    left: 5px;
    background: url("/images/main/icon_main_cal_prev.svg") no-repeat;
}

.reservation-box .calendar-top .arrows.next {
    right: 5px;
    background: url("/images/main/icon_main_cal_next.svg") no-repeat;
}

.reservation-box .main-calendar {
    width: 100%;
}

.reservation-box .main-calendar table {
    width: 100%;
}

.reservation-box .main-calendar table thead tr th {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
}

.reservation-box .main-calendar table thead tr th:first-child {
    color: #DD2323;
}

.reservation-box .main-calendar table thead tr th:last-child {
    color: #2A6DB9;
}

.reservation-box .main-calendar table tbody tr td:first-child div {
    color: #DD2323;
}

.reservation-box .main-calendar table tbody tr td:last-child div {
    color: #2A6DB9;
}

.reservation-box .main-calendar table tbody tr td {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 3px 0;
    cursor: pointer;
}

.reservation-box .main-calendar table tbody tr td div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    text-align: center;
    color: #000;
    position: relative;
    margin: 0 auto;
    width: 25px;
    height: 25px;
}

.reservation-box .main-calendar table tbody tr td span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: #535353;
    margin: 0 auto;
    padding-top: 2px;
}

.reservation-box .main-calendar table tbody tr td.today div {
    background: #FF9500;
    border-radius: 50%;
    color: #fff !important;
}

.reservation-box .main-calendar table tbody tr td.end {
    cursor: default;
}

.reservation-box .main-calendar table tbody tr td.end div {
    color: #fff;
}

.reservation-box .main-calendar table tbody tr td.impossible {
    background-color: #c9c9c9;
}

.reservation-box .main-calendar table tbody tr td.impossible div {
    color: #a8a8a8;
}

.section02 {
    padding: 40px 0;
}

.section02-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px 0;
    text-align: center;
}

.section02-text span {
    display: block;
    font-size: 20px;
    color: var(--main-color);
    font-family: var(--font-en);
    text-transform: uppercase;
}

.section02-text h3 {
    font-size: 35px;
    font-family: var(--font-en);
}

.section02-text h3 small {
    font-size: 16px;
    font-weight: 600;
    color: #5E5E5E;
}

.section02 .big-img-box {
    margin-top: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 40px;
    width: 100%;
    padding: 0 90px;
}

.section02 .big-img-box .img-box {
    display: block;
    width: calc(50% - 40px);
    max-width: 850px;
    height: 705px;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
}

.section02 .big-img-box .img-box img {
    width: 100%;
    height: 100%;
}

.section02 .big-img-box .img-box .img-mask {
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0;
    border-radius: 48px;
}

.section02 .big-img-box .img-box:hover .img-mask {
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section02 .big-img-box .img-box .img-mask .img-mask-txt {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section02 .big-img-box .img-box .img-mask .img-mask-txt span {
    display: block;
    font-size: 20px;
    margin-bottom: 20px;
}

.section02 .big-img-box .img-box .img-mask .img-mask-txt h4 {
    font-size: 32px;
    font-family: var(--font-en);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section02 .big-img-box .img-box .img-mask .img-mask-txt p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.section02 .big-img-box .img-box .img-mask .img-mask-txt a {
    width: 108px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.section02 .facilities-section {
    width: 100%;
    position: relative;
}

.section02 .facilities-section::after {
    content: "";
    position: absolute;
    top: -130px;
    width: 100%;
    height: 1105px;
    z-index: -1;
    background: var(--main-color);
}

.section02 .facilities-section-inner {
    padding: 130px 90px 113px 130px;
    display: flex;
    gap: 0 80px;
    min-width: 1400px;
}

/* ─── Left: Fixed Text Column ─── */
.section02 .slider-text li:nth-of-type(1) {
    font-size: 50px;
    font-family: var(--font-en);
    color: #fff;
}

.section02 .slider-text li:nth-of-type(1) strong {
    color: #EDD5BD;
}

.section02 .slider-text li:nth-of-type(2) {
    font-size: 20px;
    font-weight: 600;
    margin-top: 36px;
    line-height: 35px;
    color: #fff;
}

.section02 .slider-text li:nth-of-type(2) strong {
    font-weight: 600;
    display: block;
    color: #EDD5BD;
}

.section02 .slider-text li:nth-of-type(3) {
    margin-top: 42px;
    line-height: 30px;
    font-size: 16px;
    color: #EDD5BD;
}

.slider-text li.custom-pagination {
    margin-top: auto;
    padding-top: 135px;
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Pagination */
.custom-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 !important;
    opacity: 1;
}

.custom-pagination .swiper-pagination-bullet-active {
    width: 6px;
    height: 6px;
    background: #fff;
    position: relative;
}

.custom-pagination .swiper-pagination-bullet-active::after {
    content: "";
    width: 16px;
    height: 16px;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
}

.slider-wrap {
    flex: 1;
    min-width: 1090px;
    height: 732px;
    overflow: hidden;
    position: relative;
}

.slider-wrap .swiper {
    width: 100%;
    height: 100%;
}

.slider-wrap .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ─── 그리드 카드 공통 ─── */
.grid-card {
    position: absolute;
    border-radius: 48px;
    overflow: hidden;
}
.grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-top {
    right: 440px;
    top: 0;
    width: 400px;
    height: 330px;
}

.card-text {
    right: 440px;
    bottom: 0;
    width: 650px;
    height: 365px;
    background: #D2A06C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.card-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    height: 732px;
    border-radius: 48px;
    overflow: hidden;
}
.card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid-card .text-card h2 {
    font-family: var(--font-en);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.grid-card .text-card p {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* section03 */
.section03 {
    padding: 120px 0 120px 130px;
    background: #fff;
    overflow: hidden;
}

/* 고정 텍스트 */
.section03-text {
    margin-bottom: 60px;
}
.section03-text span {
    font-size: 20px;
    color: var(--main-color);
    display: block;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.section03-text h3 {
    font-size: 40px;
    font-family: var(--font-en);
    color: #555;
    line-height: 100%;
    margin-bottom: 35px;
}
.section03-text p {
    font-family: var(--font-serif);
    font-size: 16px;
    color: #838383;
    line-height: 30px;
}


/* Swiper */
.section03Swiper {
    overflow: visible;
}

.section03Swiper .swiper-wrapper {
    align-items: center;
}

.section03Swiper .swiper-slide {
    display: flex;
    align-items: center;
    gap: 55px;
    width: 1200px !important;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.section03Swiper .swiper-slide-active {
    opacity: 1;
}

.section03Swiper .slide-img {
    width: 697px;
    height: 442px;
    border-radius: 48px;
    overflow: hidden;
    flex-shrink: 0;
}
.section03Swiper .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section03Swiper .slide-content {
    flex: 1;
}
.section03Swiper .slide-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: var(--font-serif);
}
.section03Swiper .slide-content p {
    font-size: 16px;
    line-height: 35px;
    color: #5E5E5E;
    margin-bottom: 36px;
    font-family: var(--font-serif);
}

.btn-detail {
    display: inline-block;
    padding: 19px 39px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: var(--font-serif);
}
.btn-detail:hover {
    background: #b07840;
}

/* Pagination */
.section03-pagination {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
    padding-left: 278px;
}

.section03-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #585858;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 !important;
    opacity: 1;
}

.section03-pagination .swiper-pagination-bullet-active {
    width: 6px;
    height: 6px;
    background: #585858;
    position: relative;
}

.section03-pagination .swiper-pagination-bullet-active::after {
    content: "";
    width: 16px;
    height: 16px;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #585858;
}

/* section04 */
.section04 {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-wrap {
    width: 100%;
    position: relative;
}

.root_daum_roughmap {
    width: 100% !important;
}

.root_daum_roughmap .cont .section_address {
    display: none;
}

.root_daum_roughmap .wrap_controllers {
    display: none;
}

.root_daum_roughmap .wrap_btn_zoom {
    display: none;
}

.map-text {
    background: #fff;
    padding: 50px 30px;
    position: absolute;
    right: 190px;
    bottom: 140px;
    border-radius: 10px;
    z-index: 2;
}

.map-text h3 {
    font-size: 36px;
    color: #999;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.map-text span {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.map-text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 30px;
}

.map-text a {
    color: #189DC3;
    text-decoration: underline;
    font-size: 16px;
}


/* 메인 팝업 */
.main-pop-wrap {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    gap: 10px;
}

.main-pop {
    position: relative;
    width: 100%;
    max-width: 1160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pop-swiper {
    position: relative;
    width: 100%;
}

.pop-swiper .swiper-slide {
    position: relative;
}

.pop-swiper .swiper-slide img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.main-pop .swiper-btn-prev,
.main-pop .swiper-btn-next{
    cursor: pointer;
}

.btn-pop-close{
    width: 100%;
    max-width: 1140px;
    text-align: right;
}

.btn-pop-close button{
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 400;
    font-size: var(--f18);
}


/* mobile */
@media (max-width: 1200px) {
    .weather-box {
        display: none;
    }

    .section01-text {
        width: 100%;
    }

    .section01-text h2 {
        font-size: 20px;
        line-height: 100%;
    }

    .reservation-box {
        bottom: 40px;
    }

    .reservation-box .main-calendar-box {
        width: 95%;
        margin: 0 auto;
        height: auto;
        max-height: 325px;
    }

    .reservation-box .btn {
        width: 316px;
        height: 45px;
        font-size: 15px;
        gap: 0 10px;
        margin-top: 18px;
    }

    .reservation-box .btn img {
        width: 20px;
    }

    /* section02 */
    .section02-text span {
        font-size: 12px;
    }

    .section02-text h3 {
        font-size: 20px;
    }

    .section02-text h3 small {
        font-size: 12px;
    }

    .section02 .big-img-box {
        flex-direction: column;
        gap: 15px 0;
        padding: 0;
    }

    .section02 .big-img-box .img-box {
        width: 95%;
        height: 300px;
        border-radius: 20px;
        max-width: unset;
    }

    .section02 .big-img-box .img-box .img-mask .img-mask-txt span {
        font-size: 15px;
    }

    .section02 .big-img-box .img-box .img-mask .img-mask-txt h4 {
        font-size: 25px;
    }

    .section02 .big-img-box .img-box .img-mask .img-mask-txt p {
        font-size: 12px;
    }

    .section02 .big-img-box .img-box .img-mask .img-mask-txt a {
        width: 90px;
        height: 28px;
        font-size: 13px;
    }

    .section02 .facilities-section::after {
        top: -60px;
        height: 1100px;
    }

    .section02 .facilities-section-inner {
        flex-direction: column;
        padding: 45px 25px;
        min-width: unset;
        gap: 30px 0;
    }

    .section02 .slider-text li:nth-of-type(1) {
        font-size: 26px;
    }

    .section02 .slider-text li:nth-of-type(2) {
        font-size: 16px;
    }

    .section02 .slider-text li:nth-of-type(3) {
        font-size: 13px;
    }

    .slider-wrap {
        min-width: 100%;
        height: 380px;
        margin-top: 40px;
    }

    .slider-wrap .swiper {
        height: 380px;
    }

    .card-top {
        left: 0;
        right: auto;
        top: 0;
        width: 52%;
        height: 175px;
        border-radius: 20px;
    }

    .card-text {
        left: 0;
        right: auto;
        bottom: 0;
        width: 52%;
        height: 190px;
        border-radius: 20px;
        padding: 20px;
        flex-direction: column;
    }

    .grid-card .text-card h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .grid-card .text-card p {
        font-size: 12px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-right {
        left: auto;
        right: 0;
        top: 0;
        width: 46%;
        height: 380px;
        border-radius: 20px;
    }

    .card-top,
    .card-text {
        width: calc(56% - 10px);
    }

    .card-right {
        width: calc(46% - 5px);
    }

    .slider-text li.custom-pagination {
        padding-top: 25px;
    }

    .section02 .big-img-box .img-box .img-mask {
        border-radius: 20px;
    }

    /* section03 */
    .section03 {
        padding: 60px 24px;
    }
    .section03-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .section03-text h3 {
        font-size: 26px;
    }
    .section03Swiper .swiper-slide {
        width: 100% !important;
        flex-direction: column;
        gap: 24px;
    }
    .section03Swiper .slide-img {
        width: 100%;
        height: 280px;
        border-radius: 20px;
    }
    .section03Swiper .slide-content h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    .section03Swiper .slide-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .section03-pagination {
        margin-top: 28px;
        padding-left: 0;
    }

    /* section04 */
    .map-text {
        width: 90%;
        margin: 0 auto;
        bottom: 25px;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 30px;
    }

    .map-text h3 {
        font-size: 20px;
        font-weight: 300;
    }

    .map-text span {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .map-text p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .map-text a {
        font-size: 13px;
    }
}
