header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff; /* 或你網站主色，例如 #fef6e4 */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 30px;
}

/* 可選：讓 header 底下內容不被遮住，可在 body 加 margin-top */
body {
  margin-top: 80px; /* 視你的 header 高度調整 */
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #fff;
  color: #333;
}
header {
  background-color: #f26522;
  color: white;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  height: 50px;
}
nav a {
  color: white;
  margin: 0 1em;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background-color: #f26522;
  color: white;
  padding: 4em 2em;
  text-align: center;
}
.hero h1 {
  font-size: 3em;
  margin: 0.3em 0;
}
.section {
  padding: 3em 2em;
  max-width: 1000px;
  margin: auto;
}
.section h2 {
  text-align: center;
  color: #f26522;
}
.rooms, .explore {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2em;
}
.card {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  padding: 0.5em;
  margin: 0;
  background: #f26522;
  color: white;
}
.card p {
  padding: 1em;
}
.cta {
  text-align: center;
  margin: 4em 0;
}
.cta a {
  background: #f26522;
  color: white;
  padding: 1em 2em;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
}
footer {
  background: #333;
  color: white;
  padding: 2em;
  text-align: center;
  font-size: 0.9em;
}
.social-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-floating a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.social-floating a img:hover {
  transform: scale(1.1);
}
body {
  font-family: "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fdfdfd;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo img {
  height: 50px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #446979;
  font-weight: bold;
}

.hero {
  background-color: #e36c16;
  color:#fff; 
  text-align: center;
  padding: 40px 20px;
}

.section {
  padding: 40px 20px;
  text-align: center;
}

.rooms, .explore {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  width: 300px;
  cursor: pointer;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.card h3 {
  margin-top: 10px;
  font-size: 1.2em;
  color: #ffffff;
}

.card p {
  font-size: 0.95em;
  color: #555;
}

/* ✅ Modal 圖片跳窗 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
}

.modal-img {
  max-width: 90%;
  max-height: 80vh;
  margin-top: 30px;
}

.close {
  position: absolute;
  top: 20px; right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-size: 30px;
  transform: translateY(-50%);
}

.prev { left: 0; }
.next { right: 0; }

/* ✅ Google 評價輪播 */
.reviews {
  background-color: #fafafa;
  padding: 40px 20px;
  text-align: center;
}

.review-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  min-height: 80px;
}

.review {
  display: none;
  font-size: 1.1em;
  color: #444;
}

/* ✅ Call to Action */
.cta {
  text-align: center;
  margin: 40px 0;
}

.cta a {
  padding: 12px 24px;
  background-color: #446979;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

/* ✅ Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  padding: 20px;
  background-color: #eee;
}

/* ✅ 社群浮動按鈕 */
.social-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-floating img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* ✅ 響應式手機排版 */
@media (max-width: 768px) {
  .rooms, .explore {
    flex-direction: column;
    align-items: center;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 10px 0;
  }
}

footer {
  background-color: #e36c16; /* logo 橘色 */
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.two-column .half {
  flex: 1 1 450px;
  max-width: 600px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.review-slider {
  min-height: 100px;
  margin-top: 20px;
}

.review {
  display: none;
  font-size: 1.1em;
  color: #444;
  text-align: left;
}

@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
    gap: 20px;
  }
}

.plan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  padding-top: 20px;
}

.plan-card {
  flex: 1 1 280px;
  background-color: #fef6e4;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.plan-card h3 {
  text-align: center;
  color: #e36c16;
  margin-bottom: 10px;
}

.plan-card ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .plan-grid {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 90%;
  }
}

.double-image {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  padding-top: 20px;
}

.double-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 手機版漢堡按鈕樣式 */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #e36c16;
}

/* RWD 手機版導覽列樣式 */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    z-index: 1000;
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  header {
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 10px 30px;
    z-index: 999;
  }

  nav a {
    margin: 10px 0;
    text-align: right;
  }
}


.checkin-rules li {
  padding: 10px 15px;
  line-height: 1.6;
}

.checkin-rules {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.checkin-rules li {
  padding: 12px 20px;
  line-height: 1.8;
  font-size: 1em;
  color: #444;
  border-radius: 8px;
  margin-bottom: 8px;
}

.checkin-rules li:nth-child(odd) {
  background-color: #fef6e4; /* 淺米色 */
}

.checkin-rules li:nth-child(even) {
  background-color: #ffffff; /* 白色 */
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}


.faq-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list li {
  padding: 12px 20px;
  line-height: 1.8;
  font-size: 1em;
  color: #444;
  border-radius: 8px;
  margin-bottom: 8px;
}

.faq-list li:nth-child(odd) {
  background-color: #fef6e4; /* 淺米色 */
}

.faq-list li:nth-child(even) {
  background-color: #ffffff; /* 白色 */
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}


/* opening */

.intro-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: #f26522;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 1s ease 1.98s forwards;
}

.intro-content {
  text-align: center;
  color: white;
  animation: zoomIn 1.2s ease;
}

.intro-content img {
  width: 40vw; /* 螢幕寬度 40% */
  max-width: 280px;
  margin-bottom: 24px;
}

.intro-content h1 {
  font-size: 2em;
  letter-spacing: 2px;
  margin: 0;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Google 評價文字優化 */
.review-slider {
    min-height: 120px; /* 固定高度防止切換時畫面跳動 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.review {
    font-size: 1.25rem !important; /* 加大字體 */
    line-height: 1.6 !important;   /* 增加行間距，閱讀更輕鬆 */
    color: #444444 !important;    /* 深灰色文字，比純黑更有質感 */
    font-weight: 500 !important;
    text-align: center;
    padding: 20px !important;
    background-color: #FFF5EB !important; /* 淡淡的橘色背景，符合主題 */
    border-radius: 10px !important;
    border-left: 5px solid var(--brand-orange) !important; /* 左側橘色邊框強調 */
    box-shadow: 2px 2px 10px rgba(0,0,0,0.05) !important;
}
