/* styles.css */
:root{
  --bg: #0d1f2d;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.12);
  --accent: #4fd1c5;
  --accent2:#7aa7ff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --max: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
}

html{
  background: #0d1f2d;
}

html::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;

  background:
    radial-gradient(120vh 80vh at 20% 10%, rgba(79,209,197,.30), transparent 60%),
    radial-gradient(100vh 70vh at 85% 25%, rgba(122,167,255,.28), transparent 60%),
    radial-gradient(110vh 90vh at 60% 90%, rgba(255,255,255,.10), transparent 65%),
    #0d1f2d;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 22px 18px 60px; }

/* Header */
.topbar{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap: 14px;
  padding: 10px 0 18px;
}
.right-head{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap: 10px;
}

.brand{ display:flex; align-items:center; gap: 12px; user-select:none; }
.logo-img{
  width:42px;
  height:42px;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}
.brand h1{ margin:0; font-size: 16px; letter-spacing:.5px; }
.brand p{ margin:0; color: var(--muted); font-size: 12px; }

.navbtns{ display:flex; gap:10px; flex-wrap: wrap; justify-content:flex-end; }
.chip{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.chip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.20);
  color: var(--text);
}
.chip-btn{ cursor:pointer; }
.lang-switch .chip.active{
  border-color: rgba(79,209,197,.55);
  background: rgba(79,209,197,.12);
  color: rgba(255,255,255,.92);
}
.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
}
/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 6px;
}
@media (max-width: 920px){
  .hero{ grid-template-columns: 1fr; }

  .right-head{
    align-items: flex-end;   /* 改這裡 */
  }

  .navbtns{
    justify-content: flex-end;
  }
}

.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.hero-left{ padding: 22px 22px 18px; }
.badge{
  display:inline-flex; gap: 8px; align-items:center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 12px;
}
.dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(79,209,197,.12);
}
.headline{
  margin: 12px 0 8px;
  font-size: clamp(26px, 3.3vw, 40px);
  line-height: 1.18;
  letter-spacing: .3px;
}
.sub{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  max-width: 60ch;
}

.cta-row{ display:flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 10px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 14px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
}
.btn.primary{
  border-color: rgba(79,209,197,.35);
  background: linear-gradient(135deg, rgba(79,209,197,.18), rgba(122,167,255,.12));
}
.btn.primary:hover{ border-color: rgba(79,209,197,.55); }

/* Booking list style */
.booking-block{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.booking-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom: 14px;
}

.booking-list{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.list-btn{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  transition: all .2s ease;
  font-weight: 600;
}

.list-btn:hover{
  transform: translateX(4px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}

.list-btn .left{
  display:flex;
  align-items:center;
  gap: 10px;
}

.list-btn .dot{
  width:10px;
  height:10px;
  border-radius:50%;
}

.fb-dot{ background:#1877F2; }
.ig-dot{ background:#E1306C; }
.line-dot{ background:#06C755; }

.list-btn .arrow{
  opacity:.6;
}
@media (max-width: 680px){
  .booking-buttons{ grid-template-columns: 1fr; }
}

.big-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  min-height: 74px;
}
.big-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.20);
}

.big-btn .ico{
  width: 44px; height: 44px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 20px;
  flex: 0 0 auto;
}
.big-btn .txt{
  display:flex;
  flex-direction:column;
  gap: 3px;
  min-width: 0;
  flex: 1 1 auto;
}
.big-btn .t{
  font-weight: 800;
  letter-spacing:.2px;
}
.big-btn .s{
  font-size: 12px;
  color: rgba(255,255,255,.68);
}
.big-btn .go{
  opacity: .7;
  flex: 0 0 auto;
}

/* Brand hints */
.big-btn.fb{ border-color: rgba(24,119,242,.35); }
.big-btn.fb:hover{ background: rgba(24,119,242,.10); border-color: rgba(24,119,242,.55); }

.big-btn.ig{ border-color: rgba(225,48,108,.35); }
.big-btn.ig:hover{ background: rgba(225,48,108,.10); border-color: rgba(225,48,108,.55); }

.big-btn.line{ border-color: rgba(6,199,85,.35); }
.big-btn.line:hover{ background: rgba(6,199,85,.10); border-color: rgba(6,199,85,.55); }

/* FB embed */
.hero-right{ padding: 14px; display:flex; flex-direction: column; gap: 10px; }
.embed-head{
  display:flex; align-items:center; justify-content: space-between; gap: 10px;
  padding: 10px 10px 0;
  color: var(--muted);
  font-size: 13px;
}
.embed-box{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
  min-height: 520px;
  flex: 1;
}
.embed-box iframe{ width:100%; height:100%; border:0; }
.fallback{
  display:none;
  position:absolute; inset:0;
  padding: 18px;
  align-content:center;
  text-align:left;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.25));
}
.fallback h3{ margin:0 0 6px; font-size: 16px; }
.fallback p{ margin:0 0 12px; color: var(--muted); }

/* Sections */
section{ margin-top: 22px; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap: 12px;
  margin: 26px 0 12px;
}
.section-head h2{ margin:0; font-size: 20px; letter-spacing:.4px; }
.section-head p{ margin:0; color: var(--muted); font-size: 13px; }

/* Price list */
.price-list{ display:flex; flex-direction:column; gap:20px; }
.price-block{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 20px;
}
.price-block h3{
  margin:0 0 14px;
  font-size:18px;
  border-bottom:1px solid rgba(255,255,255,.12);
  padding-bottom:8px;
}
.price-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
  border-bottom:1px dashed rgba(255,255,255,.12);
}
.price-row:last-child{ border-bottom:none; }
.price-row strong{ font-size:15px; }
.price-row small{
  color:rgba(255,255,255,.65);
  font-size:12px;
}
.price{
  text-align:right;
  font-weight:600;
  font-size:15px;
  white-space:nowrap;
}

/* Footer */
footer{
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tiny{ opacity:.9; }

.phone-dot{ background:#ff9f1c; }

.list-btn.phone{
  border-color: rgba(255,159,28,.35);
}
.list-btn.phone:hover{
  background: rgba(255,159,28,.10);
  border-color: rgba(255,159,28,.55);
}

/* Contact Section */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 920px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

.contact-info{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 20px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.contact-row{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:14px;
}

.contact-row strong{
  font-size:13px;
  color: rgba(255,255,255,.65);
}

.map-box{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  min-height:350px;
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
}