/* 기본 폰트: Raleway */
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background: #fff;
  color: #000;
}

/* 로고 텍스트만 Playfair Display 강제 */
.logo-text {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  font-size: 2.7rem;      /* 기본 크기 */
  letter-spacing: 0.3px;
  display: inline-block;   /* transform 적용하려면 block 성격 필요 */
  transform: scaleX(1.1);  /* 가로 10% 확대 */
  transform-origin: center; /* 가운데 기준으로 늘림 */
}

.logo-text .initial {
  font-size: 3.4rem;      /* J, C만 더 크게 */
  font-weight: 700;
  margin-right: 0.3x;      /* 자연스럽게 간격 */
  display: inline-block;   /* transform 적용하려면 block 성격 필요 */
  transform: scaleX(1.05);  /* 가로 10% 확대 */
  transform-origin: center; /* 가운데 기준으로 늘림 */
  align-items: center;             /* 세로 중앙 정렬 */
}




/* 헤더 */
.top-header {
  display: flex;
  justify-content: space-between;  /* 좌우 배치 */
  align-items: center;             /* 세로 중앙 정렬 */
  padding: 40px 90px;              /* 위쪽 공간 줄임 */
}
.logo-area {
  display: flex;
  align-items: center;  /* 수직 중앙 정렬 */
  gap: 30px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin: 0;
  transform: scaleX(1.1);
  position: relative;
  top: -4px;   /* 글자를 위로 살짝 올림 (값은 조절 가능) */
}

.logo {
  height: 65px;                    /* 로고 크기 통일 */
  width: auto;
}


.tagline {
  display: flex;
  align-items: center;
  gap: 15px; /* 라인과 텍스트 사이 여백 */
}

.line {
  width: 2.5px;              /* 라인 두께 */
  height: 35px;            /* 라인 높이 */
  background-color: #000;  /* 라인 색상 (검정) */
  margin-right: 2px;       /* 텍스트와 간격 */
}


.tagline .line {
  border-left: 2px solid #000;
  height: 35px;
  margin-bottom: 5px;
}

.tagline-text1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  
  
}
.tagline-text {
  font-size: 0.9rem;
  line-height: 1.3;
}

/* 메인 섹션 */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #080808, #efefef);
  color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 0px 0px;
}

.content {

  margin-left: 50px;
}

.title {
  font-size: 3.2rem;
  font-family: 'Raleway', serif !important;
  font-weight: 400;
  margin-bottom: 10px;
}

.subtitle {
  color: #87a1c9;
  font-family: 'Raleway', serif !important;
  font-size: 2rem;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.desc {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}


.highlight {
  color: #8aa9ff;
  font-weight: 700;
}

.highlight-blue {
  color: #4fa3ff;
  font-weight: 700;
}

.image-area .profile {
 
  max-width: 350px;
  border-radius: 0px;
}

/* 푸터 */
.footer {
  background: #222222;
  color: #fff;
  text-align: center;

  padding: 1px;
}

.footer-text {
  font-size: 0.9rem;
  font-family: 'open Sans', serif;
}

.flag {
  margin-left: 8px;
  vertical-align: middle;
}
