body,
h1,
h2,
h3,
h4,
h5 {
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

body {
  font-size: 16px;
  background: #fff;
}

#header {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#logo {
  text-align: center;
}
#sub {
  font-size: 1.5em;
  color: #988a6b;
  text-transform: uppercase;
  letter-spacing: 0.6em;
}
#heading {
  color: #8e653c;
  font-size: 3em;
}

#page {
  position: relative;
  width: 100%;
}

#content {
  width: 85%;
  margin: 0 auto 90px;
} /* 宽度稍微调宽一点，适应大画布 */

/* P5 容器样式 */
#canvas-parent {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #333;
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
}

canvas {
  display: block !important;
  max-width: 1440px !important; /* 🟢 适配你最初的视觉宽度 */
  width: 100% !important;
  height: auto !important;
}

/* 文字介绍排版不变 */
#text {
  line-height: 1.8em;
  column-count: 3;
  column-gap: 3%;
  margin-top: 30px;
}

#stand {
  font-size: 2em;
  color: #769495;
  text-align: center;
}
/* 沙滩文字样式维持 */

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.grid img {
  width: 100%;
  height: 25vh;
  cursor: pointer;
}
