/* =========================================================
   MONGYA338 ABOUT PAGE - 101.css
   페이지: /mongya/101.php

   화면 구조 대분류
   1. 상단 이미지 슬라이드
   2. 중간 몽야소개 내용
   3. 하단 객실 안내

   사용 이미지
   - /mongya/img/101/01.jpg
   - /mongya/img/101/02.jpg
   - /mongya/img/101/03.jpg
========================================================= */


/* =========================================================
   0. 공통 설정
   - 색상 변수
   - 전체 배경
   - 링크 기본값
========================================================= */

:root {
  --about-cream: #f8efdc;
  --about-sand: #d5c8ac;
  --about-text: #8b867d;
  --about-muted: #9b958a;
  --about-ink: #171717;
  --about-line: rgba(47, 43, 36, 0.2);
  --about-line-strong: rgba(47, 43, 36, 0.32);
  --about-white: #ffffff;
  --about-black: #111111;
  --about-green: #66754d;
  --about-brown: #8a735d;
}

* {
  box-sizing: border-box;
}

.site-main {
  background: var(--about-cream);
}

#page-101 {
  background: var(--about-cream);
}

#page-101 a {
  text-decoration: none;
}


/* =========================================================
   1. 상단 이미지 슬라이드
   - 201.php 상단 슬라이드와 동일한 구조
   - 실제 이미지 경로는 101.php 상단 $hero_slides 배열에서 관리
========================================================= */

#page-101 .room-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #15130f;
  touch-action: pan-y;
  user-select: none;
}

#page-101 .room-hero-track,
#page-101 .room-hero-slide,
#page-101 .room-hero-overlay {
  position: absolute;
  inset: 0;
}

#page-101 .room-hero-track {
  z-index: 1;
}

#page-101 .room-hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.018);
  transition:
    opacity 950ms ease,
    transform 5400ms ease;
  will-change: opacity, transform;
}

#page-101 .room-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

#page-101 .room-hero-overlay {
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.18) 48%,
    rgba(0, 0, 0, 0.44) 100%
  );
  pointer-events: none;
}

#page-101 .room-hero-caption {
  position: absolute;
  left: 50%;
  bottom: 200px;
  z-index: 4;
  width: min(380px, calc(100% - 48px));
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

#page-101 .room-hero-title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}


/* =========================================================
   1-1. 상단 이미지 슬라이드 - PC 좌우 버튼
========================================================= */

#page-101 .room-hero-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-50%);
  cursor: pointer;
  appearance: none;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

#page-101 .room-hero-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#page-101 .room-hero-prev {
  left: 7%;
}

#page-101 .room-hero-next {
  right: 7%;
}

#page-101 .room-hero-prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

#page-101 .room-hero-next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

#page-101 .room-hero-nav:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  transform: translateY(-50%) scale(1.04);
}


/* =========================================================
   1-2. 상단 이미지 슬라이드 - 진행바
========================================================= */

#page-101 .room-hero-status {
  display: grid;
  grid-template-columns: 44px minmax(86px, 1fr) 44px;
  align-items: center;
  gap: 18px;
  width: min(260px, 100%);
  margin: 30px auto 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

#page-101 .room-hero-current {
  text-align: right;
}

#page-101 .room-hero-total {
  text-align: left;
}

#page-101 .room-hero-progress {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#page-101 .room-hero-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes roomHeroProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}


/* =========================================================
   1-3. 상단 이미지 슬라이드 - 태블릿/모바일
========================================================= */

@media (max-width: 991px) {
  #page-101 .room-hero {
    height: 100svh;
    min-height: 760px;
  }

  #page-101 .room-hero-nav {
    display: none !important;
  }

  #page-101 .room-hero-caption {
    bottom: 52px;
  }

  #page-101 .room-hero-title {
    font-size: 17px;
    letter-spacing: 4px;
  }
}

@media (max-width: 560px) {
  #page-101 .room-hero {
    height: 100svh;
    min-height: 780px;
  }

  #page-101 .room-hero-caption {
    bottom: 52px;
    width: calc(100% - 36px);
  }

  #page-101 .room-hero-status {
    grid-template-columns: 34px minmax(76px, 1fr) 34px;
    gap: 12px;
    margin-top: 24px;
    font-size: 12px;
  }
}


/* =========================================================
   2. 중간 몽야소개 내용
   - 좌측: 브랜드 소개 문구
   - 우측: 대표 이미지 / 핵심 정보 / 버튼
========================================================= */

#page-101 .about-detail-section {
  background: var(--about-cream);
  padding: 112px 0 104px;
  color: var(--about-text);
}

#page-101 .about-detail-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

#page-101 .about-detail-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: start;
}


