/* 기본 스타일 초기화 */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Helvetica Neue', sans-serif;
    color: white;
}

/* 스크롤 제거 (메인 페이지용) */
body {
    overflow: hidden;
}

/* 헤더 및 네비게이션 스타일 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    z-index: 10;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between; /* 양 끝으로 정렬 */
    align-items: center;
    width: 100%;
}

/* 오른쪽 메뉴들을 감싸는 컨테이너 스타일 */
.header-right-menu {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav li {
    margin-left: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover {
    color: #cccccc;
}

/* 언어 선택 메뉴 스타일 */
.lang-switcher {
    margin-left: 40px;
    border-left: 1px solid #ffffff50;
    padding-left: 20px;
}

.lang-switcher li {
    margin-left: 15px;
}

.lang-switcher a {
    text-decoration: none;
    color: #ffffff80;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
    white-space: nowrap;
}

.lang-switcher a.active {
    color: #fff;
}

.lang-switcher a:hover {
    color: #fff;
}

/* 스토어 아이콘 스타일 (좌측 상단) */
.store-icon {
    margin-right: 30px; /* 오른쪽 메뉴와의 간격 */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.store-icon img {
    display: block;
    transition: opacity 0.3s;
}

.store-icon:hover img {
    opacity: 0.7;
}

/* 메인 배경 이미지 */
.main-background {
    height: 100vh;
    background-image: url('images/main-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- 개인정보 처리방침 페이지 전용 스타일 --- */
.privacy-page {
    overflow: auto !important;
    color: #333;
    background: #fff;
    padding-top: 80px;
}

.privacy-container {
    max-width: 800px;
    margin: 20px auto 40px auto;
    padding: 20px;
    line-height: 1.6;
}

.privacy-container h1 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}