/* 616Stay 首頁樣式 — 蒂芬妮綠 #6CC4A1 ＋ 淺粉 #F8E1E1 */
:root{
  --primary:#6CC4A1;
  --primary-dark:#4CAE8B;
  --pink:#F8E1E1;
  --bg:#FAFAFA;
  --text:#222;
  --muted:#6b7280;
  --white:#fff;
  --radius:16px;
}

*{box-sizing:border-box}
body{
  margin:0; font-family: 'Noto Sans TC', system-ui, -apple-system, Segoe UI, Roboto, 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  color:var(--text); background:var(--bg);
}
a{ color:inherit; text-decoration:none }
.container{ width:min(1120px, 92%); margin:auto }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:12px; font-weight:700; cursor:pointer;
  transition:.2s;
}
.btn-primary{ background:var(--primary); color:var(--white) }
.btn-primary:hover{ background:var(--primary-dark) }

.home .hero{
  background: linear-gradient(180deg, var(--primary) 0%, #8BD8BF 100%);
  color:#fff; padding:56px 0 32px; position:relative; overflow:hidden;
}
.hero__title{ font-size:40px; margin:0 0 6px 0; letter-spacing:1px }
.hero__subtitle{ margin:0 0 20px 0; opacity:.95 }

.searchbar{
  display:grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap:10px;
  background:var(--white); border-radius:20px; padding:10px; margin:10px 0 18px;
}
.searchbar label{ display:block; font-size:12px; color:var(--muted); margin:6px 0 4px }
.searchbar select, .searchbar input[type="date"]{
  width:100%; height:42px; border:1px solid #e5e7eb; border-radius:10px; padding:0 10px; font-size:15px;
  background:#fff;
}
.searchbar .btn{ height:42px; padding:0 18px }

.hero__badges{ display:flex; gap:12px; list-style:none; padding:0; margin:8px 0 0 0 }
.hero__badges li{
  background:rgba(255,255,255,.2); border:1px solid rgba(255,255,255,.3); padding:8px 12px; border-radius:999px; font-size:13px
}

/* Section */
.section{ padding:36px 0 }
.section__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px }
.section__head h2{ margin:0; font-size:22px }
.link-more{ color:#0f766e; font-weight:700 }

/* Inns Grid */
.grid{ display:grid; gap:16px }
.grid-inns{ grid-template-columns: repeat(3, 1fr) }
@media (max-width: 1024px){ .grid-inns{ grid-template-columns: repeat(2,1fr) } }
@media (max-width: 640px){ .grid-inns{ grid-template-columns: 1fr } }

.inn-card{
  background:#fff; border:1px solid #eef0f2; border-radius:16px; overflow:hidden; display:flex; flex-direction:column;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
}
.inn-card__thumb{ width:100%; padding-top:62%; background:#ddd center/cover no-repeat }
.inn-card__body{ padding:14px }
.inn-card__title{ margin:0 0 6px; font-size:18px; font-weight:800 }
.inn-card__meta{ color:#6b7280; font-size:13px; margin-bottom:8px }
.inn-card__price{ margin-top:6px; font-weight:800; color:#0f766e }

/* Topic slider */
.topic-slider{ display:flex; gap:12px; overflow:auto; padding-bottom:6px; scroll-snap-type:x mandatory }
.topic-item{
  min-width:260px; scroll-snap-align:start; background:#fff; border:1px solid #eef0f2; border-radius:16px;
  display:flex; align-items:center; gap:12px; padding:10px 10px 10px 0;
}
.topic-item__thumb{ width:120px; height:78px; background:#ddd center/cover no-repeat; border-radius:12px 0 0 12px }
.topic-item__title{ font-weight:800 }

/* News */
.grid-news{ grid-template-columns: repeat(2, 1fr) }
@media (max-width: 768px){ .grid-news{ grid-template-columns: 1fr } }
.news-card{
  background:#fff; border:1px solid #eef0f2; border-radius:16px; overflow:hidden; display:flex; flex-direction:column
}
.news-card__thumb{ width:100%; padding-top:56%; background:#ddd center/cover no-repeat }
.news-card__body{ padding:12px }
.news-card__title{ margin:0 0 6px; font-weight:800 }
.news-card__date{ color:#6b7280; font-size:13px }

/* Brand */
.section--brand{ background:var(--pink) }
.brand{ display:grid; grid-template-columns: 1.2fr .8fr; gap:20px; align-items:center }
@media(max-width:900px){ .brand{ grid-template-columns: 1fr } }
.brand__text h2{ margin:0 0 10px }
.brand__text ul{ margin:0; padding-left:18px }
.brand__img{
  height:220px; border-radius:16px; background: url('/assets/img/placeholder/brand.jpg') center/cover no-repeat;
}

/* empty */
.empty{ color:#6b7280; border:1px dashed #e5e7eb; padding:18px; border-radius:12px; text-align:center }

/* 標題＋看更多 共用一列 */
.index-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 左標題、右看更多 */
  margin-bottom: 16px;
}

.index-section-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.index-section-more {
  margin-left: auto;
  font-size: 14px;
  color: #047857;      /* 蒂芬妮綠系，可依你原本顏色調整 */
  text-decoration: none;
}

.index-section-more:hover {
  text-decoration: underline;
}

