/* Header / Navigation */
.body-slide {
    width: 1280px;
    height: 800px;
    background-image: url('image/4a557720c2783e8f90b959dd0f71f07b6301b919.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.head {
    background: rgba(0, 0, 0, 0.2);
    width: 1280px;
}

.nav {
    width: 1280px;
    height: 100px;
    display: flex;
    align-items: center;
}

.logo-container {
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: 'Alexandria', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    line-height: 14px;
    margin-left: 14px;
}

.nav-list {
    width: 780px;
    height: 100px;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    padding-left: 33px;
    padding-right: 26.847px;
}

.nav-item {
    font-weight: 500;
    font-size: 18px;
    color: white;
    letter-spacing: -0.8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.nav-kr .nav-item {
    font-family: 'Noto Sans KR', sans-serif;
}

.nav-jp .nav-item {
    font-family: 'Noto Sans JP', sans-serif;
}

.nav-item:hover {
    transform: scale(1.2);
}

.lang-container {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-text {
    font-family: 'Alexandria', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    line-height: 14px;
    cursor: pointer;
}

.lang-link {
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.lang-link:hover {
    transform: scale(1.2);
}