.park-page {
  --park-blue: #365b73;
  --park-blue-deep: #2f536a;
  --park-text: #ffffff;
  --park-soft: rgba(255, 255, 255, 0.82);
  --park-bubble: rgba(205, 226, 235, 0.78);
  --park-orange: #d65a25;
  --park-gold: #bd850c;

  width: 100%;
  overflow: hidden;
  background: var(--park-blue);
  color: var(--park-text);
  font-family: inherit;
}

.park-section {
  position: relative;
  width: 100%;
}

.park-section-inner {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 72px));
  margin: 0 auto;
}

/* =========================
   Hero
========================= */

.park-hero {
  height: 45vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.park-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.park-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(37, 138, 204, 0.08) 0%,
      rgba(37, 102, 145, 0.18) 46%,
      rgba(37, 77, 98, 0.38) 100%
    );
}

.park-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 70px;
}

.park-hero-en {
  margin-bottom: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.park-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
}

/* =========================
   Common Title / Bubble
========================= */

.park-section-title {
  text-align: center;
}

.park-section-title h2,
.park-lined-title h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
}

.park-section-title p {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 800;
}

.park-lined-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 34px;
  text-align: center;
}

.park-lined-title span {
  display: block;
  width: 92px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.park-lined-title-wide span {
  width: 70px;
}

.park-info-bubble {
  width: min(880px, 100%);
  margin: 0 auto 62px;
  padding: 28px 42px;
  border-radius: 16px;
  background: var(--park-bubble);
  color: #31546a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 12px 28px rgba(0, 0, 0, 0.08);
}

.park-info-bubble p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* =========================
   Overview
   園區總攬：shore01.png + 上下緣強漸淡
========================= */

.park-overview {
  position: relative;
  min-height: 930px; /* 原本 620px，加高 50% */
  padding: 225px 0 248px; /* 原本 150 / 165，加高 50% */
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(
      180deg,
      rgba(43, 83, 106, 0.48) 0%,
      rgba(43, 83, 106, 0.42) 48%,
      rgba(43, 83, 106, 0.58) 100%
    ),
    url("../img/park/shore01.png") center center / cover no-repeat;
}

/* 上緣漸淡 */
.park-overview::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 210px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(54, 91, 115, 1) 0%,
    rgba(54, 91, 115, 0.78) 38%,
    rgba(54, 91, 115, 0.3) 72%,
    rgba(54, 91, 115, 0) 100%
  );
}

/* 下緣漸淡 */
.park-overview::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 230px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(54, 91, 115, 0) 0%,
    rgba(54, 91, 115, 0.44) 38%,
    rgba(54, 91, 115, 0.82) 72%,
    rgba(54, 91, 115, 1) 100%
  );
}

.park-overview-inner {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 72px));
  margin: 0 auto;
}

.park-overview .park-section-title,
.park-overview-copy {
  position: relative;
  z-index: 3;

}


/* =========================
   Map
========================= */

.park-map-section {
  padding: 96px 0 110px;
}

.park-map-shell {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 34px;
  align-items: center;
}

.park-map-main,
.park-map-side img {
  overflow: hidden;
  border-radius: 18px;
}

.park-map-main img,
.park-map-side img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.park-map-main {
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.08);
}

.park-map-side {
  display: grid;
  gap: 18px;
}

.park-map-side img {
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
}

/* =========================
   Rental / Stay Sections
========================= */

.park-space-section {
  padding: 70px 0 90px;
  background:
    linear-gradient(180deg, rgba(48, 86, 108, 0.74), rgba(48, 86, 108, 0.74)),
    url("../img/park/bg-2.png") center top / 100% auto repeat-y;
}

.park-card-list {
  width: min(880px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 54px;
}

.park-photo-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.park-photo-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.park-card-label {
  position: absolute;
  top: 0;
  z-index: 3;
  display: block;
  width: 245px;
  max-width: 42%;
  height: auto;
  border-radius: 0 0 16px 0;
}

.park-card-label-left {
  left: 0;
}

.park-card-label-right {
  right: 0;
  border-radius: 0 0 0 16px;
}

/* =========================
   Public Facilities
========================= */

.park-public-section {
  padding: 82px 0 110px;
  background:
    linear-gradient(180deg, rgba(48, 86, 108, 0.76), rgba(48, 86, 108, 0.78)),
    url("../img/park/bg-2.png") center top / 100% auto repeat-y;
}

.park-public-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.park-public-left {
  display: flex;
  flex-direction: column;
}

.park-public-main-photo,
.park-public-side-photo,
.park-service-bubble,
.park-service-card {
  overflow: hidden;
  border-radius: 28px;
}

.park-public-main-photo {
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
}

.park-public-main-photo img,
.park-public-side-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.park-public-small-bubbles {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 36px;
}

.park-service-bubble {
  width: 100%;
  min-height: 118px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 64px 92px 1fr;
  align-items: center;
  column-gap: 22px;
  padding: 24px 36px;
  background: rgba(175, 199, 215, 0.92);
  color: #fff;
  overflow: hidden;
}

.park-service-bubble-light {
  background: rgba(226, 203, 170, 0.94);
}


.park-service-bubble img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  justify-self: center;
}

