/* ============================================
   共用基礎樣式：顏色、字體、導覽列
   首頁與舊頁面都會載入這份檔案，改一次全站同步
   ============================================ */

/* 舊頁面手機版基礎樣式：
   舊主題把內容區固定寫死 970px / 830px 寬，手機打開會被迫縮小整頁、字都看不清楚。
   這裡讓內容區、圖片、多欄位表格在小螢幕上改成可伸縮、直向堆疊。 */
@media screen and (max-width: 700px) {
  .container {
    width: 100% !important;
    box-sizing: border-box;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  #main-wrap .container {
    width: 100% !important;
    padding: 20px 16px !important;
  }

  #wsite-content img,
  .wsite-image img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Weebly 多欄位排版(例如房間資訊頁最上面那排 FB／優惠／按鈕)，
     手機上改成一欄一欄往下疊，不要三欄擠在一起 */
  .wsite-multicol-table,
  .wsite-multicol-tbody,
  .wsite-multicol-tr,
  .wsite-multicol-col {
    display: block !important;
    width: 100% !important;
  }

  .wsite-multicol-col {
    padding: 8px 0 !important;
    text-align: center !important;
  }

  /* 交通指南/住宿須知頁的頂部橫幅圖：桌面版寫死 287px 高 + 從左上角裁切，
     手機窄螢幕下裁掉太多、看不出照片內容，改成矮一點的高度、從正中央裁切 */
  body.wsite-theme-light .wsite-header {
    height: 160px !important;
    background-position: center center !important;
  }
}

/* Weebly 相簿輪播小工具在子路徑環境下會壞掉(照片網址寫死成網站根目錄)，
   暫時隱藏，等 Step 4 房型頁重新設計時換成自己寫的相簿元件 */
.wslide {
  display: none;
}

/* 修正舊版主題「白底白字」看不到的按鈕(舊版佈景色彩設定被移除後跑出來的問題) */
a.wsite-button-highlight,
a.wsite-button-highlight .wsite-button-inner {
  background: var(--color-primary) !important;
  color: #fff !important;
  border-color: var(--color-primary) !important;
}

/* 舊頁面背景圖是 Weebly 內建的通用棕色系模糊室內照，跟新版品牌色系無關，
   先換成跟新配色一致的深磚色漸層當作全站暫時的底色。
   已改版的頁面(.legacy-redesign，見下方區塊)會再蓋掉這個規則，
   改用滿版分區塊的新版排版；尚未改版的頁面繼續維持這個深色底，
   讓頁面裡大量既有的淺色系 <font color> 文字仍然可讀 */
body.wsite-theme-light {
  background-image: linear-gradient(180deg, var(--color-primary-dark), var(--color-primary));
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ---------- 舊頁面改版：滿版分區塊排版(套用在 .legacy-redesign 頁面) ----------
   問題根源：舊佈景 files/main_style.css 裡 #main-wrap .container 寫死
   background-color: rgba(0,0,0,0.7) + width: 830px，內容因此被關在
   一個置中的黑色方框裡，兩側留白，跟首頁滿版分區塊的視覺不一致。
   這裡拆掉那個方框，改成跟首頁一樣：每個內容區塊各自滿版撐開、
   分區塊底色交錯(米色/白色)，區塊內再用一個置中的內容欄寬限制文字寬度 */
body.wsite-theme-light.legacy-redesign {
  background: var(--color-cream);
  background-image: none;
}

.legacy-redesign #main-wrap .container {
  background: none;
  width: auto;
  max-width: none;
  min-height: 0;
  padding: 0;
}

.legacy-redesign #wsite-content {
  padding: 0;
}

.legacy-section {
  padding: 50px 20px;
  background: var(--color-white);
}

.legacy-section--alt {
  background: var(--color-cream);
}

.legacy-section__inner {
  max-width: 1050px;
  margin: 0 auto;
}

/* 舊頁面內文大量用彩色 <font color>(橘/粉/黃/綠/紫...)，是為了在原本的
   深色底圖上維持可讀性而配的；滿版分區塊改用淺色底之後這些顏色會看不清楚，
   統一改回品牌的標題色/內文色，也順便解決「各分頁風格不一致」的問題 */