/* =========================================================
   2-1. 중간 몽야소개 내용 - 좌측 소개문
========================================================= */

#page-101 .about-detail-copy {
  max-width: 560px;
}

#page-101 .about-brand {
  margin: 0 0 6px;
  color: #8a857b;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.045em;
}

#page-101 .about-detail-copy h1 {
  margin: 0;
  color: #817c73;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: 0.035em;
}

#page-101 .about-detail-copy h2 {
  margin: 42px 0 0;
  color: #8a857b;
  font-size: clamp(24px, 2.8vw, 33px);
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: -0.08em;
}

#page-101 .about-lead {
  margin: 34px 0 0;
  color: #756f66;
  font-size: 19px;
  line-height: 1.72;
  font-weight: 800;
  letter-spacing: -0.075em;
  word-break: keep-all;
}

#page-101 .about-lead strong {
  display: block;
  font-weight: 800;
}

#page-101 .about-copy-text {
  margin-top: 34px;
}

#page-101 .about-copy-text p {
  margin: 0;
  color: #5f5a52;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

#page-101 .about-copy-text p + p {
  margin-top: 18px;
}

@media (max-width: 560px) {
  #page-101 .about-lead {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 800;
  }
}

/* =========================================================
   2-2. 중간 몽야소개 내용 - 우측 이미지
========================================================= */

#page-101 .about-detail-side {
  width: 100%;
  padding-top: 8px;
}

#page-101 .about-side-image {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

#page-101 .about-side-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


/* =========================================================
   2-3. 중간 몽야소개 내용 - 우측 핵심 정보
========================================================= */

#page-101 .about-info-list {
  width: 100%;
  border-top: 1px solid var(--about-line);
}

#page-101 .about-info-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--about-line);
}

#page-101 .about-info-item strong {
  color: #756f66;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#page-101 .about-info-item span {
  color: #4f4a43;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  letter-spacing: -0.055em;
  word-break: keep-all;
}


/* =========================================================
   2-4. 중간 몽야소개 내용 - 버튼
========================================================= */

#page-101 .about-actions {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 34px;
  flex-wrap: wrap;
}

#page-101 .about-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(47, 43, 36, 0.32);
  color: var(--about-ink);
  background: transparent;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

#page-101 .about-actions a.primary {
  background: var(--about-ink);
  border-color: var(--about-ink);
  color: #fff;
}

#page-101 .about-actions a:hover {
  background: var(--about-ink);
  border-color: var(--about-ink);
  color: #fff;
}


/* =========================================================
   2-5. 중간 몽야소개 내용 - 태블릿/모바일
========================================================= */

@media (max-width: 991px) {
  #page-101 .about-detail-section {
    padding: 78px 0 74px;
  }

  #page-101 .about-detail-inner {
    width: calc(100% - 52px);
  }

  #page-101 .about-detail-row {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  #page-101 .about-detail-side {
    padding-top: 0;
  }

  #page-101 .about-side-image {
    margin-bottom: 32px;
  }
}

@media (max-width: 560px) {
  #page-101 .about-detail-section {
    padding: 64px 0 62px;
  }

  #page-101 .about-detail-inner {
    width: calc(100% - 48px);
  }

  #page-101 .about-detail-row {
    gap: 52px;
  }

  #page-101 .about-brand {
    font-size: 18px;
  }

  #page-101 .about-detail-copy h1 {
    font-size: 52px;
  }

  #page-101 .about-detail-copy h2 {
    margin-top: 34px;
    font-size: 25px;
  }

  #page-101 .about-lead {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.7;
  }

  #page-101 .about-copy-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  #page-101 .about-side-image {
    margin-bottom: 28px;
  }

  #page-101 .about-side-image img {
    aspect-ratio: 1 / 1;
  }

  #page-101 .about-info-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  #page-101 .about-info-item span {
    font-size: 15px;
  }

  #page-101 .about-actions a {
    width: 100%;
  }
}


/* =========================================================
   3. 하단 객실 안내
   - 다른 객실로 이동하는 하단 링크 영역
========================================================= */

#page-101 .about-other {
  background: var(--about-sand);
  padding: 62px 0;
}

#page-101 .about-other-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

#page-101 .about-other a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(47, 43, 36, 0.34);
  color: var(--about-ink);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

#page-101 .about-other a:hover {
  background: var(--about-ink);
  border-color: var(--about-ink);
  color: #fff;
}


/* =========================================================
   3-1. 하단 객실 안내 - 태블릿/모바일
========================================================= */

@media (max-width: 991px) {
  #page-101 .about-other-inner {
    width: calc(100% - 52px);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #page-101 .about-other a {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  #page-101 .about-other-inner {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
  }
}