/* 폰트 */
@import url('/css/font.css');

/* 기본 세팅 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Apple SD Gothic Neo", "맑은 고딕", "Malgun Gothic", sans-serif;
    line-height: 1.2;
    color: #333;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

:root {
    --accent: #3ea6c7;
    --accent-dark: #3CA3BB;
    --gray-light: #f7f8fa;
    --gray-mid: #eee;
    --gold-dark: #b38859;
    --max-width: 1280px;
}

/* 공통 레이아웃 */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

.accent-dark {
    background: var(--accent-dark) !important;
}

.section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 56px;
    letter-spacing: 0;
    color: var(--accent-dark);
    font-family: 'nanummyeongjo';
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.section-heading h3 {
    font-size: 45px;
    letter-spacing: 0;
    color: var(--accent-dark);
    font-family: 'nanummyeongjo';
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid var(--accent-dark);
    display: inline-block;
}

.section-heading p {
    font-size: 24px;
    color: #333;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-heading span {
    font-size: 24px;
    color: var(--accent-dark);
    font-weight: 400;
}

.max-w {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

.section-heading img {
    margin: 40px auto;
}

.newline {
    display: block;
    height: 80px;
}

.newline.line {
    width: 1px;
    background: var(--accent-dark);
    margin: 0 auto 30px;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 16px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    font-size: 14px;
}

.nav a {
    position: relative;
    padding-bottom: 4px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width 0.2s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* 햄버거 버튼 (모바일) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: none;
    background: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
}

/* HERO */
.hero {
    font-family: "Paperozi";
    position: relative;
    height: 70vh;
    min-height: 540px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 400;
}

.hero-title {
    font-size: 50px;
    letter-spacing: .2rem;
    font-weight: 600;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 60px;
    padding: 6px 10px;
    cursor: pointer;
}

.hero-arrow-left {
    left: 16px;
}

.hero-arrow-right {
    right: 16px;
}

/* ABOUT */
.about {
    background: #fff;
}

.about-logo {
    text-align: center;
    margin-bottom: 24px;
}

.about-logo img {
    width: 180px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 34px;
    font-family: 'Pretendard';
}

.about-text p+p {
    margin-top: 10px;
}

.about-image {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    background-image: url(/images/main/about-building.png);
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main-btn {
    margin: 0 auto 20px;
    display: flex;
    border: 1px solid var(--accent-dark);
    padding: 10px 20px;
    width: 175px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: var(--accent-dark);
    color: #fff;
    cursor: pointer;
}

/*Booking*/
/** BOOKING **/
#bookArea {
    position: relative;
}

.bookWrap {
    width: 100%;
    font-family: 'Malgun Gothic';
}

.bookArea-wrap {
    width: 100%;
    position: absolute;
    bottom: -2.5rem;
}

.bookArea-wrap * {
    box-sizing: border-box;
}

.bookArea-wrap>#bookArea {
    width: 1200px;
    margin: 0 auto;
    z-index: 96;
    position: relative;
    background: #fff;
    border: 1px solid #efefef;
}

.bookArea-wrap ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
    max-width: 1100px;
    background: #fff;
    padding: 1rem;
    box-sizing: border-box;
    justify-content: space-evenly;
    box-shadow: 1px 3px 6px 1px #ccc;
}

.sel_input_box {
    padding: 8px;
    height: 38px;
    position: relative;
    display: flex;
    z-index: 1;
    color: #333;
    font-size: 15px;
    align-items: center;
    border-bottom: 1px solid #efefef;
    font-family: 'NanumSquare';
}

.sel_input_box>span {
    width: 40%;
    float: left;
}

.sabox_none {
    float: right;
    width: 100%;
    height: 30px;
    border: 0;
    background-image: url(/images/icon/icon_calendar.png);
    color: var(--accent-dark);
    font-size: .9rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: right;
    margin: 0;
}

.sabox2 a,
.sabox3 a,
.sabox4 a {
    display: flex;
    cursor: none;
    float: right;
    width: 60%;
    font-weight: bold;
    padding: 6px 0 0 0;
    color: #000;
    font-size: 16px;
    flex-direction: row;
    align-items: center;
}

#ui-datepicker-div {
    z-index: 99 !important;
}

.btn_mc_reservation {
    background: var(--accent-dark);
    width: 140px;
    display: block;
    font-size: 13px;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    border: 0;
}

.kakaotalk {
    background: #fee500;
    padding: 0 16px;
    display: flex;
    height: 47px;
    justify-content: center;
    align-items: center;
}