.legacy-section .wsite-content-title,
.legacy-section .wsite-content-title font[color] {
  color: var(--color-text-heading) !important;
  font-family: var(--font-heading);
}

.legacy-section .paragraph,
.legacy-section .paragraph font[color] {
  color: var(--color-text-body) !important;
}

/* 距離資訊卡片(10/20/30分鐘路程)：原本用彩色文字區分三個時間帶，
   改版後用卡片+標題色塊區分，不再依賴顏色本身傳遞意義 */
.distance-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.distance-card {
  background: var(--color-white);
  border: 1px solid rgba(139,74,58,0.15);
  border-radius: 8px;
  padding: 16px 18px;
}

.distance-card__title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 8px;
}

.distance-card__text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin: 0;
}

@media screen and (max-width: 700px) {
  .distance-cards {
    grid-template-columns: 1fr;
  }
}

/* 優惠活動頁「周邊精選景點」：圖片+文字左右並排、垂直置中對齊，
   單數/雙數交錯排版，文字用真實活動內容、加上顏色跟表情符號讓版面活潑一點 */
.activity-feature {
  display: flex;
  align-items: stretch;
  gap: 30px;
  margin-bottom: 44px;
}

.activity-feature:last-child {
  margin-bottom: 0;
}

.activity-feature--reverse {
  flex-direction: row-reverse;
}

.activity-feature__media {
  flex: 0 0 42%;
}

/* 圖片內建文字容易被裁到，改用 contain 完整顯示整張照片，
   高度跟著旁邊文字欄位的高度走(align-items:stretch)，不同活動的圖文區塊高度可以不同 */
.activity-feature__media .promo-card__carousel {
  height: 100%;
  min-height: 200px;
  max-height: 420px;
  border-radius: 10px;
  background: var(--color-cream);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.activity-feature__media .promo-card__carousel img {
  object-fit: contain;
}

.activity-feature__text {
  flex: 1;
  min-width: 0;
}

.activity-feature__title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 21px;
  margin: 0 0 12px;
}

.activity-feature__body {
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text-body);
}

.activity-feature__body strong {
  color: var(--color-text-heading);
}

.activity-feature__source {
  font-size: 11px;
  color: var(--color-text-body);
  opacity: 0.65;
  margin: 10px 0 0;
}

