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

/* (수정) index.html 전용 스크롤 제거 */
body.index-page {
    overflow: hidden;
}

/* 헤더 및 네비게이션 스타일 (privacy.html에서 사용) */
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: center; /* 메뉴와 언어 선택기를 중앙 정렬 */
    align-items: center;
    width: 100%;
}

/* (추가) privacy.html의 nav 내부 ul#main-menu를 가운데로 */
nav #main-menu {
    flex-grow: 1; /* 남은 공간을 채워서 언어 선택기를 오른쪽으로 밀기 */
    justify-content: 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 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;
    text-shadow: 0 0 5px rgba(0,0,0,0.7); 
}

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

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

/* (신규) index.html 전용 언어 선택기 컨테이너 */
.lang-switcher-container {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 20; 
}

.lang-switcher-container .lang-switcher {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

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

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
}

/* --- 중앙 내용 패널 스타일 --- */
#center-content-panel {
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 40px 60px; 
    border-radius: 10px; 
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5); 
}

/* 2. 중앙 패널(index.html)용 스토어 아이콘 */
#center-content-panel .store-icon {
    display: inline-block; 
    /* ▼▼▼ 이 부분이 수정되었습니다 ▼▼▼ */
    margin-top: 80px; /* (수정) 30px -> 50px (간격 늘림) */
    /* ▲▲▲ 여기까지 ▲▲▲ */
    opacity: 0.8;
    transition: opacity 0.3s;
}

#center-content-panel .store-icon img {
    display: block;
    width: 150px; 
    height: auto; 
}

#center-content-panel .store-icon:hover {
    opacity: 1.0;
}


/* --- 회사명 스타일 --- */
#company-name {
    font-size: 4em; 
    margin-top: 0;
    margin-bottom: 30px; 
    color: white;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9); 
    letter-spacing: 2px; 
}

/* --- 중앙 메뉴 스타일 --- */
#center-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#center-menu li {
    margin: 15px 0; 
}

#center-menu a {
    text-decoration: none;
    color: white;
    font-size: 28px; 
    font-weight: bold;
    transition: color 0.3s, text-shadow 0.3s;
    white-space: nowrap;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6); 
}

#center-menu a:hover {
    color: #e0e0e0; 
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.7); 
}

/* --- 개인정보 처리방침 페이지 전용 스타일 --- */
.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;
}