/* Hero Banner Styles */
.hero-banner {
  width: 100%;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
  min-height: 300px;
}

/* 圖片背景容器 */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.hero-image-wrapper picture,
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 300px;
}

/* 深色遮罩層，增強文字可讀性 */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
}

/* 文字內容區 */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 3;
  padding: 2rem 1rem;
}

.hero-content .container {
  max-width: 1200px;
  width: 100%;
  padding-left: 0.5rem;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 100;
  letter-spacing: 3px;
  line-height: 1.2;
  color: white;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: white;
  font-weight: 100;
  max-width: 500px;
}

/* 平板以上 */
@media (min-width: 768px) {
  .hero-banner {
    min-height: 350px;
  }

  .hero-image-wrapper {
    min-height: 350px;
  }

  .hero-image-wrapper img {
    min-height: 350px;
  }

  .hero-content {
    padding: 3rem 2rem;
  }

  .hero-content .container {
    padding-left: 3rem;
  }

  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
  }

  .hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
  }
}

/* 桌面版 */
@media (min-width: 1200px) {
  .hero-banner {
    min-height: 400px;
  }

  .hero-image-wrapper {
    min-height: 400px;
  }

  .hero-image-wrapper img {
    min-height: 400px;
  }

  .hero-content {
    padding: 4rem 3rem;
  }

  .hero-content .container {
    padding-left: 4rem;
  }

  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 5px;
  }

  .hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
  }
}

/* Adjust filters margin since we removed carousel */
.filters {
  margin-top: 0;
}