.kakaotalk img {
    width: 26px;
}

.kakaotalk span {
    font-size: 15px;
    font-weight: 600;
    padding-right: .5rem;
}

.reservation_box ul li {
    float: left;
    margin-left: 12px;
    list-style: none;
}

.reservation_box ul li:first-child {
    margin-left: 0px;
}

.sabox1 {
    width: 173px;
}

.sabox2 {
    width: 210px;
}

.sabox3 {
    width: 230px;
}

.sabox4 {
    width: 130px;
}

.sabox5 {
    width: 110px;
}

.sabox6 {
    width: 110px;
}

.sabox7 {
    width: 142px;
    margin-right: 50px;
}

.sabox2 span,
.sabox3 span,
.sabox4 label {
    padding: 6px 0 0 0;
    display: block;
}

.sel_input_box select {
    position: absolute;
    right: 8px;
    top: 12px;
    display: block;
    font-weight: bold;
    color: var(--accent-dark);
    font-size: 16px;
    border: 0;
    width: 36px;
}

#select_box {
    position: relative;
    background: url(../images/main/icon_select.jpg) right 8px top 16px no-repeat;
}

#select_box label {
    position: absolute;
    font-size: 15px;
    color: #333;
    top: 13px;
    left: 0px;
    letter-spacing: 1px;

}

#select_box option {
    color: #000;
    font-weight: 700;

}

#select_box select#kind {
    width: 100%;
    height: 40px;
    min-height: 40px;
    line-height: 40px;
    padding: 0 10px;
    font-size: 15px;
    opacity: 0;
    filter: alpha(opacity=0);
    /* IE 8 */
}

.date-picker-wrapper:after {
    content: '';
    display: block;
    clear: both;
}

@media all and (max-width: 1220px) {
    #bookArea {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box
    }

    #bookArea .bookIns input,
    #bookArea .bookIns select,
    #bookArea .bookIns button {
        font-size: 21px;
    }
}

@media all and (max-width: 1024px) {
    .bookArea-wrap>#bookArea {
        width: 100% !important;
        border-bottom: 1px solid #e5e5e5;
    }

    #bookArea .bookIns ul li.ci_date .innerBox input {
        max-width: 150px;
    }

    #bookArea .bookIns .fb_rsvn button {
        font-size: 15px;
    }

    #bookArea .bookIns .fb_rsvn button strong {
        font-size: 17px;
    }
}

@media all and (max-width:768px) {
    .bookArea-wrap {
        position: relative;
    }

    #bookArea .bookIns input,
    #bookArea .bookIns select,
    #bookArea .bookIns button {
        font-size: 18px;
    }

    #bookArea .bookIns ul li {
        width: 33.3%;
        height: inherit;
        padding: 18px 0;
    }

    #bookArea .bookIns ul li:after {
        height: 65px;
    }

    #bookArea .bookIns ul li.ci_date .dateWrap:first-child:after,
    #bookArea .bookIns ul li:after {
        height: 90px;
    }

    #bookArea .bookIns .innerBox>em {
        margin-bottom: 0;
        font-size: 17px;
    }

    #bookArea .bookIns input,
    #bookArea .bookIns select,
    #bookArea .bookIns button {
        height: 38px;
        font-size: 21px;
    }

    #bookArea .bookIns ul li.ci_date {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }

    #bookArea .bookIns ul li.ci_date .innerBox input {
        max-width: 65%;
    }

    #bookArea .bookIns ul li.search {
        width: 100%;
        border-bottom: 0;
        padding: 0;
        height: 60px;
    }

    #bookArea .bookIns .fb_rsvn {
        padding: 0;
    }

    #bookArea .bookIns .fb_rsvn button {
        padding: 20px 0;
        font-size: 21px;
    }

    #bookArea .bookIns .fb_rsvn button strong {
        display: inline-block;
        font-size: 21px;
        vertical-align: middle;
        font-weight: 700;
    }

    #bookArea .bookIns .fb_rsvn button span {
        vertical-align: middle;
    }

    .date-picker-wrapper .month-wrapper table .day {
        padding: 11px 0;
    }

    .date-picker-wrapper .first-date-selected:before {
        width: 36px;
        height: 36px;
        border-radius: 18px;
        margin-left: -18px;
    }

    .date-picker-wrapper .first-date-selected:after {
        height: 36px;
    }

    .date-picker-wrapper .last-date-selected:before {
        width: 36px;
        height: 36px;
        border-radius: 18px;
        margin-left: -18px;
    }

    .date-picker-wrapper .last-date-selected:after {
        height: 36px;
    }
}

