.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--color-light);
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  preserveAspectRatio: xMidYMid slice;
}


.hero-text {
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-text {
    text-align: left;
  }
}

/* SVG 顏色樣式 */
.cls-1 {
  fill: var(--color-accent);
}

.cls-2 {
  opacity: 0.2;
}

.cls-3 {
  fill: var(--color-dark);
}

	.z-1 { z-index: 1; }
	.z-2 { z-index: 2; }