* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    font-family: 'Pretendard';
    background-color: #fdfbf4;
}

header {
    position: fixed;
    width: 100%;
    background: #fdfbf4;
    z-index: 1000;
}

main {
    padding-top: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 100px;
}

footer {
    text-align: center;
}

a {
    text-decoration: none;
    color: black;
}

.kor {
    color: black;
}

.eng {
    color: #999999;
}

.divider {
    margin-left: 30px;
    margin-right: 30px;
    border: none;
}

.navigation-bar {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation-bar-logo {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Pretendard';
    margin: 30px;
}

.navigation-bar-menu {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    gap: 30px;
    margin: 30px;
    list-style: none;
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.stack {
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.context-block {
    opacity: 0; /* 투명 */
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
}

.context-block.visible {
    opacity: 1; /* 불투명 */
}

.subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    margin-left: 30px;
    margin-right: 30px;
    scroll-margin-top: 100px;
}

.context-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.image-wrapper {
    width: 40%;
    min-width: 150px;
    max-width: 450px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 10px;
}

.image {
    width: 100%;
    object-fit: cover;
}

.text {
    flex: 1;
    line-height: 1.8;
    margin: 10px;
    color: #555555;
}

.text-title {
    font-size: 20px;
    font-weight: 600;
    color: black;
}

.text-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #999999;
}

.contact-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}   