@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

/* [초기화] */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Noto Sans KR', sans-serif; }
a { text-decoration: none; color: inherit; }
li { list-style: none; }
body { padding-top: 100px; color: #333; line-height: 1.6; padding-bottom: 80px; }

/* [공통 변수 - 색상 변경 시 여기만 수정] */
:root {
    --primary: #b78a48; /* 골드 (브랜드 컬러) */
    --secondary: #222;  /* 블랙 (강조) */
    --light-bg: #f8f8f8;
    --border: #ddd;
}

/* [헤더] 프랭크버거 스타일 고정형 */
header {
    position: fixed; top: 0; left: 0; width: 100%; height: 100px;
    background: rgba(255, 255, 255, 0.98); border-bottom: 1px solid var(--border);
    z-index: 9999; display: flex; justify-content: space-between; align-items: center; padding: 0 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo img { height: 50px; }
.gnb { display: flex; gap: 30px; }
.gnb li a { font-size: 17px; font-weight: 700; color: #333; transition: 0.3s; position: relative; }
.gnb li a:hover, .gnb li a.active { color: var(--primary); }
.gnb li a::after { content:''; display: block; width: 0; height: 2px; background: var(--primary); transition: 0.3s; position: absolute; bottom: -5px; left: 0; }
.gnb li a:hover::after { width: 100%; }
.btn-head-inquiry {
    padding: 12px 25px; background: var(--primary); color: #fff;
    font-weight: 700; border-radius: 5px; transition: 0.3s;
}
.btn-head-inquiry:hover { background: #966f35; }

/* [서브 비주얼 공통] */
.sub-visual {
    height: 400px; background: #222; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center; color: #fff;
    background-size: cover; background-position: center; position: relative;
}
.sub-visual::after { content:''; position:absolute; inset:0; background:rgba(0,0,0,0.5); }
.sub-visual h2, .sub-visual p { position: relative; z-index: 2; }
.sub-visual h2 { font-size: 45px; font-weight: 900; margin-bottom: 15px; }
.sub-visual p { font-size: 18px; font-weight: 300; opacity: 0.9; }

/* [레이아웃 공통] */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title span { display: block; color: var(--primary); font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
.section-title h3 { font-size: 40px; font-weight: 900; color: #222; }

/* [하단 고정바] */
.floating-bar {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 70px;
    background: #222; z-index: 9990; display: flex; justify-content: center; align-items: center;
    color: #fff; font-size: 18px;
}
.floating-bar strong { color: var(--primary); margin-right: 15px; font-size: 20px; }
.floating-bar a { padding: 8px 30px; background: var(--primary); border-radius: 30px; font-weight: bold; margin-left: 20px; font-size: 16px; }

/* [페이지별 스타일] */
/* 1. 브랜드 (지그재그) */
.story-block { display: flex; align-items: center; gap: 50px; margin-bottom: 100px; }
.story-block:nth-child(even) { flex-direction: row-reverse; }
.story-img { flex: 1; height: 400px; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-txt { flex: 1; }
.story-txt h4 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.story-txt p { font-size: 17px; color: #666; line-height: 1.8; }

/* 2. 메뉴 (그리드) */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.menu-item { border: 1px solid #eee; border-radius: 20px; overflow: hidden; transition: 0.3s; background: #fff; }
.menu-item:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.menu-pic { height: 280px; width: 100%; object-fit: cover; }
.menu-info { padding: 30px; text-align: center; }
.menu-badge { background: #222; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 12px; display: inline-block; margin-bottom: 10px; }
.menu-name { font-size: 22px; font-weight: 800; margin-bottom: 10px; }

/* 3. 오시는 길 */
.map-box { width: 100%; height: 500px; background: #eee; border-radius: 20px; overflow: hidden; margin-bottom: 50px; }
.addr-info { display: flex; border-top: 2px solid #222; padding-top: 30px; }
.addr-col { flex: 1; }
.addr-row { margin-bottom: 15px; font-size: 16px; }
.addr-row strong { display: inline-block; width: 100px; font-weight: 700; }

/* 4. 뉴스/공지 (리스트) */
.board-list { border-top: 2px solid #222; }
.board-item { display: flex; padding: 25px 0; border-bottom: 1px solid #eee; align-items: center; transition: 0.3s; }
.board-item:hover { background: #fafafa; }
.board-num { width: 80px; text-align: center; color: #999; font-weight: 700; }
.board-thumb { width: 200px; height: 130px; border-radius: 10px; overflow: hidden; background: #eee; margin-right: 30px; }
.board-thumb img { width: 100%; height: 100%; object-fit: cover; }
.board-content { flex: 1; }
.board-title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 10px; }
.board-date { font-size: 14px; color: #888; }

/* 5. 이벤트 (탭 + 카드) */
.tab-menu { display: flex; justify-content: center; margin-bottom: 50px; }
.tab-menu li { width: 180px; text-align: center; border: 1px solid #ddd; border-right: none; cursor: pointer; }
.tab-menu li:last-child { border-right: 1px solid #ddd; }
.tab-menu li a { display: block; padding: 15px 0; font-weight: 700; color: #666; }
.tab-menu li.active { background: var(--primary); border-color: var(--primary); }
.tab-menu li.active a { color: #fff; }
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.event-card { border: 1px solid #eee; border-radius: 20px; overflow: hidden; transition: 0.3s; }
.event-pic { height: 300px; background: #ddd; }
.event-pic img { width: 100%; height: 100%; object-fit: cover; }
.event-txt { padding: 30px; position: relative; }
.event-badge { position: absolute; top: -15px; left: 30px; background: var(--primary); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 13px; font-weight: 700; }
.event-badge.end { background: #999; }

/* 6. 가맹문의 (폼) */
.inquiry-box { max-width: 800px; margin: 0 auto; background: #fff; padding: 60px; border-radius: 20px; box-shadow: 0 0 40px rgba(0,0,0,0.05); }
.inp-row { margin-bottom: 20px; }
.inp-row label { display: block; font-weight: 700; margin