/* 전체 페이지에 배경 이미지 적용 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('pexels-alexey.jpg'); /* 배경 이미지 경로 */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff; /* 텍스트 색상을 흰색으로 변경 */
}

/* 섹션 투명 효과 */
header, section, footer {
    background: rgba(0, 0, 0, 0.3); /* 검은색 반투명 배경 */
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0.9; /* 투명도 설정 (0.3은 너무 투명할 수 있어 조정 가능) */
    transition: opacity 0.3s ease-in-out;
}

/* 마우스 오버 시 투명도 변경 */
header:hover, section:hover, footer:hover {
    opacity: 1.0;
}

/* 언어 선택 메뉴 스타일 */
.language-selector {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    color: #333;
}

/* 언어 아이콘 스타일 */
.language-icon {
    font-size: 18px;
    margin-right: 8px;
}

/* 언어 선택 메뉴 */
#language-selector {
    border: none;
    background: none;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}
