/* Hero Section — 풀스크린 */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #222;
  text-align: center;
  overflow: hidden;
  scroll-snap-align: start;
}

/* 슬라이드 배경 */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 1.2s ease;
  will-change: transform, opacity;
}

.hero__slides::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  animation: heroZoomOut 6s ease-out forwards;
}

@keyframes heroZoomOut {
  from { transform: scale(1.15); }
  to   { transform: scale(1.0); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) var(--space-md);
  padding-bottom: 12rem;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.5;
  letter-spacing: -0.04em;
  word-break: keep-all;
  margin: 0;
}

.hero__title em {
  font-style: normal;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.25rem;
    line-height: 1.45;
  }
}

@media (min-width: 1280px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

/* 하단 퀵 메뉴 */
.hero__menus {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 30;
}

.hero__menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 20%;
  height: 150px;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background 0.2s;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__menu-link:last-child {
  border-right: none;
}

.hero__menu-link:hover {
  background: rgba(0, 0, 0, 0.50);
}

.hero__menu-link svg {
  width: 32px;
  height: 32px;
  opacity: 0.8;
}

.hero__menu-link:hover svg {
  opacity: 1;
}

/* 모바일 퀵메뉴 */
@media (max-width: 767px) {
  .hero__inner {
    padding-bottom: 16rem;
  }

  .hero__menus {
    flex-wrap: wrap;
  }

  .hero__menu-link {
    width: 33.333%;
    height: 100px;
    font-size: 0.875rem;
    gap: 0.625rem;
  }

  .hero__menu-link svg {
    width: 24px;
    height: 24px;
  }
}