@media all and (max-width:470px) {
    #bookArea .bookIns .innerBox>em {
        font-size: 16px;
    }

    #bookArea .bookIns ul li {
        padding: 14px 0;
    }

    #bookArea .bookIns ul li.ci_date .dateWrap:first-child:after {
        top: -15px;
    }

    #bookArea .bookIns ul li:after {
        height: 86px;
    }

    #bookArea .bookIns ul li.ci_date .dateWrap:first-child:after {
        height: 86px;
        top: 4px;
    }

    #bookArea .bookIns ul li.ci_date .innerBox input {
        max-width: 75%;
        font-size: 19px;
    }

    #bookArea .bookIns .fb_rsvn button {
        padding: 15px 0;
        font-size: 18px;
    }

    .date-picker-wrapper {
        width: 100%;
        left: 0 !important;
    }

    .date-picker-wrapper .month-wrapper {
        width: 100%;
    }

    .date-picker-wrapper .month-wrapper table,
    .date-picker-wrapper .month-wrapper table.month2 {
        width: 100%;
    }

    .date-picker-wrapper .gap {
        display: none;
    }
}

*/ */

/*Booking*/
/** BOOKING **/
#bookArea {
    position: relative;
}

.bookWrap {
    width: 100%;
    font-family: 'Malgun Gothic';
}

/* hero와 about 사이에 겹쳐 떠있는 상태(초기) */
.bookArea-wrap {
    width: 100%;
    position: absolute;
    bottom: -2.5rem;
    /* 필요하면 높이 조절 */
    left: 0;
    z-index: 96;
}

.bookArea-wrap * {
    box-sizing: border-box;
}

.bookArea-wrap>#bookArea {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    background: #fff;
    border: 1px solid #efefef;
}

/* ▼▼ 새로 추가 ▼▼ */
/* 스크롤 후: 화면 하단에 고정되는 상태 */
.bookArea-wrap.fixedBottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.bookArea-wrap.fixedBottom>#bookArea {
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.24);
}

/* ▲▲ 여기까지 추가 ▲▲ */
/* ROOMS */
.rooms {
    background: var(--gray-light);
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 5rem;
    column-gap: 3rem;
}

.room-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);

}

.room-body {
    padding: 1rem 1rem;
}

.room-type {
    font-size: 18px;
    color: var(--accent-dark);
    padding-left: 2px;
    letter-spacing: 0px;
    font-weight: 400;
}

.room-type-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    max-width: 1280px;
    width: 100%;
    justify-content: space-between;
}

.room-type-cont {
    width: 16%;
    text-align: center;
}

.room-type-cont.composition {
    width: 20%;
}

.room-type-cont img {
    margin: 1rem auto;
    width: 80px;
    opacity: .7;

}

.room-type-cont p {
    color: #999;
    font-size: 15px;
}

.room-type-cont span {
    font-weight: 600;
    margin-bottom: .5rem;
    display: block;
    font-size: 1.1rem;
}

.room-title {
    font-size: 28px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    padding-bottom: .5rem;
    margin-bottom: 1rem;
}

.room-summary {
    margin: .5rem 0;
    line-height: 1.6;
    display: none;
}

.room-info {
    margin: 1rem 0 0;
    font-size: 16px;
    color: #a3a3a3;
}


.room-body button {
    background: #3ea6c7;
    margin: 1.5rem 0 .5rem;
    width: 100%;
    padding: .5rem 0;
    color: #666;
    font-size: 15px;
    border-color: var(--accent-dark);
    border: 0;
    color: #fff;
}

/* EXPERIENCE */
.experience {
    background: #fff;
}

