@font-face {
  font-family: 'Mayeka Demi Bold Demo';
  src: url('/assets/fonts/Mayeka Demi Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gmarket Sans';
  src: url('/assets/fonts/GmarketSansLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gmarket Sans';
  src: url('/assets/fonts/GmarketSansMedium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gmarket Sans';
  src: url('/assets/fonts/GmarketSansBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: 'Gmarket Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  line-height: 1.6;
}

/* 공통 컨테이너 */
.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px;
}

/* Header: Hero 위 오버레이 */
.header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-bottom: none;
  background: transparent;
}

.logo {
  font-family: 'Mayeka Demi Bold Demo', system-ui, sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-size: 28px;
  letter-spacing: 0.02em;
  padding: 24px 0; /* 기획서 느낌으로 살짝 띄움 */
  text-align: center; /* 모바일: 가운데 정렬 */
}

/* Hero */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: min(900px, 100vh); /* PC에서 크게, 너무 과하면 900 제한 */
  object-fit: cover;
  display: block;
}

/* Notice Bar */
.notice-bar {
  width: 100%;
  height: 5em;
  background-color: #D1D1D1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem; /* 24pt ≈ 32px = 2rem */
  font-weight: 300;
  color: #5E5E5F;
}

.notice-bar div {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.notice-bar span {
  white-space: nowrap;
}

.hero-notice__pill {
  display: flex;
  align-items: center;
}

.hero-notice__pill img {
  height: 1.2rem;
  width: auto;
  vertical-align: middle;
  margin-bottom: 3px;
}





/* Story (모바일 기본) */
.story {
  padding: 40px 16px;
}

.story-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-text {
  margin-top: 70px;
  text-align: center; /* 모바일 기본: 가운데 정렬 */
}

.story-text h2 {
  font-family: 'Mayeka Demi Bold Demo', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 57px;
  margin-bottom: 8px;
  color: #D1D1D1; /* 기본 색상 */
}

.for-text {
  color: #E895B8; /* For 텍스트 색상 */
}

.story-text p {
  color: #5E5E5F;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 32px;
}

/* Footer */
.footer {
  margin-top: 40px;
  background: #464546;
  height: 250px; /* 모바일 세로 영역: 450px */
  display: flex;
  flex-direction: column;
}

.footer-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 16px;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 4em;
  width: auto;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 0.5em;  
  justify-content: center; /* 오른쪽 정렬 */
  width: auto;
  transition: opacity 0.3s ease;
}

.social-icons a img {
  height: 2em;
  width: auto;
}

.social-icons a:hover img {
  opacity: 0.7;
}

.company-info p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  margin: 4px 0;
  font-weight: 300; /* light 폰트 두께 */
}

.footer-social {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  text-align: center;
}

.footer-social p {
  color: #fff;
  font-size: 12px;
  margin: 0;
}

/* Footer 내 링크 스타일 제거 */
.footer a {
  text-decoration: none;
  color: inherit;
}

/* =====================
   PC 반응형
===================== */
@media (min-width: 1024px) {
  .footer {
    height: 400px; /* PC 세로 영역: 400px */
  }

  .logo {
    text-align: left; /* PC: 왼쪽 정렬 */
  }

  /* Notice Bar */
  .notice-bar {
    width: 100%;
    height: 3em;
  }

  .story-inner {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .story-image,
  .story-text {
    flex: 1;
  }

  /* 교차 적용 (일부만) */
  .story--reverse .story-inner {
    flex-direction: row-reverse;
  }

  .story-text {
    margin-top: 0;
    text-align: right; /* PC 일반 story: 우측 정렬 */
  }

  .story--reverse .story-inner .story-text {
    margin-top: 0;
    text-align: left; /* PC 일반 story: 좌측 정렬 */
  }

  .footer-content {
    width: 1024px;
    flex-direction: row; /* PC: 좌우 배치 */
    justify-content: space-between;
    align-items: center; /* 세로 가운데 정렬 */
  }

  .footer-logo {
    justify-content: flex-start;
    flex-shrink: 0;
  }

  .footer-info {
    flex-shrink: 0;
  }

  .footer-logo img {
    height: 10em;
    width: auto;
  }

  .footer-info {
    flex-direction: row;
    gap: 40px;
    /* flex: 1; 제거하여 좌우 정렬 보장 */
    justify-content: flex-end;
  }

  .footer-content p {
    text-align: right;
    align-items: right;
  }

  .footer-social {
    flex-shrink: 0;
  }

  .social-icons {
    justify-content: flex-end; /* PC: 오른쪽 정렬 */
  }
}

/* 모바일 스타일 (1024px 이하) */
@media (max-width: 1023px) {
  .notice-bar div {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .notice-bar span:first-child {
    display: block;
    width: 100%;
    /* margin-bottom: 4px; */
    text-align: center;
  }

  .notice-bar span {
    white-space: normal;
  }
}