/* ============================================
   청율산후조리원 - 객실안내 페이지 스타일
   Rooms Page Styles (Room Guide Page)
============================================ */

/* ========== 메인 콘텐츠 오프셋 ========== */
main {
  padding-top: var(--header-height);
  background-color: #F7F6F3;
}

/* ========== 히어로 섹션 ========== */
.rooms-hero {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.rooms-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== 장인정신 섹션 ========== */
.craftsmanship {
  background-color: #FFFFFF;
  padding: 80px 80px 48px 80px;
}

.craftsmanship__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.craftsmanship__title-row {
  width: 100%;
}

.craftsmanship__title-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.craftsmanship__title-line2 {
  padding-left: 80px;
}

.craftsmanship__title-text {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: #1A1A1A;
  letter-spacing: -1px;
  margin: 0;
}

.craftsmanship__title-text--accent {
  color: #7C9070;
}

.craftsmanship__subtitle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
}

.craftsmanship__subtitle p {
  font-family: 'Plus Jakarta Sans', var(--font-body);
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* 통계 섹션 */
.craftsmanship__stats {
  display: flex;
  width: 100%;
  border-top: 1px solid #E0E0E0;
}

.craftsmanship__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.craftsmanship__stat:first-child {
  padding-left: 0;
}

.craftsmanship__stat:not(:first-child) {
  border-left: 1px solid #E0E0E0;
}

.craftsmanship__stat-number {
  font-family: 'Plus Jakarta Sans', var(--font-body);
  font-size: 32px;
  font-weight: 400;
  color: #7C9070;
}

.craftsmanship__stat-desc {
  font-family: 'Plus Jakarta Sans', var(--font-body);
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* ========== 프리미엄 객실 섹션 ========== */
.lux-interiors {
  background-color: #FFFFFF;
  padding: 64px 80px 80px 80px;
}

.lux-interiors__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lux-interiors__title-row {
  width: 100%;
}

.lux-interiors__title-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lux-interiors__title-line2 {
  padding-left: 80px;
}

.lux-interiors__title-text {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: #1A1A1A;
  letter-spacing: -1px;
  margin: 0;
}

.lux-interiors__title-text--accent {
  color: #7C9070;
}

.lux-interiors__subtitle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.lux-interiors__subtitle p {
  font-family: 'Plus Jakarta Sans', var(--font-body);
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* 이미지 그리드 */
.lux-interiors__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lux-interiors__row {
  display: flex;
  gap: 24px;
}

.lux-interiors__item {
  flex: 1;
  border-radius: 0;
  overflow: hidden;
}

.lux-interiors__item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lux-interiors__item:hover img {
  transform: scale(1.03);
}

.lux-interiors__item--full {
  flex: none;
  width: 100%;
}

/* ========== 반응형 - 태블릿 ========== */
@media (max-width: 1024px) {
  .craftsmanship {
    padding: 60px 40px 40px 40px;
  }

  .craftsmanship__title-line2 {
    padding-left: 40px;
  }

  .craftsmanship__title-text {
    font-size: 36px;
  }

  .craftsmanship__stats {
    flex-wrap: wrap;
  }

  .craftsmanship__stat {
    flex: 1 1 50%;
    min-width: 200px;
  }

  .craftsmanship__stat:nth-child(3) {
    border-left: none;
    border-top: 1px solid #E0E0E0;
  }

  .lux-interiors {
    padding: 48px 40px 60px 40px;
  }

  .lux-interiors__title-line2 {
    padding-left: 40px;
  }

  .lux-interiors__title-text {
    font-size: 36px;
  }

  .lux-interiors__item img {
    height: 300px;
  }
}

/* ========== 반응형 - 모바일 ========== */
@media (max-width: 768px) {
  .rooms-hero {
    height: 300px;
  }

  .craftsmanship {
    padding: 40px 20px 32px 20px;
  }

  .craftsmanship__title-line2 {
    padding-left: 20px;
  }

  .craftsmanship__title-text {
    font-size: 28px;
  }

  .craftsmanship__subtitle p {
    font-size: 13px;
  }

  .craftsmanship__stats {
    flex-direction: column;
  }

  .craftsmanship__stat {
    flex: none;
    width: 100%;
    border-left: none !important;
    border-top: 1px solid #E0E0E0;
    padding: 20px 0;
  }

  .craftsmanship__stat:first-child {
    border-top: 1px solid #E0E0E0;
  }

  .craftsmanship__stat-number {
    font-size: 28px;
  }

  .lux-interiors {
    padding: 32px 20px 48px 20px;
  }

  .lux-interiors__title-line2 {
    padding-left: 20px;
  }

  .lux-interiors__title-text {
    font-size: 28px;
  }

  .lux-interiors__row {
    flex-direction: column;
  }

  .lux-interiors__item img {
    height: 250px;
  }
}