.experience-slider {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.experience-slide {
    display: none;
}

.experience-slide.active {
    display: block;
}

.experience-slide img {
    width: 1280px;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.experience-caption {
    margin-top: 18px;
}

.experience-caption h3 {
    font-size: 28px;
    color: #787878;
    margin: 1.5rem auto .5rem;
}

.experience-caption p {
    font-size: 20px;
    color: #666;
}

.experience-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.exp-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid var(--accent-dark);
    background: transparent;
    cursor: pointer;
}

.exp-dot.active {
    background: var(--accent-dark);
}

/* CONTACT – 새 레이아웃 */
.contact {
    background: #fff;
    padding: 80px 0 0;
    border-top: 1px solid #cacaca;
}

/* Contact 타이틀은 기존 section-heading 스타일 재사용 */
.section-heading-contact {
    margin-bottom: 32px;
}

/* 지도 전체 영역 */
.contact-map-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* 이미지로 쓸 때 */
.contact-map-wrap img {
    width: 100%;
    display: block;
}

/* iframe 쓸 때 공통 */
.contact-map-wrap iframe {
    width: 100%;
    height: 480px;
    display: block;
}

/* 하단 블럭 */
.contact-bottom {
    background: #25a9cf;
    /* 시안의 청록색 배경 */
    padding: 24px 0;
}

.contact-bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

/* 왼쪽 텍스트 */
.contact-bottom-left {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
}

.contact-bottom-left p+p {
    margin-top: 4px;
}

/* 아이콘 느낌만 내는 동그라미(원하면 실제 아이콘 이미지로 교체) */
.contact-bottom-left p::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    vertical-align: -8px;
}

/* 필요하면 각각 다른 아이콘 이미지 적용 */
.contact-address::before {
    background: url("/images/icon_01.png") center/cover no-repeat;
}

.contact-tel::before {
    background: url("/images/icon_02.png") center/cover no-repeat;
}

.contact-mail::before {
    background: url("/images/icon_03.png") center/cover no-repeat;
}

/* 오른쪽 버튼 영역 */
.contact-bottom-right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* 보라색 큰 버튼 */
.btn-contact-main {
    min-width: 360px;
    padding: 16px 40px;
    background: #4650ff;
    /* 시안의 보라색 느낌 */
    color: #fff;
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-contact-main:hover {
    background: #343ccc;
}

/* 아래 흰색 버튼 2개 */
.contact-bottom-subbtns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.btn-contact-sub {
    padding: 12px 24px;
    background: #fff;
    border: none;
    color: #333;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border-radius: 999px;
}

.btn-contact-sub:hover {
    background: #f2f2f2;
}

/* 안에 아이콘 이미지를 쓸 경우 정렬용 */
.btn-contact-sub img {
    height: 18px;
    margin-right: 6px;
}

/* 반응형 */
@media (max-width: 1024px) {
    .contact-map-wrap iframe {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding-top: 60px;
    }

    .contact-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .contact-bottom-right {
        width: 100%;
        align-items: stretch;
    }

    .btn-contact-main {
        width: 100%;
        min-width: 0;
    }

    .contact-bottom-subbtns {
        width: 100%;
        justify-content: space-between;
    }

    .btn-contact-sub {
        flex: 1 1 auto;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-map-wrap iframe {
        height: 360px;
    }

    .contact-bottom-left {
        font-size: 14px;
    }
}

/* FOOTER */
.footer {
    background: #222;
    color: #aaa;
    font-size: 12px;
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
}

.footer-left p+p {
    margin-top: 4px;
}

.footer-left p span {
    font-weight: 600;
    color: #C8C8C8;
}

.footer-right {
    margin-left: auto;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.footer-links a {
    color: #ddd;
    font-size: 11px;
}

.footer-sns {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    justify-content: flex-end;
}

.footer-sns a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding-inline: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .nav.open {
        max-height: 240px;
    }

    .nav ul {
        flex-direction: column;
        padding: 12px 16px 16px;
        gap: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-title {
        font-size: 18px;
    }

    .section {
        padding: 0px 0;
    }

    .container {
        padding: 1rem;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 52px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 0.1em;
    }

    .room-image img {
        width: 100%;
        height: auto;
    }

    .experience-slide img {
        border-radius: 8px;
    }
}

#naverMap {
    width: 100%;
    height: 520px;
}

@media (max-width: 1024px) {
    #naverMap {
        height: 420px;
    }
}

@media (max-width: 768px) {
    #naverMap {
        height: 360px;
    }
}



/* room-spec 전체를 가로 정렬 */
.room-card .room-spec {
    list-style: none;
    margin: 1rem 0 0;
    padding: 1rem 0 0;
    display: flex;
    align-items: stretch;
    /* 각 칸 높이 동일 */
    gap: 3px;
    /* 필요하면 간격 추가 */
    font-size: 14px;
    justify-content: space-between;
    border-top: 1px dashed #efefef;
}

.room-card .room-spec:first-child {
    border-top: 0;
    padding-top: 0;
}

