/* -------- 首頁 Hero 區塊 -------- */
.hero {
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.hero-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
  color: #000;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin: 0;
}

.hero-text .highlight {
  font-weight: 700;
}

.hero-text .subtitle {
  font-size: 1.5rem;
  margin-top: 10px;
}

/* 合併 contact-icons */
.contact-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.circle-icon {
  width: 100px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.circle-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.circle-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.contact-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 800px;
  object-fit: cover;
}

/* -------- 響應式調整 -------- */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text .subtitle {
    font-size: 1.2rem;
  }
  .hero-image img {
    max-height: 400px;
  }
  .contact-icons {
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text .subtitle {
    font-size: 1rem;
  }
  .circle-icon {
    width: 40px;
    height: 40px;
  }
  .circle-icon img {
    width: 20px;
    height: 20px;
  }
  .contact-item {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .contact-item img {
    width: 20px;
    height: 20px;
  }
  .hero-image img {
    max-height: 300px;
  }
}