@media screen and (max-width: 700px) {
  .activity-feature,
  .activity-feature--reverse {
    flex-direction: column;
    gap: 14px;
  }

  .activity-feature__media {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Facebook 粉絲專頁連結卡片：原本需要 Facebook SDK 才能顯示完整的嵌入小工具，
   拿掉外部依賴後改用照片+按鈕的靜態卡片樣式 */
.fb-follow-card {
  display: block;
  max-width: 220px;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.fb-follow-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.fb-follow-card__body {
  padding: 8px 10px;
}

.fb-follow-card__name {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--color-text-heading);
  font-weight: bold;
}

.fb-follow-card__btn {
  display: block;
  text-align: center;
  background: #1877f2;
  color: #fff;
  font-size: 12px;
  padding: 6px 0;
  border-radius: 4px;
}

.fb-follow-card__btn i {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  vertical-align: -1px;
  background: #fff;
  border-radius: 3px;
}

/* 房型頁暫用的靜態照片，等後台上線後可換成可管理的相簿 */
.room-photo {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 16px auto;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* 房間資訊總覽頁的主圖相簿：主圖+右側縮圖，點縮圖切換主圖，
   純 CSS 做(radio + 對應 id 規則)，不需要額外載入 JS */
.room-gallery {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px auto;
}

.room-gallery__radio {
  display: none;
}

.room-gallery__main {
  position: relative;
  flex: 1;
  min-width: 0;
  aspect-ratio: 16 / 7;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  background: var(--color-cream);
}

.room-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.room-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.room-gallery__thumbs {
  flex: 0 0 84px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 400px;
  overflow-y: auto;
}

.room-gallery__thumb {
  display: block;
  flex: 0 0 auto;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
}

.room-gallery__thumb img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 700px) {
  .room-gallery {
    flex-direction: column;
  }

  /* flex:1 在直向排列時沒有父層明確高度可以撐開，主圖會被壓成 0 高度，
     手機版改用固定寬度+比例，不吃 flex-grow */
  .room-gallery__main {
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .room-gallery__thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
    width: 100%;
  }

  .room-gallery__thumb {
    flex: 0 0 70px;
  }

  .room-gallery__thumb img {
    height: 48px;
  }
}

/* radio 選取狀態對應顯示哪張主圖、哪個縮圖要標示外框 */
#rg-1:checked ~ .room-gallery__main #rg-slide-1,
#rg-2:checked ~ .room-gallery__main #rg-slide-2,
#rg-3:checked ~ .room-gallery__main #rg-slide-3,
#rg-4:checked ~ .room-gallery__main #rg-slide-4,
#rg-5:checked ~ .room-gallery__main #rg-slide-5,
#rg-6:checked ~ .room-gallery__main #rg-slide-6,
#rg-7:checked ~ .room-gallery__main #rg-slide-7,
#rg-8:checked ~ .room-gallery__main #rg-slide-8,
#rg-9:checked ~ .room-gallery__main #rg-slide-9,
#rg-10:checked ~ .room-gallery__main #rg-slide-10,
#rg-11:checked ~ .room-gallery__main #rg-slide-11,
#rg-12:checked ~ .room-gallery__main #rg-slide-12,
#rg-13:checked ~ .room-gallery__main #rg-slide-13,
#rg-14:checked ~ .room-gallery__main #rg-slide-14 {
  opacity: 1;
}

#rg-1:checked ~ .room-gallery__thumbs #rg-thumb-1,
#rg-2:checked ~ .room-gallery__thumbs #rg-thumb-2,
#rg-3:checked ~ .room-gallery__thumbs #rg-thumb-3,
#rg-4:checked ~ .room-gallery__thumbs #rg-thumb-4,
#rg-5:checked ~ .room-gallery__thumbs #rg-thumb-5,
#rg-6:checked ~ .room-gallery__thumbs #rg-thumb-6,
#rg-7:checked ~ .room-gallery__thumbs #rg-thumb-7,
#rg-8:checked ~ .room-gallery__thumbs #rg-thumb-8,
#rg-9:checked ~ .room-gallery__thumbs #rg-thumb-9,
#rg-10:checked ~ .room-gallery__thumbs #rg-thumb-10,
#rg-11:checked ~ .room-gallery__thumbs #rg-thumb-11,
#rg-12:checked ~ .room-gallery__thumbs #rg-thumb-12,
#rg-13:checked ~ .room-gallery__thumbs #rg-thumb-13,
#rg-14:checked ~ .room-gallery__thumbs #rg-thumb-14 {
  border-color: var(--color-primary);
}

/* 價格/提醒字卡(房間資訊頁) */
.price-card {
  background: var(--color-white);
  border: 1px solid rgba(139,74,58,0.15);
  border-radius: 8px;
  padding: 18px 22px;
  max-width: 460px;
  margin: 20px auto;
  text-align: center;
}

.price-card__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  font-size: 19px;
  margin: 0 0 12px;
}

.price-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: var(--color-text-body);
  padding: 6px 0;
  border-top: 1px solid rgba(139,74,58,0.1);
}

.price-card__row:first-of-type {
  border-top: none;
}

.price-card__row strong {
  color: var(--color-primary);
}

.note-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}

.note-card {
  background: var(--color-white);
  border: 1px solid rgba(139,74,58,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-body);
  max-width: 520px;
  text-align: left;
}

.note-card strong {
  color: var(--color-text-heading);
}

/* 房型名稱標題 */
.room-type-name {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  text-align: left;
  font-size: 24px;
  font-weight: bold;
}

/* 房型子頁(蜻蜓/甲蟲/蝴蝶/白鷺鷥)：房名用標題色，房價用主色點出重點，
   客房設備標題用標題色，其餘維持一般內文色 */
.legacy-section .paragraph.room-detail-title,
.legacy-section .paragraph.room-detail-title font[color] {
  color: var(--color-text-heading) !important;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

/* 房型/包棟頁的段落小標題(住宿須知/客房設備等)，統一用標題咖啡色+粗體，
   底下說明文字則維持一般內文色，字級跟設備清單一致(18px) */
.room-section-title {
  color: var(--color-text-heading);
  font-weight: bold;
  font-size: 19px;
  margin: 0 0 10px;
}

.room-baodong-row {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0;
}

.room-baodong-row .room-photo {
  flex: 1;
  min-width: 260px;
  margin: 0;
  max-width: none;
}

.room-baodong-row .room-baodong-notice {
  flex: 1;
  min-width: 240px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-body);
}

