@charset "utf-8";

/* ===================================================
   이용안내 페이지 CSS - facilityGuide.css
   =================================================== */

/* 시설 카드 공통 */
.facilityCard {
    background: #fff;
    border-radius: 1.6rem;
    box-shadow: 0 0.4rem 2.4rem rgba(45, 106, 79, 0.08);
    margin-bottom: 4rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.facilityCard:last-child {
    margin-bottom: 0;
}
.facilityCard:hover {
    box-shadow: 0 0.8rem 3.2rem rgba(45, 106, 79, 0.14);
}

/* 카드 헤더 */
.facilityCard-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem 3.5rem;
    background: #eef5f0;
    border-bottom: 1px solid #e0e0e0;
}
.facilityCard-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    background: #2d6a4f;
    flex-shrink: 0;
    box-shadow: 0 0.2rem 0.8rem rgba(45, 106, 79, 0.3);
}
.facilityCard-icon .material-symbols-outlined {
    font-size: 2.8rem;
    color: #fff;
}
.facilityCard-titleArea {
    flex: 1;
}
.facilityCard-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1b4332;
    margin: 0;
    line-height: 130%;
}
.facilityCard-sub {
    font-size: 1.5rem;
    color: #888;
    margin: 0.4rem 0 0 0;
}

/* 카드 바디 */
.facilityCard-body {
    padding: 3rem 3.5rem;
}

/* 시설 갤러리 */
.facilityGallery {
    margin-bottom: 3rem;
    border-radius: 1.2rem;
    overflow: hidden;
}
.facilitySwiper {
    width: 100%;
    aspect-ratio: 16 / 7;
    border-radius: 1.2rem;
}
.facilitySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.facilitySwiper .swiper-button-prev,
.facilitySwiper .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}
.facilitySwiper .swiper-button-prev:hover,
.facilitySwiper .swiper-button-next:hover {
    background: rgba(45, 106, 79, 0.6);
}
.facilitySwiper .swiper-button-prev::after,
.facilitySwiper .swiper-button-next::after {
    font-size: 1.6rem;
    font-weight: 700;
}
.facilitySwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    width: 1rem;
    height: 1rem;
}
.facilitySwiper .swiper-pagination-bullet-active {
    background: #2d6a4f;
    opacity: 1;
}

/* 이용 정보 */
.facilityInfo {
    display: flex;
    gap: 2rem;
}
.infoItem {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 2rem 2.5rem;
    background: #f0f5f2;
    border-radius: 1.2rem;
}
.infoItem > .material-symbols-outlined {
    font-size: 3rem;
    color: #2d6a4f;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.infoItem strong {
    display: block;
    font-size: 1.5rem;
    color: #2d6a4f;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.infoItem p {
    font-size: 1.6rem;
    color: #444;
    margin: 0;
    line-height: 160%;
}

/* 주의사항 카드 */
.cautionHeader {
    background: #eef5f0;
    border-bottom: 1px solid #e0e0e0;
}
.cautionIcon {
    background: #1b4332 !important;
    box-shadow: 0 0.2rem 0.8rem rgba(27, 67, 50, 0.3) !important;
}

/* 주의사항 리스트 */
.cautionList {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cautionList li {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid #f5f5f5;
}
.cautionList li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.cautionList li:first-child {
    padding-top: 0;
}
.cautionNum {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: #e8f5e9;
    color: #1b4332;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}
.cautionList p {
    font-size: 1.6rem;
    color: #444;
    line-height: 170%;
    margin: 0;
    padding-top: 0.3rem;
}

/* ===================================================
   반응형 - 1199px 이하
   =================================================== */
@media (max-width: 1199px) {
    .facilitySwiper {
        aspect-ratio: 16 / 8;
    }
}

/* ===================================================
   반응형 - 767px 이하
   =================================================== */
@media (max-width: 767px) {
    .facilityCard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 2.5rem 2rem;
    }
    .facilityCard-icon {
        width: 4.4rem;
        height: 4.4rem;
    }
    .facilityCard-icon .material-symbols-outlined {
        font-size: 2.2rem;
    }
    .facilityCard-title {
        font-size: 2rem;
    }
    .facilityCard-body {
        padding: 2rem;
    }
    .facilityInfo {
        flex-direction: column;
    }
    .infoItem {
        padding: 1.6rem 2rem;
    }
    .facilitySwiper {
        aspect-ratio: 4 / 3;
    }
    .facilitySwiper .swiper-button-prev,
    .facilitySwiper .swiper-button-next {
        width: 3.6rem;
        height: 3.6rem;
    }
    .facilitySwiper .swiper-button-prev::after,
    .facilitySwiper .swiper-button-next::after {
        font-size: 1.3rem;
    }
    .cautionList li {
        gap: 1.2rem;
        padding: 1.2rem 0;
    }
    .cautionNum {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.3rem;
    }
    .cautionList p {
        font-size: 1.5rem;
    }
}

/* ===================================================
   반응형 - 480px 이하
   =================================================== */
@media (max-width: 480px) {
    .facilityCard {
        border-radius: 1.2rem;
        margin-bottom: 2.5rem;
    }
    .facilityCard-header {
        padding: 2rem 1.5rem;
    }
    .facilityCard-body {
        padding: 1.5rem;
    }
    .infoItem {
        padding: 1.4rem 1.5rem;
    }
    .infoItem > .material-symbols-outlined {
        font-size: 2.4rem;
    }
    .infoItem strong {
        font-size: 1.4rem;
    }
    .infoItem p {
        font-size: 1.4rem;
    }
    .cautionList p {
        font-size: 1.4rem;
    }
}