.park-service-bubble-title {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.park-service-bubble-text {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}


.park-service-bubble-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.park-service-bubble-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.park-service-bubble-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.park-service-bubble-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
}

.park-public-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

.park-service-card {
  min-height: 130px;
  padding: 24px 34px;
  color: #fff;
}

.park-service-card-orange {
  background: var(--park-orange);
}

.park-service-card-gold {
  background: var(--park-gold);
}

.park-service-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.park-service-card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.park-service-card-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.park-service-card h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.park-service-check-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
  padding-left: 66px;
}

.park-service-check-grid-2x2 {
  grid-template-columns: 1fr 1fr;
}

.park-service-check-grid span {
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.park-public-side-photo {
  height: 178px;
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   Map public facilities image tuning
   讓 img/park/7.png 不被放太大，也避免資訊被裁切
========================= */
.park-map-public-img {
  height: 130px !important;
  padding: 10px 10px;
  box-sizing: border-box;
  object-fit: contain !important;
  object-position: center center;
  background: transparent !important;
}

/* =========================
   RWD
========================= */

@media (max-width: 1024px) {
  .park-section-inner,
  .park-map-shell,
  .park-overview-inner {
    width: min(860px, calc(100% - 56px));
  }

  .park-photo-card {
    height: 290px;
  }

  .park-public-grid {
    grid-template-columns: 1.25fr 1fr;
  }
}

@media (max-width: 768px) {
  .park-overview {
    min-height: 500px;
    padding: 115px 0 125px;
  }

  .park-overview::before {
    height: 150px;
  }

  .park-overview::after {
    height: 165px;
  }

  .park-public-grid {
    align-items: start;
  }

  .park-public-right {
    height: auto;
    gap: 18px;
    justify-content: flex-start;
  }

  .park-hero {
    height: 380px;
    min-height: 380px;
  }

  .park-hero-content {
    padding-top: 76px;
  }

  .park-hero-en {
    font-size: 15px;
  }

  .park-section-inner,
  .park-map-shell,
  .park-overview-inner {
    width: calc(100% - 36px);
  }

  .park-overview {
    min-height: 420px;
    padding: 100px 0 110px;
  }

  .park-map-section {
    padding: 70px 0 76px;
  }

  .park-map-shell {
    grid-template-columns: 1fr;
  }

  .park-map-main {
    aspect-ratio: 4 / 3;
  }

  .park-map-side {
    grid-template-columns: 1fr;
  }

  .park-map-side img {
    height: auto;
    min-height: 82px;
  }

  .park-space-section,
  .park-public-section {
    padding: 68px 0 82px;
    background-size: auto 760px;
  }

  .park-lined-title {
    gap: 12px;
  }

  .park-lined-title span {
    width: 52px;
  }

  .park-lined-title h2 {
    font-size: 34px;
  }

  .park-info-bubble {
    margin-bottom: 42px;
    padding: 24px 22px;
  }

  .park-info-bubble p,
  .park-overview-copy {
    font-size: 14px;
    line-height: 1.85;
    align-items: center;
  }

  .park-card-list {
    gap: 34px;
  }

  .park-photo-card {
    height: 230px;
    border-radius: 16px;
  }

  .park-card-label {
    width: 175px;
    max-width: 58%;
  }

  .park-public-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .park-public-main-photo {
    height: 240px;
  }

  .park-public-small-bubbles {
    gap: 14px;
  }

  .park-service-bubble {
    min-height: 96px;
    padding: 20px 24px;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
  }

  .park-service-bubble img {
    width: 42px;
    height: 42px;
  }

  .park-service-bubble-title,
  .park-service-card h3 {
    font-size: 24px;
  }

  .park-service-card {
    min-height: 112px;
    padding: 22px 26px;
  }

  .park-service-check-grid {
    padding-left: 58px;
  }

  .park-public-side-photo {
    height: 210px;
  }

  .park-map-public-img {
    height: auto !important;
    max-height: 180px;
    padding: 10px 12px;
    object-fit: contain !important;
  }
}

@media (max-width: 480px) {
  .park-hero h1,
  .park-section-title h2 {
    font-size: 42px;
  }

  .park-lined-title h2 {
    font-size: 30px;
  }

  .park-lined-title span {
    width: 34px;
  }

  .park-photo-card {
    height: 205px;
  }

  .park-card-label {
    width: 145px;
  }

  .park-service-bubble span {
    font-size: 16px;
  }

  .park-service-card h3 {
    font-size: 21px;
  }

  .park-map-public-img {
    max-height: 150px;
    padding: 8px 10px;
  }
}

/* =========================
   Latest tuning 2026-05
   文字放大 / wave2 重複 / 公共設施卡片置中
========================= */

/* 1) 本頁敘述性文字整體放大 */
.park-overview-copy,
.park-info-bubble p {
  font-size: 18px;
  line-height: 2.05;
  letter-spacing: 0.045em;
}

.park-service-bubble-text {
  font-size: 19px;
  line-height: 1.65;
}

.park-service-check-grid span {
  font-size: 18px;
  line-height: 1.6;
}

/* 2) wave2 改為背景裝飾層，才能從鳥瞰圖區一路往下重複 */
.park-wave {
  display: none;
}

.park-map-section,
.park-space-section,
.park-public-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.park-map-section::before,
.park-space-section::before,
.park-public-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100vw auto;
  opacity: 0.72;
}

.park-map-shell,
.park-space-section .park-section-inner,
.park-public-section .park-section-inner {
  position: relative;
  z-index: 2;
}

/* 讓 map section 的 wave 起點可獨立微調 */
.park-map-section::before {
  background-position: center 20px;
}

.park-space-section::before,
.park-public-section::before {
  background-position: center 0;
}

/* 3) 公共設施 / 垃圾處理卡片內文置中並稍微往右 */
.park-service-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 34px;
  text-align: left;
}

