@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css");
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* width: 100%; */
}
html, body, section, .sec_1_bg {
    width: 100%;
}
ul{
    list-style: none;
}
img{
    display: block;
    border: 0;
    object-fit: cover;
    
}
a{
    display: block;
    text-decoration: none;
    color: rgb(38, 38, 38);
}


.sec_1_text_box h2, .sec_2_title h4, .sec_4_text h6{
    font-family: "나눔명조";
}

body{
    font-family: "pretendard";
}

/* ---풀페이지 스크린--- */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
   height: auto; 
    min-height: 100%;
}
html {
    height: 100%;
    overflow: hidden; /* 브라우저 자체 스크롤바를 숨겨서 중복 스크롤 방지 */
    scroll-behavior: smooth;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: scroll; /* 자석 효과를 위해 세로 스크롤 허용 */
    scroll-snap-type: y mandatory; /* 자석 효과 활성화 */
    -webkit-overflow-scrolling: touch; /* 모바일 부드러운 스크롤 */
    scroll-behavior: smooth;
}

/* 개별 섹션 설정 */
section {
    width: 100%;
    height: 100vh; /* 정확히 화면 높이만큼 차지 */
    scroll-snap-align: start; /* 섹션 시작점에 자석이 붙음 */
    scroll-snap-stop: always; /* 스크롤 시 한 섹션씩 끊어서 넘어가게 강제 */
    position: relative;
    overflow: hidden;
}