@charset "utf-8";

html, body{
    font-family: "Malgun Gothic", "맑은 고딕", helvetica, "Apple SD Gothic Neo", sans-serif;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

p, span, section{margin: 0; padding: 0;}
li{list-style: none;}
img{max-width: 100%;}
button{
    border: none;
    background: rgb(0,0,0,0);
    cursor: pointer;
}

img{max-width: 100%;}



section{
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.floating_wrap{
    position: fixed;
    z-index: 3;
    top: 5%;
    right: 1%;
}

.floating_wrap ul li img {
    width: 85%;
}

/*------------- section1 -------------*/


#contents{
    position: relative;
    height: 100%;
}

section.con1{
    position: relative;
    display: flex;
    justify-content: center;
}

/* 배경 영상 */
.bg_cover{
    background: rgb(0,0,0,0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

video.con1_vid{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
}

.h_video{
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.animate__animated {
    animation-iteration-count: infinite;
}

.inner-wrap{
    width: 800px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index:2;
    text-align: center;
}

.main_btn{
    display: flex;
    justify-content: space-between; /* 버튼을 양쪽으로 정렬 */
    width: 80%;
    margin: 0 auto;
    z-index: 999;
    gap: 10px;
}

.main_btn a{
   width: calc(50% - 5px);
    height: 129px;
    display: block;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
}

.pc_btn {
    background-image: url('https://appdata.hungryapp.co.kr/images/chosunc/cbt/images/pc_btn.png');
}

.pc_btn:hover {
    background-image: url('https://appdata.hungryapp.co.kr/images/chosunc/cbt/images/pc_btn_on.png');
}

.mobile_btn {
    background-image: url('https://appdata.hungryapp.co.kr/images/chosunc/cbt/images/mobile_btn.png');
}

.mobile_btn:hover {
    background-image: url('https://appdata.hungryapp.co.kr/images/chosunc/cbt/images/mobile_btn_on.png');
}

/* 마우스 오버 시 스타일 (선택 사항) */
.mobile_btn:hover {
    background-image: url('https://appdata.hungryapp.co.kr/images/chosunc/cbt/images/mobile_btn_on.png'); /* 모바일 버튼 오버 이미지 경로 */
}
/* (헝그리앱 버튼도 같은 방식으로 적용) */

.footer_ {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

.footer_txt{
    color: #fff;
    font-size: 14px;
}

.footer_ img{
    width:200px;
    margin-bottom: 10px;
} 



/* responsive */
@media screen and (max-width:1280px){
    #contents{
        width: 100%;
        height: 100vh;
    }

    section.con1{
        width: 100%;
        height: 100vh;
}
    .floating_wrap{
        top: 1%;
        right: 1%;
    }

    .floating_wrap ul li img {
        width: 20vw;
    }
    .h_video{
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .inner-wrap{
        width: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index:2;
    }
    .main_logo{
        text-align: center;
        margin: 0 auto;
    }

    .main_btn {
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
        gap: 10px;
    }

    .main_btn a {
        height: auto;
        aspect-ratio: 2.3/1;
        min-height: 60px;
    }
    .footer_ {
        padding: 5% 0;
        text-align: center;
        width: 100%;
    }

    .footer_txt{
        color: #fff;
        font-size: 0.8rem;
    }

    .footer_ img{
        width:25vw;
        margin-bottom: 10px;
    } 
   

}


@media screen and (max-width:700px){  
 
    
}
@media screen and (max-width:550px){
    
}





