/* Room Page Styles */
.room-page {
    width: 100%;
    background: #fff;
}

/* Hero Section  */
.room-page .hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.room-page .hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-page .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.room-page .room-title {
    font-family: "Amandine", "Sans-serif";
    font-weight: 600;
    font-size: 32px;
    color: white;
    letter-spacing: 0.32px;
    margin-bottom: 10px;
}

.room-page .room-subtitle {
    font-family: "Pretendard", sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: white;
}

/* Modal Header */
.room-page .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.room-page .modal-title-wrap {
    display: flex;
    align-items: center;
    height: 100px;
}

.room-page .modal-title-3 {
    font-family: "Amandine", "Sans-serif";
    font-weight: 600;
    font-size: 32px;
    color: #212121;
    letter-spacing: 0.32px;
    margin-left: 57px;
}

.room-page .modal-title-4 {
    font-family: "Pretendard", sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: #212121;
    margin-left: 17px;
}

.room-page .modal-btn-wrap {
    display: flex;
    align-items: center;
    margin-right: 14px;
    gap: 26px;
}

.room-page .share-button,
.room-page .close-button {
    z-index: 11;
    cursor: pointer;
    background-color: white;
}

/* Content Container */
.room-page .content-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-bottom: 100px;
    background-color: white;
}

/* Section Common */
.room-page section {
    margin: 80px 0;
}

/* Gallery Section */
.room-page .gallery-section {
    margin-top: 0;
}

.room-page .slide-wrap {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    padding-left: 56px;
    padding-right: 56px;
}

/* Info Section */
.room-page .info-section {
    padding: 0;
}

.room-page .info-box {
}

.room-page .section-title {
    font-family: "Amandine", sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.55px;
    color: #212121;
    margin-bottom: 18px;
}

.room-page .section-line {
    width: 100%;
    height: 1px;
    background-color: #212121;
    margin: 18px 0;
}

.room-page .section-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0;
    color: #212121;
}

.room-page .floor-plan-img {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.room-page .floor-plan-img img {
    width: 100%;
    max-width: fit-content;
}

.room-page .info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
    margin-top: 30px;
    margin-bottom: 100px;
    padding-left: 56px;
    padding-right: 56px;
}

/* Facility Section */
.room-page .facility-section {
    margin-bottom: 100px;
}

.room-page .facility-content {
    margin: 0 56px;
}

.room-page .facility-title {
    width: fit-content;
    font-family: "Amandine", "Sans-serif";
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.55px;
    color: #212121;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #212121;
}

.room-page .facility-desc {
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
}

/* Reservation Section */
.room-page .reservation-section {
    margin: 0;
    padding: 0 56px;
    background: white;
}

.room-page .reservation-title {
    font-family: "Pretendard", sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 34px;
    color: #212121;
    letter-spacing: 0;
    margin: 100px 0 25px;
    text-align: center;
}

.room-page .reservation-info {
    margin-top: 80px;
    background: white;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.room-page .info-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    color: #000;
    letter-spacing: -0.4px;
    border-top: 1px solid rgba(0, 0, 0);
    border-bottom: 1px solid rgba(0, 0, 0);
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    transition: none;
}

.room-page .info-title:hover {
    color: #000;
}

.room-page .info-title.info-title-sub {
    margin-top: -1px;
    border-top: unset;
    font-size: 16px;
}

.room-page .info-title .plus-icon,
.room-page .info-title .minus-icon {
    width: 13px;
    height: 13px;
    transition: all 0.3s ease;
}

.room-page .info-title .minus-icon {
    display: none;
}

.room-page .info-title.active .plus-icon {
    display: none;
}

.room-page .info-title.active .minus-icon {
    display: block;
}

.room-page .info-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    letter-spacing: -0.4px;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.room-page .info-desc-collapse {
    max-height: 0;
    overflow: hidden;
    /*transition: max-height 0.4s ease;*/
    padding: 0;
}

.room-page .info-desc-collapse.show {
    max-height: 1000px;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 30px;

    border-bottom: 1px solid rgba(0, 0, 0);
}

.room-page .info-desc p {
    line-height: 24px;
    margin-bottom: 0;
}

/* Reservation Link */
.room-page .reservation-link {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.room-page .reservation-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 119px;
    height: 47px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: #a95252;
    border: 1px solid #a95252;
    letter-spacing: 0.7px;
    background-color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

.room-page .reservation-link a:hover {
    background-color: #a95252;
    color: #FFFFFF;
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .room-page .hero-section {
        height: 350px;
    }
    
    .room-page .room-title {
        font-size: 24px;
    }
    
    .room-page .room-subtitle {
        font-size: 20px;
    }
    
    .room-page .content-container {
        padding-bottom: 60px;
    }
    
    .room-page .slide-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .room-page .info-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 60px;
    }
    
    .room-page .facility-content {
        margin: 0 20px;
    }
    
    .room-page .reservation-section {
        padding: 0 20px;
    }
    
    .room-page .reservation-title {
        font-size: 22px;
        margin: 60px 0 20px;
    }
    
    .room-page .reservation-info {
        margin-top: 40px;
    }
}