/* 전역 스타일 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  background-color: #ffffff;
  color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: auto; /* 창 줄어들 때 내용 찌그러짐 방지 */
  min-width: 1280px; /* 어바웃 페이지 최소 너비 고정 */
}

/* 헤더 & 네비게이션 */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 25px;
  width: 100%;
  white-space: nowrap;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 120px;
}

.nav-item {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-item.active,
.nav-item:hover {
  color: #FF3A00;
}

/* 메인 레이아웃 컨테이너 */
.about-container {
  flex: 1;
  max-width: 1600px;
  min-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 40px 100px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* 좌측 프로필 정보 영역 */
.profile-info {
  min-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 이름 그룹 */
.name-group {
  margin-bottom: 120px;
  white-space: nowrap;
}

.en-name {
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #000000;
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
}

.en-name .age {
  font-size: 28px;
  font-weight: 600;
  color: #FF3A00;
  margin-left: 2px;
  margin-top: -2px;
}

.ko-name {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  margin-top: 12px;
  white-space: nowrap;
}

/* 소개문 (의도한 <br> 줄바꿈만 유지하고 자동 줄바꿈 차단) */
.intro-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #222222;
  margin-bottom: 60px;
  white-space: nowrap; /* 창 크기에 따른 원치 않는 줄바꿈 방지 */
}

/* 메타 정보 (Phone, Email, Instagram, Tool) */
.meta-section {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.meta-row {
  display: flex;
  gap: 40px;
  font-size: 15px;
  line-height: 1.6;
  white-space: nowrap;
}

.meta-label {
  width: 80px;
  display: flex;
  flex-direction: column;
  color: #FF3A00;
  font-weight: 500;
}

.meta-value {
  color: #222222;
  font-weight: 400;
}

/* 우측 갤러리 섹션 */
.profile-gallery {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding-right: 30px;
  flex-shrink: 0; /* 창이 줄어들어도 사진 비율 압축 방지 */
}

.sub-image-wrapper {
  position: relative;
  width: 110px;
  height: 350px;
  flex-shrink: 0;
}

.sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-image-wrapper {
  position: relative;
  width: 480px;
  height: 700px;
  flex-shrink: 0;
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 데코 스티커 */
.deco-sticker {
  position: absolute;
  pointer-events: none;
}

.deco-sub-flower {
  left: -18px;
  bottom: 60px;
  width: 28px;
}

.deco-smile {
  top: 40px;
  left: 60px;
  width: 80px;
}

.deco-star-top {
  top: 120px;
  right: 50px;
  width: 24px;
}

.deco-flower-left {
  top: 260px;
  left: -35px;
  width: 80px;
}

.deco-star-mid {
  top: 400px;
  left: 100px;
  width: 24px;
}

.deco-flower-right {
  top: 350px;
  right: -40px;
  width: 95px;
}

/* 푸터 */
.footer {
  margin-top: 80px;
  padding-bottom: 40px;
  text-align: center;
  color: #FF3A00;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}

.footer-icon {
  width: 16px;
  margin-bottom: 8px;
}

.copyright-name {
  letter-spacing: 0.5px;
}

.copyright-year {
  font-size: 14px;
}