#main-wrap .room-facilities-list {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text-body);
}

/* 舊佈景 #main-wrap .paragraph li 有自己的項目符號圖片(theme/bullets.png)，
   要蓋掉它，不然會跟下面 ::before 產生的菱形符號疊在一起變成兩個點 */
#main-wrap .room-facilities-list li {
  position: relative;
  padding-left: 22px !important;
  background: none !important;
  list-style: none !important;
}

.room-facilities-list li::before {
  content: "\25C6";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: var(--color-primary);
}

.legacy-section .paragraph.room-rate strong,
.legacy-section .paragraph.room-rate font[color] {
  color: var(--color-primary) !important;
}

.legacy-section .paragraph font[color="#76e9c7"] {
  color: var(--color-text-heading) !important;
  font-weight: bold;
}

.room-type-name .room-type-name__en {
  display: block;
  font-size: 16px;
  opacity: 0.75;
  margin-top: 2px;
}

/* 房型照片：固定比例裁切框，四張大小一致 */
.room-type-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* 房間資訊頁最上方：臉書卡片 / 好康文字 / 優惠按鈕，維持左右分散排列，
   用 flex align-items:center 對齊三者的垂直中心點，不用 margin 手動校正 */
.room-promo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin: 10px 0;
}

@media screen and (max-width: 700px) {
  .room-promo-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

/* 房間資訊頁：價格卡 + 早餐提醒卡並排，兩者一樣寬、一樣高(跟著較高的一邊撐開) */
.room-price-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 20px 0;
}

.room-price-row .price-card,
.room-price-row .note-cards {
  margin: 0;
  flex: 1;
  min-width: 260px;
  max-width: none;
}

.room-price-row .note-card {
  max-width: none;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.room-price-row .note-card__text {
  width: 100%;
}

/* 舊佈景 .wsite-button-small 內文字級太小(14px)，統一調成跟站內其他文字一致 */
.wsite-button-inner {
  font-size: 18px;
}

/* 線上付款頁：付款步驟 + 付款截圖並排。步驟欄位固定夠寬的寬度，
   避免中文字被舊版表格窄欄(原本只有25%寬)硬切成兩行 */
.payment-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 20px 0;
}

.payment-row .direction-steps {
  flex: 0 0 340px;
}

.payment-row__image {
  flex: 1;
  min-width: 280px;
}

.payment-row__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
}

/* 交通指南頁：開車路線步驟列表 */
.direction-steps__intro {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text-heading);
  margin: 0 0 14px;
  text-align: center;
}

.direction-steps__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.direction-steps__list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 16px 36px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-body);
  text-align: left;
}

.direction-steps__list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

:root {
  --color-primary: #8b4a3a;
  --color-primary-light: #a86753;
  --color-primary-dark: #654235;
  --color-secondary: #5c6e4a;
  --color-cream: #f5f3ef;
  --color-text-body: #4a4740;
  --color-text-heading: #6b2e20;
  --color-white: #ffffff;
  --font-base: Arial, "Microsoft JhengHei", sans-serif;
  --font-heading: "Architects Daughter", "Microsoft JhengHei", sans-serif;
}

/* ---------- 導覽列 ---------- */