/* 각 li를 동일한 "스펙 칸"으로 */
.room-card .room-spec>li {
    flex: 0 0 60px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;

}

.room-card .room-spec>li.q-s {
    flex: 0 0 70px;
}

/* ✅ 아이콘(이미지) 높이 고정: 아이콘 라인 정렬 핵심 */
.room-card .room-spec>li img {
    display: block;
    height: 34px;
    /* 아이콘 라인 고정 */
    width: auto;
    margin: 0 0 10px 0;
    object-fit: contain;
}

/* ✅ 텍스트 영역: 줄수가 달라도 높이를 일정하게 확보 */
.room-card .room-spec>li>span {
    display: block;
    line-height: 1.35;
    min-height: 40px;
    /* (1~2줄 기준) 필요시 44~48로 */
    word-break: keep-all;
}

/* 1번째 li(호수)는 아이콘이 없으니, 아이콘 자리만큼 패딩으로 맞춤 */
.room-card .room-spec>li:first-child {
    justify-content: flex-start;
    flex: 0 0 45px;
    font-size: 1rem;
    color: var(--accent-dark);
}

.room-card .room-spec>li:first-child::before {
    content: "";
    display: block;
    height: 24px;
    /* img 높이와 동일 */
    margin-bottom: 10px;
    /* img 아래 여백과 동일 */
}

/* VIEW 버튼 칸 */
.room-card .room-spec>li.view_btn {
    flex: 0 0 65px;
    /* 버튼 칸 너비 고정(원하는 값으로) */
    justify-content: center;
    padding: 0;
}

.room-card .room-spec>li.view_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 480px) {
    .room-card .room-spec {
        flex-wrap: wrap;
        padding: .5rem;
        justify-content: flex-start;
    }

    .room-card .room-spec>li {
        flex: 0 0 32% !important;
        margin-bottom: 1rem;
    }

    .room-card .room-spec>li:first-child {
        padding: .5rem 0;
        background: var(--accent-dark);
        color: #fff;
    }

    .room-card .room-spec>li:first-child::before {
        content: "";
        display: block;
        height: 0%;
        margin-bottom: 0px;
    }

    .room-card .room-spec>li:first-child,
    .room-card .room-spec>li.view_btn {
        flex: 100% !important;
    }

    .room-card .room-spec>li.view_btn a {
        background: #fff;
        padding: .5rem;
        border: 1px solid var(--accent);
        color: var(--accent-dark);
    }
}

/* ===== ROOM IMAGE FADE SLIDER ===== */

/* 슬라이더가 붙은 room-image만 */
/* 슬라이더가 붙은 room-image만 */
.room-image.slider {
    position: relative;
    overflow: hidden;
    height: 260px;
    /* 기본: 메인 카드용 높이 */
}

/* 룸 상세 페이지의 큰 이미지 */
.room-detail-visual .room-image.slider {
    height: 640px;
}

/* 이미지 묶음 컨테이너 (있어도 되고 없어도 됨) */
.room-image.slider .slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 모든 이미지를 겹쳐놓고 opacity로만 제어 */
.room-image.slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* 현재 보이는 슬라이드 */
.room-image.slider img.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

/* 버튼 공통 */
.room-image.slider .slider-prev,
.room-image.slider .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.room-image.slider .slider-prev:hover,
.room-image.slider .slider-next:hover {
    background: rgba(0, 0, 0, .55);
}

.room-image.slider .slider-prev {
    left: 10px;
}

.room-image.slider .slider-next {
    right: 10px;
}

/* dot 인디케이터 */
.room-image.slider .slider-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.room-image.slider .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.room-image.slider .slider-dot.active {
    width: 18px;
    background: #fff;
}

/* 모바일에서 살짝 낮춤 */
@media (max-width: 768px) {
    .room-image.slider {
        height: 220px;
    }

    .room-detail-visual .room-image.slider {
        height: 260px;
    }
}

/* ===== ROOM DETAIL SUB PAGE ===== */
.sub-hero-room {
    height: 260px;
    margin-top: 56px;
    /* 헤더 높이 만큼 */
}

.sub-hero-room .sub-hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}


.room-sub-header .breadcrumb {
    font-size: 16px;
    color: #fff;
    padding: 12px 0;
}

.room-sub-header .breadcrumb a {
    color: #fff;
}

.room-sub-header .breadcrumb span {
    margin: 0 4px;
}

.room-title-wrap {
    display: block;
    padding: 40px 0 20px;
}