.park-service-card-head {
  width: 100%;
  justify-content: center;
  transform: translateX(0px);
}

.park-service-card h3 {
  font-size: 34px;
}

.park-service-card-icon {
  width: 50px;
  height: 50px;
}

.park-service-card-icon img {
  width: 42px;
  height: 42px;
}

.park-service-check-grid {
  width: 100%;
  margin-top: 24px;
  padding-left: 0;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

.park-service-check-grid-2x2 {
  grid-template-columns: repeat(2, max-content);
  column-gap: 56px;
  row-gap: 14px;
}

.park-service-card-gold .park-service-check-grid {
  grid-template-columns: max-content;
}

/* RWD */
@media (max-width: 768px) {
  .park-overview-copy,
  .park-info-bubble p {
    font-size: 16px;
    line-height: 1.95;
  }

  .park-service-bubble-text,
  .park-service-check-grid span {
    font-size: 16px;
  }

  .park-map-section::before,
  .park-space-section::before,
  .park-public-section::before {
    background-size: 180vw auto;
    opacity: 0.64;
  }

  .park-service-card {
    min-height: 140px;
    padding: 26px 24px;
  }

  .park-service-card-head {
    transform: translateX(10px);
  }

  .park-service-card h3 {
    font-size: 26px;
  }

  .park-service-check-grid-2x2 {
    column-gap: 34px;
    row-gap: 10px;
  }
}

@media (max-width: 480px) {
  .park-overview-copy,
  .park-info-bubble p {
    font-size: 15px;
    line-height: 1.9;
  }

  .park-map-section::before,
  .park-space-section::before,
  .park-public-section::before {
    background-size: 230vw auto;
  }

  .park-service-card-head {
    transform: translateX(6px);
  }

  .park-service-card h3 {
    font-size: 24px;
  }

  .park-service-check-grid-2x2 {
    column-gap: 24px;
  }
}

/* =========================
   Final requested tuning
   1. Remove park-service-bubble-icon circles
   2. Repeat wave2 background from map section downward
========================= */

/* 移除「餐飲 / 租借」兩個 park-service-bubble-icon 的圓圈，只保留 icon 本體 */
.park-service-bubble-icon {
  width: 50px;
  height: 50px;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.park-service-bubble-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

/*
  wave2 改為區塊背景層，不使用 <img class="park-wave">。
  從 park-map-section 開始一路往下重複，和下面區塊同一種 repeat-y 設計。
*/
.park-wave {
  display: none !important;
}

.park-map-section,
.park-space-section,
.park-public-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* 背景圖層 */
.park-space-section::before,
.park-public-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("../img/wave2.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100vw auto;
  opacity: 0.72;
}

.park-map-section::before
{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100vw auto;
  opacity: 0.72;
}


/* 讓 map 區的 wave 起點與後面重複背景一致 */
.park-map-section::before {
  background-position: center top;
}

/* 內容層壓在 wave 背景上方 */
.park-map-shell,
.park-space-section .park-section-inner,
.park-public-section .park-section-inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .park-service-bubble-icon {
    width: 42px;
    height: 42px;
  }

  .park-service-bubble-icon img {
    width: 42px;
    height: 42px;
  }

  .park-map-section::before,
  .park-space-section::before,
  .park-public-section::before {
    background-size: 180vw auto;
    opacity: 0.64;
  }
}

@media (max-width: 480px) {
  .park-map-section::before,
  .park-space-section::before,
  .park-public-section::before {
    background-size: 230vw auto;
  }
}