.site-header {
  position: relative;
  width: 100%;
  background: var(--color-white);
  border-bottom: 3px solid var(--color-primary);
  font-family: var(--font-base);
  z-index: 100;
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-logo {
  color: var(--color-text-heading);
  font-family: var(--font-heading);
  font-size: 22px;
  text-decoration: none;
  letter-spacing: 1px;
}

.site-logo span {
  font-size: 14px;
  color: var(--color-text-body);
  opacity: 0.75;
  display: block;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  color: var(--color-text-heading);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.site-nav__list a {
  color: var(--color-text-body);
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
  color: var(--color-primary);
}

/* 手機版：漢堡選單 */
@media screen and (max-width: 860px) {
  .nav-toggle-label {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 14px;
  }
}

/* ---------- 浮動聯絡按鈕 ---------- */

.floating-contact {
  position: fixed;
  left: 0;
  top: 45%;
  z-index: 200;
  display: flex;
  flex-direction: column;
}

.floating-contact a {
  display: block;
  width: 64px;
  padding: 10px 0;
  text-align: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
}

.floating-contact .fc-phone { background: #4caf50; }
.floating-contact .fc-line { background: #06c755; }
.floating-contact .fc-fb { background: #1877f2; }

.floating-contact img {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 4px;
}

/* 手機版螢幕窄，浮動聯絡按鈕縮小一點，避免佔掉太多版面 */
@media screen and (max-width: 700px) {
  .floating-contact a {
    width: 44px;
    padding: 6px 0;
    font-size: 9px;
  }

  .floating-contact img {
    width: 16px;
    height: 16px;
    margin: 0 auto 2px;
  }
}

/* ---------- 共用頁尾 ---------- */

.site-footer {
  background: var(--color-primary-dark);
  color: #ede0d5;
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
  line-height: 1.8;
}

/* 舊版主題的 p{font-size:18px} 規則權重比 .site-footer 高，
   要指定到 p 才能讓兩種頁面(首頁/舊頁面)的頁尾字級一致 */
.site-footer p {
  font-size: 13px;
  margin: 0 0 6px;
}

.site-footer a {
  color: #f2c9a8;
  text-decoration: none;
}

.site-footer p.site-footer__copyright {
  margin-top: 10px;
  opacity: 0.7;
  font-size: 12px;
}

.site-footer__fb-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}

.site-footer__fb-icon img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  border-radius: 4px;
}

/* ---------- 優惠活動頁：年曆海報 + 精選景點卡片 ---------- */

.promo-poster {
  display: block;
  max-width: 480px;
  width: 100%;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.promo-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.promo-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.promo-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* 純 CSS 相片輪播，不依賴外部套件 */
.promo-card__carousel {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.promo-card__carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: promoFade4 20s infinite;
}

/* 每張照片輪播顯示 5 秒 */
.promo-card__carousel img:nth-child(1) { animation-delay: 0s; }
.promo-card__carousel img:nth-child(2) { animation-delay: 5s; }
.promo-card__carousel img:nth-child(3) { animation-delay: 10s; }
.promo-card__carousel img:nth-child(4) { animation-delay: 15s; }

@keyframes promoFade4 {
  0% { opacity: 1; }
  22% { opacity: 1; }
  28% { opacity: 0; }
  100% { opacity: 0; }
}

.promo-card__carousel--pair img {
  animation-name: promoFade2;
  animation-duration: 10s;
}
.promo-card__carousel--pair img:nth-child(1) { animation-delay: 0s; }
.promo-card__carousel--pair img:nth-child(2) { animation-delay: 5s; }

@keyframes promoFade2 {
  0% { opacity: 1; }
  45% { opacity: 1; }
  55% { opacity: 0; }
  100% { opacity: 0; }
}

.promo-card__body {
  padding: 14px 16px;
  text-align: center;
}

.promo-card__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  font-size: 18px;
  margin: 0 0 0px;
}

.promo-card__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0;
}

@media screen and (max-width: 700px) {
  .promo-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ---------- 頁面內聯絡資訊卡片 ---------- */

.contact-card {
  background: var(--color-cream);
  border-left: 4px solid var(--color-primary);
  border-radius: 6px;
  padding: 18px 20px;
  flex: 1;
  min-width: 260px;
  max-width: 420px;
}

.contact-card__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  font-size: 18px;
  margin: 0 0 10px;
}

.contact-card p {
  font-size: 18px;
  color: var(--color-text-body);
  margin: 0 0 4px;
}

.contact-card a {
  color: var(--color-primary);
}

/* 住宿須知頁：匯款資訊圖 + WeChat Pay QR code 並排 */
.notice-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 20px 0;
}

.notice-row > div:first-child {
  flex: 1;
  min-width: 280px;
}

.notice-row > div:last-child {
  flex: 0 0 220px;
  max-width: 220px;
}

@media screen and (max-width: 700px) {
  .notice-row {
    justify-content: center;
  }
}

/* 服務項目字卡 + 聯絡資訊卡片並排 */
.service-contact-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 20px 0;
}

.service-cards {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(139,74,58,0.15);
  border-radius: 8px;
  padding: 12px 18px;
}

.service-card__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-body);
}