.room-summary-wrap {
    display: block;
}

.room-sub-title {
    font-size: 40px;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--accent-dark);
}

.room-sub-desc {
    font-size: 18px;
    text-align: justify;
    word-break: keep-all;
    line-height: 1.4;
}

/* ROOM DETAIL – breadcrumb dropdown 스타일 */
.room-sub-header.accent-dark {
    background: var(--accent-dark);
    border-bottom: none;
    color: #fff;
}

/* 상단 파란 바 안의 네비게이션 */
.room-sub-header .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

/* HOME 동그란 아이콘 */
.breadcrumb-home {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-home .icon-home {
    width: 14px;
    height: 14px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translate(1px, -1px);
    border-radius: 2px 0 0 0;
}

/* 상단 pill 버튼 공통 */
.breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

.breadcrumb-pill.is-active {
    background: #fff;
    color: var(--accent-dark);
}

/* 화살표 모양 */
.breadcrumb-arrow-down,
.breadcrumb-arrow-up {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.breadcrumb-arrow-down {
    transform: rotate(-45deg);
    margin-top: -1px;
}

.breadcrumb-arrow-up {
    transform: rotate(135deg);
    margin-top: 2px;
}

/* 드롭다운 랩퍼 */
.breadcrumb-dropdown-wrap {
    position: relative;
}

.breadcrumb-dropdown-wrap .breadcrumb-pill {
    cursor: pointer;
}

/* 흰색 드롭다운 박스 */
.breadcrumb-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 12px 0;
    background: #fff;
    color: #222;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 50;
}

.breadcrumb-dropdown a {
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    white-space: nowrap;
}

.breadcrumb-dropdown a.active {
    color: var(--accent-dark);
    font-weight: 700;
}

.breadcrumb-dropdown a:hover {
    background: #f5f5f8;
}

/* 호버 시 드롭다운 노출 */
.breadcrumb-dropdown-wrap:hover .breadcrumb-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 모바일에서 약간 여백 조정 */
@media (max-width: 768px) {
    .room-sub-header .breadcrumb-nav {
        padding: 8px 0;
        gap: 10px;
        font-size: 13px;
    }

    .breadcrumb-pill {
        padding: 6px 12px;
    }

    .breadcrumb-dropdown {
        min-width: 180px;
    }
}

/* 호수 탭 */
.room-no-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.room-no-tab {
    min-width: 120px;
    padding: 8px 16px;
    border: 0;
    font-size: 16px;
    background: #c8c8c8;
    color: #fff;
    cursor: pointer;
}

.room-no-tab.active {
    background: #25a9cf;
}

/* 상세 영역 */
.room-detail {
    padding: 0px 0 80px;
}

.room-detail-visual {
    margin-bottom: 30px;
}

.room-detail-section {
    margin-top: 32px;
}

.room-detail-section+.room-detail-section {
    margin-top: 64px;
}

.room-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.room-detail-heading {
    font-size: 22px;
    margin-bottom: 12px;
    padding: .5rem 0;
    border-bottom: 1px solid var(--accent-dark);
    color: var(--accent-dark);
}

/* 테이블 */
.room-type-table {
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-collapse: collapse;
    font-size: 13px;
}

.room-type-table th,
.room-type-table td {
    padding: 12px 16px;
    border-top: 1px solid #eee;
}

.room-type-table th {
    background: #f7f7f7;
    font-weight: 600;
}

/* 어메니티 */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    font-size: 13px;
}

.amenities-grid div {
    padding-left: 1rem;
    margin: 1rem;
}

.amenities-grid h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;

}

.amenities-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-grid li {
    list-style: none;

    margin-bottom: 7px;
    line-height: 1.2;
    color: #333;
    font-size: 16px;

}

.amenities-grid li+li {
    margin-top: 4px;
}

/*호텔 정보*/
.hotel-info {
    padding: 1rem;
}

.hotel-info dl {
    counter-reset: dt-counter;
}

.hotel-info dt,
.hotel-info dd {
    line-height: 1.4;
}

.hotel-info dt {
    position: relative;
    padding-left: 24px;
}

.hotel-info dl dt:nth-of-type(n+2) {
    margin-top: 8px;
}

.hotel-info dd {
    padding-left: 24px;
    color: #888;
    font-weight: 300;
}

/* 카운터 초기화 */
.hotel-info dt::before {
    counter-increment: dt-counter;
    /* 카운터 증가 */
    content: counter(dt-counter) ". ";
    /* 숫자 표시 */
    font-weight: normal;
    position: absolute;
    top: 0;
    left: 0;
}

