/* 리셋 CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* 팝업 */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}

.popup.active {
    display: block;
}

.popup-content {
    position: relative;
}

.popup-close {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    padding: 5px 15px;
    background: #fff;
    border: none;
    cursor: pointer;
}

/* 공통 */
.w-100{width: 100% !important;}
.pb-0{padding-bottom: 0 !important;}

/* 헤더 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    height: 80px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1920px;
    margin: 0 auto;
    height: 100%;
}
.logo a{
    display: flex;
    align-items: center;
}
.logo a span{font-size: 20px;margin-left: 6px;padding-top: 4px;}
.logo img {
    height: 40px;
}

.gnb-wrap {
    position: relative;
    
}
.gnb{
    height: 100%;
    display: flex;
    align-items: center;
}

.gnb-bg {
    display: none;
    position: absolute;
    left: 0;
    top: 80px;
    width: 100vw;
    height: 180px;
    background: #fff;
    z-index: 150;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.gnb > ul {
    display: flex;
    align-items: center;
    gap: 100px;
    height: 100%
}

.gnb > ul > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.gnb > ul > li > a {
    font-size: 22px;
    display: flex;
    align-items: center;
    height: 100%;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #ffffffe5;
    padding: 10px 0;
    display: none;
    z-index: 200;
    white-space: nowrap;
    border-top: 2px solid #122d43;
}

.sub-menu li a {
    display: block;
    padding: 10px 30px;
    color: #222;
    font-size: 16px;
    transition: background 0.2s;
}

.sub-menu li a:hover {
    background: #f5f5f5;
    color: #122d43;
}

.gnb-wrap:hover .gnb-bg,
.gnb-wrap:focus-within .gnb-bg {
    display: block;
}
.gnb-wrap:hover .sub-menu,
.gnb-wrap:focus-within .sub-menu {
    display: block;
}

.gnb > ul > li:hover .sub-menu,
.gnb > ul > li:focus-within .sub-menu {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-btn {
    font-size: 20px;
    font-weight: bold;
    color: #3a3a3a;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-direction: column;
}
.menu-btn .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    margin: 3px auto;
    border-radius: 2px;
    transition: all 0.3s;
}

/* 메인 비주얼 */
.main-visual {
    height: 100vh;
    background-image: url('../images/main.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.main-visual .main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* 퀵메뉴 */
.quick-menu {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-call {
    background: #000;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
}

.quick-reserve {
    background: #ff0000;
    color: #fff;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

/* 푸터 */
footer {
    background: #f5f5f5;
    padding: 50px 0 100px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-notice {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin-right: 20px;
    color: #666;
}

.copyright {
    font-size: 14px;
    color: #999;
}
.pc-none{display: none !important;}

.box-type2{
    display: flex;
    padding: 24px;
    gap: 10px;
}
.box-tit{
    padding: 20px;
}
.box-tit h3{font-size: 28px;color: #122d43;margin-bottom: 10px;letter-spacing: -0.03em;}
.box-tit p{color: #333;margin-bottom: 15px;}
.box-img{max-width: 640px;width: 100%;}
.box-tit p strong{}
.justify-content-space-between{justify-content: space-between !important;}




/* 반응형 */
@media (max-width: 1024px) {
    .gnb {
        display: none !important;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
        height: auto;
        padding-bottom: 50px;
    
    }
    .gnb.active {
        display: block !important;
    }
    .gnb > ul {
        flex-direction: column;
        gap: 0;
    }
    .gnb > ul > li {
        width: 100%;
        border-bottom: 1px solid #eee;
        text-align: center;
        padding: 10px 0;
        height: auto;
    }
    .gnb > ul > li > a{font-size: 18px;}
    .sub-menu {
        position: static !important;
        top: auto;
        left: auto;
        min-width: 0;
        box-shadow: none;
        background: #f9f9f9;
        padding: 0;
        display: none;
    }
    .gnb > ul > li > a{display: block;}
    .gnb > ul{display: block;}
    .gnb > ul > li{display: block;}
    .gnb > ul > li.active .sub-menu {
        display: block !important;
    }
    .menu-btn {
        display: flex;
    }
    .box-type2{flex-wrap: wrap;}
    .box-type2.right{}
    .box-type2.right .box-tit{order: 1 !important;}
    .box-img{max-width: 100%;}
    .box-tit{padding: 18px;}
    .box-tit h3{font-size: 18px;}
}

@media (max-width: 768px) {
    .m-none{display: none !important;}
    .pc-none{display: block !important;}
    .main-visual{height: 450px;}
    .header-top {
        padding: 18px;
    }
    .logo img {
        height: 32px;
    }
    .slide-content h2 {
        font-size: 32px;
    }

    .quick-menu {
        right: 20px;
        bottom: 20px;
    }
    footer {padding: 50px 0 200px 0;}
}

/* 사업개요 섹션 */
.summary-section {
    background: #fff;
    padding: 80px 0 60px 0;
}
.summary-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.summary-title {
    font-size: 32px;
    font-weight: 700;
    color: #122d43;
    margin-bottom: 32px;
    text-align: center;
}
.summary-img-wrap {
    text-align: center;
    margin-bottom: 32px;
}
.summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 17px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.summary-table th, .summary-table td {
    padding: 16px 10px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}
.summary-table th {
    background: #122d43;
    color: #fff;
    font-weight: 700;
    width: 140px;
    font-size: 16px;
    letter-spacing: 1px;
}
.summary-table td {
    background: #f9f9f9;
    color: #222;
    font-size: 16px;
}
.summary-table tr:last-child th,
.summary-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 768px) {
    .summary-section {
        padding: 40px 0 30px 0;
    }
    .summary-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    .summary-img-wrap img {
        max-width: 100%;
    }
    .summary-table th, .summary-table td {
        padding: 10px 6px;
        font-size: 14px;
    }
    .summary-table th {
        width: 80px;
        font-size: 14px;
    }
}

.fixed-bottom-btns {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    background: none;
    z-index: 9999;
    padding: 12px 0 12px 0;
    pointer-events: none;
}
.fixed-bottom-btns > * {
    pointer-events: auto;
}
.btn-reserve, .btn-popup, .btn-inquiry {
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 600;
    padding: 16px 38px;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #7a868e;
    color: #fff;
    outline: none;
    margin: 0;
}
.btn-reserve {
    background: #122d43;;
    color: #fff;
}
.btn-reserve .icon-star {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') no-repeat center/contain;
    margin-right: 4px;
}
.btn-popup .icon-bell {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c1.1 0 2-.9 2-2h-4a2 2 0 0 0 2 2zm6-6V11c0-3.07-1.63-5.64-4.5-6.32V4a1.5 1.5 0 0 0-3 0v.68C7.63 5.36 6 7.92 6 11v5l-1.7 1.7a1 1 0 0 0 .7 1.7h14a1 1 0 0 0 .7-1.7L18 16z"/></svg>') no-repeat center/contain;
    margin-right: 4px;
}
.btn-inquiry .icon-whatsapp {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.031-.967-.273-.099-.471-.148-.67.15-.198.297-.767.966-.94 1.164-.173.198-.347.223-.644.075-.297-.149-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.372-.025-.521-.075-.149-.669-1.611-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.372-.01-.571-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.099 3.205 5.077 4.372.71.306 1.263.489 1.694.626.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.288.173-1.413-.074-.124-.272-.198-.57-.347z"/></svg>') no-repeat center/contain;
    margin-right: 4px;
}
.btn-reserve:hover, .btn-popup:hover, .btn-inquiry:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.16);
    filter: brightness(0.97);
}
@media (max-width: 1024px) {
    .fixed-bottom-btns {
        gap: 8px;
        padding: 8px 0 8px 0;
    }
    .btn-reserve, .btn-popup, .btn-inquiry {
        font-size: 16px;
        padding: 10px 16px;
        border-radius: 8px;
    }
    .btn-reserve .icon-star,
    .btn-popup .icon-bell,
    .btn-inquiry .icon-whatsapp {
        width: 18px;
        height: 18px;
    }
}
@media (max-width: 600px) {
    .fixed-bottom-btns {
        flex-direction: column;
        gap: 8px;
        padding: 6px 0 6px 0;
        align-items: stretch;
    }
    .btn-reserve, .btn-popup, .btn-inquiry {
        width: 100%;
        justify-content: center;
    }
}

.main-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20000;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.25);
}
.main-popup__content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    overflow: hidden;
    max-width: 370px;
    width: 90vw;
    padding-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}
.main-popup__content img {
    width: 100%;
    display: block;
}
.main-popup__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222;
    padding: 10px 16px 10px 10px;
    border-radius: 0 0 12px 12px;
}
.main-popup__today {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-popup__today input[type="checkbox"] {
    accent-color: #122d43;
    width: 16px;
    height: 16px;
    margin-right: 4px;
}
.main-popup__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 10px;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}
.main-popup__close:hover {
    color: #122d43;
}
@media (max-width: 600px) {
    .main-popup__content {
        max-width: 98vw;
        border-radius: 8px;
    }
    .main-popup__bottom {
        padding: 8px 8px 8px 8px;
        font-size: 13px;
    }
    .main-popup__close {
        font-size: 22px;
    }
}

