/* 기본 초기화 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif; background-color: #f5f5f5; }
a { text-decoration: none; color: inherit; }
li { list-style: none; }

/* SEO 전용 숨김 처리 */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* 래퍼 (최대 1400px 중앙 정렬) */
#sh_mo_wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* 상단 헤더 & 네비게이션 바 */
#sh_header {
    position: sticky; /* 스크롤 시 상단 고정 */
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* 로고 영역 */
.logo a {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
}

/* 햄버거 버튼 디자인 */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001; /* 메뉴보다 위에 위치 */
}
.hamburger-btn span {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s linear;
}

/* 숨겨진 서브페이지 메뉴 (모바일 팝업 형태) */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* 기본적으로 화면 오른쪽에 숨김 */
    width: 250px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: 0.3s ease-in-out;
    z-index: 999;
    padding-top: 80px; /* 헤더 높이만큼 여백 */
}
#mobile-menu.active {
    right: 0; /* 클래스 추가 시 메뉴 나타남 */
}
#mobile-menu ul li a {
    display: block;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

/* 메인 이미지 영역 */
#sh_mo_container img {
    width: 100%;
    max-width: 100%; /* 이미지가 부모 요소를 넘어가지 않게 방어 */
    display: block;
}

/* 하단 버튼 (전화연결 등) */
.btns { padding: 20px; text-align: center; }
.btns .tel {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: #c99c63; /* 분양 고급스러운 골드/브라운 톤 예시 */
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
}