.hotel-info li {
    list-style: none;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    margin-bottom: 7px;
    line-height: 1.5;
    color: #333;
    font-size: 16px;
    width: 100%;
}

.hotel-info li::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 5px;
    width: 3px;
    height: 3px;
    background-color: #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* 버튼 */
.room-detail-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.room-detail-actions .btn,
.reservation-cont .btn {
    min-width: 160px;
    padding: 1rem 0;
    font-size: 16px;
    background: #fff;
    border: 1px solid var(--accent-dark);
    color: var(--accent-dark);
    cursor: pointer;
}

.btn.primary {
    color: #fff;
    background: var(--accent-dark);
}

/* 예약정보 */
.reservation-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #ddd;
    padding: 1rem;
    box-sizing: border-box;
    background: var(--gray-light);
}

.reservation-wrap .line {
    background-color: #eaeaea;
    height: 67px;
    width: 1px;
}

.reservation-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reservation-cont img {
    display: none;
}

/* 반응형 */
@media (max-width: 768px) {
    .sub-hero-room {
        height: 200px;
    }

    .room-title-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   ROOM DETAIL – subTop / breadcrumb
   PIC .subTop .inner 느낌
=========================== */

.subTop {
    background: #21249a;
    /* PIC처럼 진한 블루 톤 */
    color: #fff;
}

.subTop .inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0px 16px;
    display: flex;
    align-items: center;
}

/* 네비게이션 정렬 */
.subTop .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* HOME 아이콘 (PIC 좌측 집 아이콘 느낌) */
.breadcrumb-home {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .8);
    align-items: center;
    justify-content: center;
}

.breadcrumb-home .icon-home {
    width: 14px;
    height: 14px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translate(1px, -1px);
    border-radius: 2px 0 0 0;
}

/* 1depth 버튼 (PIC, GUAM 같은 텍스트) */
.breadcrumb-depth1 {
    border: none;
    background: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.chevron-down,
.chevron-up {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.chevron-down {
    transform: rotate(-45deg);
}

.chevron-up {
    transform: rotate(135deg);
}

/* 2depth pill (PIC소개 부분 느낌) */
.breadcrumb-depth2 {
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    background: #fff;
    color: #21249a;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* 드롭다운 전체 래퍼 */
.breadcrumb-dropdown-wrap {
    position: relative;
}

/* 드롭다운 박스 자체 (흰색 라운드, 그림자) */
.breadcrumb-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 230px;
    padding: 12px 0;
    background: #fff;
    color: #222;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 50;
}

/* 작은 삼각형 꼬리 */
.breadcrumb-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 32px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, .04);
}

/* 드롭다운 항목들 */
.breadcrumb-dropdown a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
}

/* 활성 페이지 – 핑크 컬러 (PIC의 포인트 색) */
.breadcrumb-dropdown a.active {
    color: #ff0a7a;
    font-weight: 700;
}

/* hover 시 배경 */
.breadcrumb-dropdown a:hover {
    background: #f6f6fb;
}

/* 호버 시 드롭다운 열림 (PIC처럼) */
.breadcrumb-dropdown-wrap:hover .breadcrumb-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 반응형 정리 */
@media (max-width: 768px) {
    .subTop .inner {
        padding: 10px 12px;
    }

    .subTop .breadcrumb-nav {
        gap: 12px;
        font-size: 13px;
    }

    .breadcrumb-depth2 {
        padding: 6px 14px;
        font-size: 13px;
    }

    .breadcrumb-dropdown {
        min-width: 200px;
    }
}

/* ===========================
   LOCATION ROW (Haevichi style)
   =========================== */