.reservation-section {
    width: 100%;
    background: #f7f7f7;
    padding: 0;
    margin: 0;
}
.reservation-inner {
    display: flex;
    margin: 0 auto;
    min-height: 480px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.reservation-img {
    flex: 1 1 50%;
    min-width: 0;
    background: #222;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.reservation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.reservation-form-wrap {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    padding: 40px 32px;
}
.reservation-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 48px 36px 36px 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.reservation-title {
    font-size: 36px;
    font-weight: 700;
    color: #444;
    text-align: center;
    margin-bottom: 10px;
}
.reservation-desc {
    text-align: center;
    color: #888;
    margin-bottom: 32px;
    font-size: 17px;
}
.reservation-inputs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
}
.reservation-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.reservation-form label {
    font-size: 16px;
    color: #444;
}
.reservation-form input[type="text"],
.reservation-form input[type="tel"] {
    padding: 14px 12px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 17px;
    background: #fafafa;
}
.reservation-privacy {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    font-size: 15px;
    color: #122d43;;
    font-weight: 500;
}
.privacy-label {
    color: #122d43;;
    font-weight: 700;
    margin-right: 8px;
    background: none;
    border: 0;
    text-decoration: underline;
    cursor: pointer;
}
.reservation-privacy label {
    color: #122d43;;
    font-weight: 500;
    margin-right: 8px;
}
.reservation-privacy input[type="radio"] {
    margin-right: 3px;
}
.reservation-btn {
    width: 100%;
    background: #122d43;;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 22px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}
.reservation-btn span {
    font-size: 26px;
    vertical-align: middle;
    margin-left: 8px;
}
.reservation-btn:hover {
    background: #224d70;
}
@media (max-width: 1024px) {
    .reservation-inner {
        flex-direction: column;
        min-height: 0;
    }
    .reservation-img, .reservation-form-wrap {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }
    .reservation-form-wrap {
        padding: 24px 8px;
    }
    .reservation-form {
        padding: 32px 12px 18px 12px;
    }
    .reservation-title {
        font-size: 26px;
    }
    .reservation-btn {
        font-size: 18px;
        padding: 14px 0;
    }
}

.privacy-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 30000;
    align-items: center;
    justify-content: center;
}
.privacy-modal.active {
    display: flex;
}
.privacy-modal__content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 420px;
    width: 92vw;
    padding: 36px 28px 28px 28px;
    position: relative;
    text-align: left;
}
.privacy-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}
.privacy-modal__close:hover {
    color: #122d43;;
}
.privacy-modal__content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #122d43;
}
.privacy-modal__text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}
@media (max-width: 600px) {
    .privacy-modal__content {
        max-width: 98vw;
        padding: 18px 8px 12px 8px;
    }
    .privacy-modal__content h3 {
        font-size: 17px;
    }
    .privacy-modal__text {
        font-size: 13px;
    }
}

