/**
 * hero.css
 * トップページ ヒーローセクション
 */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #15181c 0%, #22272d 55%, #2c333a 100%);
  z-index: 0;
}

/* 将来的に背景画像を設定する場合はここに background-image を追加 */
/*
.hero__bg {
  background-image: url('...');
  background-size: cover;
  background-position: center;
}
*/

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,14,17,0.75) 0%, rgba(12,14,17,0.35) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 72px; /* ヘッダー分のオフセット */
}

.hero__label {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-white);
  margin-bottom: var(--space-md);
}

.hero__title-accent {
  color: var(--color-accent);
}

.hero__text {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: #d4d8dd;
  max-width: var(--max-width-text);
  margin-bottom: var(--space-xl);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: var(--fs-4xl);
  }
  .hero__text {
    font-size: var(--fs-md);
  }
}

.hero .btn-outline {
  color: var(--color-text-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}