/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* Hero 높이만큼 공간 확보 */
.hero-spacer {
  height: 100vh;
  min-height: 600px;
}

/* 본문 콘텐츠 */
.main-content {
  position: relative;
  z-index: 10;
  background-color: var(--color-bg);
}

/* 슬라이드 배경 */
.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.hero__slide--active {
  opacity: 1;
}

/* 오버레이 */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* 헤더 */
.hero__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.hero__logo {
  height: 40px;
  width: auto;
}

.hero__lang {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.hero__lang-btn {
  color: var(--color-text-white);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: var(--spacing-xs);
  min-width: 44px;
  min-height: 44px;
}

.hero__menu-btn {
  color: var(--color-text-white);
  font-size: var(--font-size-xl);
  padding: var(--spacing-xs);
  min-width: 44px;
  min-height: 44px;
}

/* 콘텐츠 */
.hero__content {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  text-align: left;
  color: var(--color-text-white);
  max-width: 600px;
}

/* 소셜 아이콘 */
.hero__social {
  position: absolute;
  left: 10%;
  bottom: var(--spacing-lg);
  z-index: 10;
  display: flex;
  gap: var(--spacing-sm);
}

.hero__social-link {
  color: var(--color-text-white);
  font-size: var(--font-size-lg);
  opacity: 0.8;
  transition: var(--transition);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__social-link:hover {
  opacity: 1;
}

/* 스크롤 다운 컨테이너 */
.hero__scroll {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

/* 스크롤 텍스트 */
.hero__scroll-text {
  color: var(--color-text-white);
  font-size: var(--font-size-sm);
  opacity: 0.8;
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
  opacity: 0.9;
}

.hero__title {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  margin-bottom: var(--spacing-sm);
  line-height: 1.1;
}

.hero__slogan {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

/* 단색 배경 + 패턴 */
.hero--solid {
  background-color: #E91E63;
}

.hero--solid .hero__overlay {
  background: none;
}

.hero--solid .hero__pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: url('../images/hero-pattern.png');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 2;
}

.hero__info {
  font-size: var(--font-size-base);
  opacity: 0.9;
}





/* 스크롤 다운 (마우스 모양) */

.hero__mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-text-white);
  border-radius: 12px;
  position: relative;
  opacity: 0.8;
}

.hero__mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-text-white);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* 반응형 */
@media (min-width: 768px) {
  .hero__header {
    padding: var(--spacing-md);
  }
  
  .hero__logo {
    height: 50px;
  }
  
  .hero__title {
    font-size: 80px;
    white-space: nowrap;
  }
  
  .hero__subtitle,
  .hero__slogan {
    font-size: var(--font-size-2xl);
  }
  

}

@media (min-width: 1200px) {
  .hero__header {
    padding: var(--spacing-lg);
  }
}
