@charset "UTF-8";

/* 공사중 페이지 스타일 */
.construction_section {
    padding: 120px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction_inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.construction_character {
    margin-bottom: 40px;
    animation: bounce 2s infinite;
}

.wait_character {
    width: 300px;
    aspect-ratio: 518 / 479;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 반응형 디자인 */
@media screen and (max-width: 768px) {
    .construction_section {
        padding: 80px 0;
    }
    
    .wait_character {
        width: 150px;
        height: 188px;
    }
}

@media screen and (max-width: 480px) {
    .construction_section {
        padding: 60px 0;
    }
    
    .wait_character {
        width: 120px;
        height: 150px;
    }
}

/* 페이지 헤더 스타일 */
.page_header {
    padding: 60px 0 40px;
    text-align: center;
}

.page_header_inner {
    max-width: 800px;
    margin: 0 auto;
}

.page_title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'BMkkubulimTTF';
    color: #333;
    margin-bottom: 20px;
}

/* 섹션 공통 스타일 */
.section_title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}













/* 반응형 디자인 */
@media screen and (max-width: 768px) {
    .page_title {
        font-size: 36px;
    }
    
    .section_title {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .page_title {
        font-size: 28px;
    }
    
    .section_title {
        font-size: 24px;
    }
} 