#main-header {
    width: 100%;
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #eee;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
}

/* 2. 내부 정렬 컨테이너 */
#main-header .container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* 3. 로고 크기 */
.logo img {
    height: 80px;
    width: auto;
    margin-bottom: -12px;
}

/* 4. 메뉴 정렬 및 폰트 */
.gnb ul {
    display: flex;
    list-style: none;
    align-items: flex-end;
}

.gnb ul li {
    margin-left: 50px;
}

/* 예약하기 버튼이 들어있는 li만 간격을 좁게 조절 */

.gnb ul li:last-child {
    margin-left: 50px !important;
}

/* 예약하기 버튼의 왼쪽 간격(서비스와의 거리)만 조절 */
.gnb ul li:nth-last-child(2) {
    margin-left: 50px !important;
    /* 이 숫자를 줄이면 예약하기 버튼이 왼쪽으로 */
}

.gnb ul li a {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    padding-bottom: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* 5. 예약하기 버튼 (포인트) */
.btn-point {
    color: #ff0000 !important;
    border: 2px solid #ff0000 !important;
    padding: 8px 22px !important;
    border-radius: 25px !important;
    margin-bottom: -3px;
    /* 버튼 내부 글자가 한 줄로 유지되도록 추가 */
    white-space: nowrap;
}

/* 6. 마우스 올렸을 때 효과  */
.gnb ul li a:hover {
    color: #2A54F2;
    transform: translateZ(80px) scale(1.3) translateY(-5px);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}