/* 햄버거 버튼은 모바일에서만 보이게 */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2d2d2d;
    z-index: 10000;
    padding-top: 100px;
    text-align: center;

    justify-content: center; /* ⬅︎ 수직 가운데 정렬 */
    align-items: center; /* ⬅︎ 가로 중앙 정렬 */
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px; /* 항목 간 간격 */
    align-items: center;
}

.mobile-menu li {
    margin: 28px 0;
}

.mobile-menu a {
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    display: block;
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: #ff944d;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu li.active a {
    font-weight: 700;
    font-size: 26px;
    color: #ff944d;
}

@media (max-width: 768px) {

    .header-logo {
        position: relative;
        height: 35px;
        width: 100px;
        z-index: 2;
        background-image: url("../img/new/common/bi_white.png");
    }

    .main-header {
        padding-top: 0px;
    }

    .main-header.white-header {
        background: transparent;
    }


    /* 햄버거 메뉴 */
    .hamburger-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 28px;
        z-index: 3;
    }

    /* 내비게이션 숨김 */
    .header-nav {
        display: none;
    }

    /* 헤더 정렬 */
    .header-inner {
        justify-content: center;
        position: relative;
        align-items: center;
    }

    /* 메인 섹션 숨김 */
    .main-section7 {
        display: none;
    }

    /* 푸터 선 숨김 */
    .footer-line {
        display: none;
    }

    .footer-content {
        gap: 0;
    }

    /* 푸터 로고 크기 및 여백 조정 */
    .footer-logo {
        width: 150px;
        margin-top: 35px;
        margin-bottom: 25px;
    }

    .footer-info {
        margin: 0 0;
        font-size: 12px;
        gap: 0px 2px;
    }

    .footer-copy {
        margin-top: 20px;
        font-size: 12px;
    }
}