.summary-location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.location-title {
    font-size: 32px;
    font-weight: 700;
    color: #122d43;
    margin-bottom: 32px;
    text-align: center;
}
.location-img-wrap img {
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .summary-location-container {
        max-width: 100%;
        padding: 0 10px;
    }
    .location-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
}

/* 세대안내 섹션 */
.unit-section {
    background: #fff;
    padding: 80px 0 60px 0;
}
.unit-title {
    font-size: 32px;
    font-weight: 700;
    color: #122d43;
    margin-bottom: 32px;
    text-align: center;
}
.unit-img-wrap img {
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .unit-section {
        padding: 40px 0 30px 0;
    }
    .unit-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
}

/* 현장안내 섹션 */
.site-info-section {
    background: #fff;
    padding: 80px 0 60px 0;
}
.site-info-section .summary-location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-info-inner {
    display: flex;
    gap: 40px; /* 좌우 요소 간 간격 */
    align-items: center;
}
.site-info-text, .site-info-img {
    flex: 1 1 50%; /* 좌우 50% 분할 */
    min-width: 0;
}
.site-info-text {
    padding-right: 20px; /* 텍스트와 이미지 사이 간격 조정 */
    text-align: left;
}
.site-info-img img {
    display: block;
    width: 100%; /* 이미지 너비 100% */
    height: auto;
}
.site-info-item {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.site-info-item i.icon-location {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg fill="#122d43;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z"/></svg>') no-repeat center/contain;
    margin-right: 8px;
    vertical-align: middle;
}
.site-info-contact {
    margin-bottom: 30px;
}
.contact-title {
    font-size: 18px;
    color: #122d43;;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-number {
    font-size: 48px;
    color: #122d43;;
    font-weight: 700;
}
.site-info-notice {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .site-info-section {
        padding: 40px 0 30px 0;
    }
    .site-info-inner {
        flex-direction: column; /* 모바일에서 세로로 쌓이도록 */
        gap: 30px;
    }
    .site-info-text, .site-info-img {
        flex: 1 1 100%; /* 모바일에서 100% 너비 */
        padding: 0;
    }
    .site-info-item {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .contact-title {
        font-size: 16px;
    }
    .contact-number {
        font-size: 36px;
    }
    .site-info-notice {
        font-size: 12px;
    }
} 