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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: #000000;
  background-color: #FFFFFF;
  line-height: 1.6;
  width: 100%;
  margin: 0;
  padding-top: 80px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

body.menu-open {
  overflow: hidden;
}

h1 {
  font-size: 48.828125px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.h1 {
  font-size: 48.828125px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 39.0625px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.h2 {
  font-size: 39.0625px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 31.25px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 1rem;
}

.h3 {
  font-size: 31.25px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 1rem;
}

h4 {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.h4 {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

small {
  font-size: 12.8px;
  line-height: 1.5;
}

.small {
  font-size: 12.8px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #0066CC;
}
a:focus {
  outline: 3px solid #0066CC;
  outline-offset: 2px;
}
a:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible {
  outline: 3px solid #0066CC;
  outline-offset: 2px;
}

ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

blockquote {
  font-size: 25px;
  line-height: 1.6;
  margin: 2rem 0;
  padding: 1rem;
  border-left: 4px solid #0066CC;
  background: #F5F5F7;
  border-radius: 4px;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 12.8px;
  background: #F5F5F7;
  padding: 0.2em 0.4em;
  border-radius: 3px;
}

.content-width {
  margin: 0 auto;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  max-width: 90%;
  margin: 0 auto;
}
header .nav-container .logo {
  font-size: 24px;
  font-weight: 600;
  color: #4A4A4A;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 8px;
}
header .nav-container .logo:hover {
  color: #000000;
}
header .nav-container .menu-toggle {
  display: none;
}
header .nav-container .menu-overlay {
  display: none;
}
header .nav-container .gnb {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 8px;
  align-items: center;
}
header .nav-container .gnb li a {
  color: #4A4A4A;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 8px 16px;
  position: relative;
  font-weight: 500;
  display: block;
  text-align: center;
}
header .nav-container .gnb li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #000000;
  transition: width 0.3s ease;
}
header .nav-container .gnb li a:hover {
  color: #000000;
}
header .nav-container .gnb li a:hover::after {
  width: 100%;
}
header .nav-container .gnb li a[aria-current=page] {
  color: #000000;
  font-weight: 600;
}
header .nav-container .gnb li a[aria-current=page]::after {
  width: 100%;
}

header.scrolled {
  background: #FFFFFF;
  border-bottom: 2px solid rgba(74, 74, 74, 0.2);
  box-shadow: 0 2px 10px rgba(74, 74, 74, 0.1);
}

.main-layout {
  display: flex;
  min-height: calc(100vh - 80px);
  width: 100%;
}

.column {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-column {
  position: relative;
}
.hero-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.1) 0%, rgba(10, 25, 47, 0.7) 100%);
  z-index: 1;
}

.projects-column {
  background: #FFFFFF;
  overflow: hidden;
}

.hero {
  height: 400px;
  padding: 0 32px;
  text-align: center;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 24px;
  color: #000000;
  position: relative;
  z-index: 2;
  font-weight: 700;
}
.hero h1 span {
  color: #0066CC;
  font-size: 1.2em;
  font-weight: 700;
  display: inline-block;
  transform: translateY(4px);
}
.hero .subtitle {
  font-size: clamp(18px, 2.5vw, 32px);
  margin: 0;
  color: #4A4A4A;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

#projects {
  padding: 0 0 4rem 0;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
#projects .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
}
#projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#projects .project-item {
  border-radius: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
#projects .project-item .project-image-container {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
}
#projects .project-item .project-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
#projects .project-item .project-image-container:hover::before {
  opacity: 1;
}
#projects .project-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  background-color: #F5F5F7;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
#projects .project-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #000000;
  width: 100%;
  font-weight: 600;
  text-align: left;
}
#projects .project-item .project-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
}
#projects .project-item .project-link:focus {
  outline: 3px solid #0066CC;
  outline-offset: 2px;
}
#projects .project-item .project-link:hover {
  background-color: #0066CC;
  color: #FFFFFF;
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}
#projects .project-item:hover .project-link {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#projects .view-all {
  display: inline-block;
  margin: 32px auto 0;
  text-align: center;
  font-weight: 600;
  color: #4A4A4A;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border: 2px solid #4A4A4A;
  border-radius: 8px;
  background-color: #4A4A4A;
  color: #FFFFFF;
}
#projects .view-all:hover {
  background-color: #313131;
  border-color: #313131;
}
#projects h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

footer {
  background-color: #F5F5F7;
  padding: 32px 0;
  text-align: center;
  margin-top: 0;
}
footer p {
  color: #000000;
  font-size: 16px;
  margin: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #FFFFFF;
  color: #4A4A4A;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s ease;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (forced-colors: active) {
  .project-item {
    border: 2px solid CanvasText;
  }
  a {
    text-decoration: underline;
    color: LinkText;
  }
  .hero::before {
    background: none;
  }
  :focus {
    outline: 2px solid CanvasText;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  body {
    background: white !important;
    color: black !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .hero::before {
    display: none;
  }
  .project-item {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    border: 1px solid black !important;
  }
  a {
    text-decoration: underline;
    color: black !important;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 90%;
  }
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .hero {
    height: 400px;
    padding: 0 32px;
  }
  .hero h1 {
    font-size: clamp(32px, 5vw, 64px);
  }
  .hero .subtitle {
    font-size: clamp(18px, 2.5vw, 32px);
  }
  .nav-container {
    padding: 24px 0;
  }
  .nav-container .gnb {
    gap: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 90%;
  }
  #projects .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #projects .project-item .project-image-container {
    aspect-ratio: 4/3;
    margin-bottom: 16px;
  }
  #projects .project-item h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  #projects .project-item .project-link {
    padding: 12px 24px;
    font-size: 14px;
  }
  .hero {
    height: 350px;
    padding: 0 24px;
  }
  .hero h1 {
    font-size: clamp(28px, 4vw, 48px);
  }
  .hero .subtitle {
    font-size: clamp(16px, 2vw, 24px);
  }
  .nav-container {
    padding: 20px 0;
  }
  .nav-container .gnb {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: none;
    height: auto;
    display: block;
    align-items: initial;
  }
  header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: nowrap;
  }
  header .nav-container > * {
    margin: initial;
    padding: initial;
  }
  header .nav-container .logo {
    flex: initial;
    text-align: left;
    margin-left: 0;
    width: auto;
  }
  header .nav-container .gnb {
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin-right: 0;
    gap: 0;
    margin-top: 0.5rem;
  }
  header .nav-container .gnb li {
    flex: initial;
    text-align: center;
  }
  header .nav-container .gnb li a {
    font-size: 14px;
  }
  body {
    padding-top: 80px;
  }
  main {
    padding-bottom: initial;
  }
  .container {
    max-width: 90%;
  }
  #projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #projects .project-item .project-image-container {
    aspect-ratio: 3/2;
    margin-bottom: 12px;
  }
  #projects .project-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  #projects .project-item .project-link {
    padding: 10px 20px;
    font-size: 14px;
  }
  .hero {
    height: 320px;
    padding: 0 0 16px 0;
  }
  .hero h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .hero .subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  footer {
    padding: 24px 0;
    margin-top: 0;
  }
  footer p {
    font-size: 14px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 200px;
    padding: 0 12px;
  }
  .hero h1 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .hero .subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
  header .nav-container {
    padding: 8px 0;
  }
}
@media (-webkit-min-device-pixel-ratio: 2) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
@media (hover: none) {
  .project-item .project-link {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }
  .project-item:hover .project-link {
    transform: translate(-50%, -50%) scale(1);
  }
}/*# sourceMappingURL=style.css.map */