.menu-section1 {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: left;
    color: white;
}

.menu-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 핵심: cover 방식으로 배경처럼 */
    z-index: 0;
    display: block;
}


.menu-section1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(141, 79, 11, 0.6); /* #8d4f0b + 60% 투명도 */
    z-index: 0;
}

.menu-section1-inner {
    position: relative; /* 텍스트가 오버레이 위로 올라오도록 */
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 50px 120px;
}

.menu-title {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 24px;
    letter-spacing: -2.2px;
}

.menu-subtitle {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}


.menu-section2 {
    padding: 100px 24px;
    background: #fff;
}

.menu-section2-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.tab-menu-title {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: left;
}

.tabmenu {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    padding: 0; /* ul 기본 패딩 제거 */
    list-style: none; /* 불릿(점) 제거 */
}

.tabmenu li {
    flex: 1; /* 각 메뉴 균등 분배 */
}

.tabmenu a {
    display: block;
    line-height: 100px;
    border: 1px solid #bfbfbf;
    border-right: 0;
    box-sizing: border-box;
    font-size: 25px;
    letter-spacing: -0.025em;
    color: #5D3E25;
    text-decoration: none; /* 밑줄 제거 */
}

.tabmenu li:last-child a {
    border-right: 1px solid #bfbfbf;
}

/* 선택된 탭, 호버 시 */
.tabmenu a:hover,
.tabmenu li.on a {
    background: #FF8739;
    border-color: #E0D7A4;
    color: #fff;
}


/* 숨기기 */
.hidden {
    display: none;
}

/* 미디어쿼리: 모바일 기본, 데스크탑만 따로 켜기 */
.desktop-only { display: flex; }
.mobile-only { display: none; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.menu-card {
    border-radius: 12px;
    overflow: hidden;
    padding: 20px 12px;
}

.menu-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.menu-group-header {
    margin: 60px 0 32px;
    text-align: left;
}

.menu-group-label {
    display: inline-block;
    background-color: #ffe6cc; /* 연한 살구/오렌지 */
    color: #222;
    font-size: 20px;
    font-weight: 500;
    padding: 18px 28px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.menu-divider {
    border: none;
    height: 1px;
    background-color: #e6e6e6;
    margin-top: 16px;
}

.menu-name {
    font-weight: 600;
    font-size: 25px;
    line-height: 170%;
    letter-spacing: -0.55px; /* 25px × -2.2% = -0.55px */
    -webkit-font-smoothing: antialiased;
}

.menu-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 132%;
    letter-spacing: -0.55px; /* 25px × -2.2% = -0.55px */
    -webkit-font-smoothing: antialiased;
}


