/* 1. 기본 초기화 및 폰트 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    display: flex;
}

/* 2. 사이드바 스타일 (홈/About 공통) */
.sidebar {
    position: fixed;
    width: 250px;
    height: 100vh;
    border-right: 1px solid #eee;
    padding: 60px 40px;
    z-index: 100; /* 본문보다 항상 위에 있도록 설정 */
    background-color: #fff;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.menu {
    list-style: none;
}

.menu li {
    margin-bottom: 20px;
}

.menu a {
    text-decoration: none;
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #000;
}

/* 3. 본문 영역 설정 */
.content {
    margin-left: 250px; /* 사이드바 너비만큼 여백 확보 */
    width: calc(100% - 250px);
    padding: 100px 80px;
}

.intro h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
}

/* 4. About 페이지 전용: 흑백 대비 디자인 */
.about-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ccc;
    margin-bottom: 60px;
    text-align: center;
}

.contrast-layout {
    display: flex;
    width: 100%;
    height: 60vh;
    margin-bottom: 60px;
}

.meaning-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden; /* 큰 글자가 박스 밖으로 나가지 않게 함 */
}

.left-contrast {
    background-color: #000;
    color: #fff;
    align-items: flex-end;
    text-align: right;
}

.right-contrast {
    background-color: #fff;
    color: #000;
    align-items: flex-start;
    text-align: left;
    border-left: 1px solid #000;
}

.initial {
    font-size: 20rem; /* 이니셜을 아주 크게 */
    font-weight: 900;
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.left-contrast .initial { right: -30px; color: #fff; }
.right-contrast .initial { left: -30px; color: #000; }

.words { z-index: 1; }

.meaning-item p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 5px 0;
}

.description {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 40px;
}