.location-row {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.location-inner {
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.location-inner>a.loc-item[aria-label="Home"] {
    width: 34px;
    height: 34px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.location-inner>a.loc-item[aria-label="Home"] img {
    width: 24px;
    height: 24px;
    display: block;
}

.loc-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.loc-item+.loc-item::before {
    content: "";
    margin-right: 14px;
    font-size: 14px;
    line-height: 1;
    width: 1px;
    height: 40px;
    background: var(--gray-mid);
}

.loc-btn {
    border: none;
    background: transparent;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 2px;
    cursor: pointer;
    white-space: nowrap;
}

.loc-caret {
    width: 8px;
    height: 8px;
    border-left: 1px solid #777;
    border-bottom: 1px solid #777;
    transform: rotate(-45deg);
    margin-top: -1px;
    transition: transform .2s ease;
}

.loc-item.is-open .loc-caret {
    transform: rotate(135deg);
    margin-top: 2px;
}

.loc-drop {
    position: fixed;
    left: 0;
    top: 0;
    width: auto;
    max-width: calc(100vw - 16px);
    min-width: 150px;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
    padding: 10px 0;
    z-index: 9999;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .14s ease, transform .14s ease, visibility 0s linear .14s;
}

.loc-item.is-open .loc-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.loc-item.open-up .loc-drop {
    transform: translateY(-8px);
}

/* loc-drop 잔상(페이드) 속도 개선: 닫힐 때 더 빠르게 */
.loc-item:not(.is-open) .loc-drop {
    transition: opacity .10s ease, transform .10s ease, visibility 0s linear .10s;
}

.loc-item.open-up.is-open .loc-drop {
    transform: translateY(0);
}

.loc-drop a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: #111;
    white-space: nowrap;
}

.loc-drop a:hover {
    background: #f5f6f8;
}

.loc-drop a.active {
    font-weight: 700;
    color: var(--accent-dark, #0a0a0a);
}

@media (max-width: 768px) {
    .location-inner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .location-inner::-webkit-scrollbar {
        display: none;
    }
}

/* HERO VIDEO (index.html의 .hero hero-video / .hero-video-bg 대응) */
.hero.hero-video {
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 핵심: 배경처럼 꽉 차게 */
    object-position: center;
    z-index: 0;
}

/* 필요하면 오버레이를 영상 위로 */
.hero.hero-video .hero-overlay {
    position: relative;
    z-index: 1;
}

/* 예약 바 겹침 방지용 여백 */
body.has-bookarea-fixed {
    padding-bottom: 110px;
    /* bookArea 높이에 맞게 조정 */
}

#ui-datepicker-div {
    z-index: 999 !important;
}


/* ===========================
   ROOM FAQ
   =========================== */
.room-faq .faq-list {
    border-top: 1px solid #e9e9e9;
}

.room-faq .faq-item {
    border-bottom: 1px solid #e9e9e9;
}

.room-faq summary {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 1rem;
    background: #E6F3F7;
}

.room-faq summary::-webkit-details-marker {
    display: none;
}

.room-faq summary::after {
    content: "＋";
    font-size: 18px;
    line-height: 1;
}

.room-faq details[open] summary::after {
    content: "－";
}

.room-faq .faq-answer {
    margin-top: 10px;
    color: #444;
    font-size: 14px;
    line-height: 1.7;
    padding: 1rem;
}

.room-faq .faq-answer p {
    margin: 0 0 6px;
}








/* 헤더가 어떤 레이어보다 위로 오게 */
.header {
    z-index: 20000;
}

/* 모바일에서 열리는 nav가 다른 요소에 안 눌리게 */
@media (max-width: 480px) {
    .nav {
        z-index: 20001;
    }
}

/*브랜드*/
@media (max-width: 480px) {
    .section-heading h2 {
        font-size: 36px;
    }

    .section-heading p {
        font-size: 20px;
        letter-spacing: -1px;
    }

    .section-heading span {
        font-size: 18px;
    }

    .newline {
        display: none;
    }
}

/*부킹관련*/

@media (max-width: 480px) {
    .bookArea-wrap ul {
        flex-wrap: wrap;
        padding: .5rem;
        justify-content: space-between;
    }

    .bookArea-wrap ul li {
        width: 50%;
        padding-left: 0;
        margin-left: 0;
        margin-bottom: .5rem;
    }

    .sabox2,
    .sabox4,
    .btn_mc_reservation {
        width: 100%;
    }
}

/*룸-상세*/

@media (max-width: 480px) {
    .room-sub-title {
        font-size: 30px;
    }

    .room-sub-desc {
        font-size: 16px;
    }

    .room-no-tabs {
        overflow-x: auto;
    }

    .room-type-section {
        flex-wrap: wrap;
    }

    .room-type-cont {
        width: 24%;
    }

    .reservation-wrap {
        flex-wrap: wrap;
    }

    .reservation-wrap div {
        flex: 100% !important;
        padding: .5rem 0;
    }

    .reservation-wrap .line {
        display: none;
    }
}

/* 편의 시설 */
@media (max-width: 480px) {
    .section-heading h3 {
        font-size: 36px;
    }
}