@charset "UTF-8";
body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
}

header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: black;
  position: relative;
  height: 50px;
}

.logo {
  margin-top: 10px;
  width: 200px;
  height: auto;
  background-image: url("img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1572/357;
}

.home-page .logo {
  display: none;
}

nav {
  position: absolute; /* 절대 위치 지정 */
  right: 20px; /* header 오른쪽에 배치 */
  top: 50%;
  transform: translateY(-50%); /* 세로 가운데 정렬 */
  display: flex;
  justify-content: flex-end;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  cursor: pointer;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

nav ul li a.active {
  text-decoration: underline;
}

/* 본문 스타일 */
.content {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.pdf-container {
  width: 70%;
  background-color: yellow;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 150px;
}

.pdf-viewer {
  width: 100%;
  height: 100%;
  margin-top: 0;
  border: none;
}

footer {
  padding: 40px 0;
  font-size: 13px;
  color: #efefef;
  margin-top: auto;
  text-align: center;
}
footer .wrapper {
  width: 70%;
  max-width: 1280px;
  text-align: left;
  margin: 0 auto;
}
footer img {
  width: 100px;
  height: auto;
}
footer p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

/* Home  */
.home-content {
  position: relative;
  width: 100%;
  height: 90vh;
}
.home-content img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
}

/* About */
.about-content {
  margin-top: 130px;
  justify-content: center;
}
.about-content .upper-content {
  text-align: center;
  margin: 20px auto 10px auto;
  justify-content: center;
  font-size: 25px;
  line-height: 33px;
}
.about-content .upper-content img {
  width: 520px;
  height: auto;
  margin: 30px 0 15px 0;
}
.about-content .upper-content .text-line-space {
  height: 80px;
}
.about-content .upper-content .text-light {
  color: #acacac;
}
.about-content .lower-content {
  width: 70%;
  margin: 200px auto 100px auto;
  text-align: center;
}

/* 모바일 최적화를 위한 미디어 쿼리 */
@media (max-width: 768px) {
  body {
    width: 100%;
  }
  header {
    width: 100vw;
    padding: 0px;
    overflow: hidden;
  }
  header .logo {
    margin-top: 10px;
    width: 100px;
    height: auto;
  }
  header .logo img {
    width: 100px;
  }
  .content {
    width: 100%;
  }
  .pdf-container {
    width: 100%;
    display: block;
    overflow: hidden;
    margin: 20px 0 0 0;
    padding: 0px;
  }
  .pdf-viewer {
    width: 100%;
    padding: 0px;
    /* transform: scale(0.9); */
    /* transform-origin: top left;  */
  }
  .about-content {
    margin-top: 60px;
  }
  .about-content .upper-content {
    margin: 20px auto;
    justify-content: center;
    font-size: 20px;
    line-height: 28px;
  }
  .about-content .upper-content img {
    width: 250px;
    height: auto;
  }
  .about-content .upper-content .text-line-space {
    height: 50px;
  }
  .about-content .lower-content {
    width: 100%;
    margin: 80px 0 50px 0;
  }
  .about-content .lower-content img {
    width: 96%;
    height: auto;
  }
  footer {
    width: 100%;
    padding: 20px;
  }
  footer .wrapper {
    text-align: left;
    margin: 0;
  }
  footer .wrapper a[href^=tel] {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
  }
  footer img {
    width: 100px;
    height: auto;
  }
  footer p {
    margin: 0;
    font-size: 12px;
    line-height: 20px;
  }
}/*# sourceMappingURL=style.css.map */