@charset "utf-8";

@import url(reset.css);
@import url(font.css);
@import url(form.css);
@import url(common.css);
@import url(responsive.css);
.pagnation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.pagnation a.on {
    color: #111;
    font-weight: 600;
}
.pagnation .prev, .pagnation .next {
    font-size: 13px;
    color: #bbb;
}
/* 관리자 플로팅 버튼 영역 */
.admin-float-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

/* 등록 버튼 */
.open-btn-seok {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    border-radius: 50%;
    text-decoration: none;

    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
    transition: all 0.25s ease;
}

/* hover */
.open-btn-seok:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.45);
}

/* active */
.open-btn-seok:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.35);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .admin-float-btn {
        right: 16px;
        bottom: 16px;
    }

    .open-btn-seok {
        width: 56px;
        height: 56px;
        font-size: 14px;
    }
}

/*추가*/
.main_img{height: 500px;}
.map_text{
    margin-top: 50px;
    font-size: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}
.map_text p{
    font-size: 30px;
    font-weight: 700;
}

.map_text ul li strong{
    font-size: 22px;
    font-weight: 600;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.s_inner{flex: 1;}
.s_inner2{flex: 1;}
.project-review{flex: 1;}
.cb_inner{flex: 1;}
.qna-list{flex: 1;}
.title_img.main_img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 70vh;
    color: #fff;
    padding: 20px;
}

.title_img.main_img .main-text {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.title_img.main_img .sub-text {
    font-size: 1.3rem;
    margin: 15px 0;
}

.title_img.main_img .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: #111;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.title_img.main_img .btn:hover {
    background: #111;
    color: #fff;
}


