@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: "Pretendard", sans-serif;
}
/* footer.css */
.site-footer {
  background: #464646;
  color: #fff;
  font-family:
    system-ui,
    -apple-system,
    "Pretendard",
    "Noto Sans KR",
    sans-serif;
}

.footer-top {
  background: #464646;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 28px 38px;
  display: grid;
  grid-template-columns: 200px 1fr 360px;
  align-items: start;
}

/* LEFT MENU */
.footer-side {
  padding-top: 8px;
}
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu li {
  margin: 0 0 5px 0;
}
.footer-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 13px;
  display: inline-block;
  padding-left: 14px;
  position: relative;
}
.footer-menu:first-child a {
  color: #d1d1d1;
}
.footer-menu li.active a {
  font-weight: 700;
}
.footer-menu li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 2px;
  height: 18px;
  background: #fff;
}

/* CENTER */
.footer-logo {
  margin-bottom: 18px;
  width: 160px;
}

.footer-logo img {
  width: 100%;
}

.logo-text {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
  display: inline-block;
}

.footer-company p {
  font-size: clamp(12px, 1.1vw, 14px);
  margin: 0;
  line-height: 1.5;
}
.c-strong {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.c-en {
  font-size: 12px;
  opacity: 0.95;
  margin-bottom: 6px;
}
.c-line {
  font-size: 14px;
  opacity: 0.95;
}

/* RIGHT */
.footer-contact {
  text-align: right;
  padding-top: 44px;
}
.footer-contact p {
  font-size: clamp(12px, 1.1vw, 14px);
  margin: 0;
  line-height: 1.5;
}
.r-strong {
  font-size: 16px;
  font-weight: 800;
}

/* BOTTOM */
.footer-bottom {
  background: #3f3f3f;
  padding: 18px 0 26px;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.copyright {
  margin: 0 0 18px 0;
  font-size: clamp(8px, 0.9vw, 12px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.footer-notice p {
  margin: 0;
  font-size: clamp(8px, 0.9vw, 12px);
  line-height: 1.7;
  color: #c3c3c3;
}

/* MID SIZE (첨부 중간 사이즈처럼) */
@media (max-width: 998px) {
  .footer-inner {
    grid-template-columns: 230px 1fr 300px;
    gap: 10px;
  }
  .logo-text {
    font-size: 42px;
  }
}

/* MOBILE (첨부 모바일처럼) */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 58px 24px;
  }

  .footer-side {
    display: none; /* 모바일에서 좌측 메뉴 숨김 */
  }

  .footer-logo {
    margin-bottom: 10px;
  }
  .logo-text {
    font-size: 40px;
  }

  .footer-contact {
    text-align: right;
    padding-top: 6px;
  }

  .footer-bottom-inner {
    padding: 0 18px;
  }
}
