@charset "utf-8";

/* [1. 컬러 및 기본 설정] */
:root {
    --bg-black: #111111;
    --bg-dark: #1A1A1A;
    --deep-red: #B71C1C;
    --bright-red: #E53935;
    --yellow: #FFD700;
    --text-white: #FFFFFF;
    --text-gray: #AAAAAA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: var(--bg-black); 
    color: var(--text-white); 
    font-family: 'MaruBuri', serif; 
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 타이틀 전용 폰트 */
.font-impact { font-family: 'Gowun Batang', serif; letter-spacing: 0.02em; font-weight: 700; }
.text-red { color: var(--bright-red); }
.text-yellow { color: var(--yellow); }

/* [2. 헤더] */
header { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    height: 80px; 
    background: rgba(17, 17, 17, 0.95); 
    border-bottom: 2px solid var(--deep-red);
    z-index: 1000; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 0 40px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}
.logo { 
    font-family: 'Gowun Batang', serif;
    font-size: 36px; 
    color: var(--text-white); 
    font-weight: 700;
    letter-spacing: 0.02em;
}
.logo span { color: var(--deep-red); }

.gnb { display: flex; gap: 50px; }
.gnb li a { 
    font-family: 'MaruBuri', serif;
    font-size: 16px; 
    font-weight: 400; 
    color: var(--text-white); 
    letter-spacing: 0.02em; 
}
.gnb li a:hover { color: var(--yellow); }

.hd-right { display: flex; align-items: center; gap: 15px; }
.hd-right a { color: var(--text-gray); font-size: 15px; }
.hd-right a:hover { color: #fff; }

.btn-head {
    background: var(--deep-red); 
    color: #fff !important; 
    padding: 12px 30px; 
    border-radius: 4px; 
    font-weight: 500; 
    font-size: 15px;
    border: 1px solid var(--deep-red);
    letter-spacing: 0;
}
.btn-head:hover { background: transparent; color: var(--deep-red) !important; }

/* 컨테이너 */
#wrapper { padding-top: 80px; }
#container { width: 100%; }

.sub-title {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}
.sub-title h2 {
    font-size: 28px;
    color: #fff;
    border-bottom: 2px solid var(--deep-red);
    padding-bottom: 15px;
}

/* [3. 히어로 섹션] */
.hero { 
    height: 750px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    text-align: left;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../img/main_ba_1.png');
    background-size: cover; 
    background-position: center; 
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
    overflow: hidden;
}
.hero::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 200px;
    background: linear-gradient(to top, var(--bg-black), transparent);
    z-index: 1;
}

/* 오른쪽 로고 */
.hero-logo {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
}
.hero-logo-text {
    font-family: 'Gowun Batang', serif;
    font-size: 68px;
    line-height: 1;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.8);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.hero-logo-text .white { color: #FFFFFF; }
.hero-logo-text .blue { color: #4FC3F7; }
.hero-logo-text .red { color: #E53935; }
.hero-logo-sub {
    font-family: 'MaruBuri', serif;
    font-size: 20px;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* 연기 효과 - 음식 위에서 피어오르는 느낌 */
.smoke-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.smoke {
    position: absolute;
    bottom: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(ellipse at center, 
        rgba(255,255,255,0.5) 0%, 
        rgba(255,255,255,0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    animation: smokeFloat 5s ease-out infinite;
    opacity: 0;
}

.smoke:nth-child(1) { left: 35%; animation-delay: 0s; width: 80px; height: 80px; }
.smoke:nth-child(2) { left: 42%; animation-delay: 0.8s; width: 100px; height: 100px; }
.smoke:nth-child(3) { left: 48%; animation-delay: 0.3s; width: 130px; height: 130px; }
.smoke:nth-child(4) { left: 55%; animation-delay: 1.2s; width: 90px; height: 90px; }
.smoke:nth-child(5) { left: 40%; animation-delay: 1.8s; width: 70px; height: 70px; }
.smoke:nth-child(6) { left: 52%; animation-delay: 2.5s; width: 110px; height: 110px; }
.smoke:nth-child(7) { left: 45%; animation-delay: 0.5s; width: 85px; height: 85px; }

@keyframes smokeFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0.3);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    40% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-350px) translateX(20px) scale(1.8);
        opacity: 0;
    }
}

/* 얇은 연기 줄기 */
.smoke-wisp {
    position: absolute;
    bottom: 20%;
    width: 40px;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(255,255,255,0.4) 0%, 
        rgba(255,255,255,0.15) 40%,
        transparent 100%);
    filter: blur(12px);
    animation: wispFloat 6s ease-out infinite;
    opacity: 0;
    border-radius: 50%;
}

.smoke-wisp:nth-child(8) { left: 38%; animation-delay: 0.2s; }
.smoke-wisp:nth-child(9) { left: 48%; animation-delay: 1.5s; width: 50px; }
.smoke-wisp:nth-child(10) { left: 55%; animation-delay: 3s; width: 35px; }

@keyframes wispFloat {
    0% {
        transform: translateY(0) scaleY(0.5) scaleX(1);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.4;
        transform: translateY(-200px) scaleY(1.2) scaleX(1.5);
    }
    100% {
        transform: translateY(-500px) scaleY(2) scaleX(0.3);
        opacity: 0;
    }
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 1400px;
    width: 100%;
    margin: 0;
    padding: 0 0 0 80px;
}
.hero-badge { 
    background: var(--yellow); 
    color: #000; 
    padding: 8px 24px; 
    font-weight: 400; 
    display: inline-block; 
    margin-bottom: 25px; 
    transform: skew(-10deg);
    font-size: 15px;
    letter-spacing: 1px;
}
.hero h1 { 
    font-family: 'Gowun Batang', serif;
    font-size: 52px; 
    line-height: 1.4; 
    margin-bottom: 30px; 
    text-shadow: 2px 4px 12px rgba(0,0,0,0.8);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.hero p { 
    font-family: 'MaruBuri', serif;
    font-size: 17px; 
    color: rgba(255,255,255,0.85); 
    margin-bottom: 50px; 
    font-weight: 400; 
    letter-spacing: 0.02em;
}

.btn-hero {
    font-family: 'MaruBuri', serif;
    background: var(--yellow); 
    color: #000; 
    padding: 18px 50px; 
    font-size: 16px;
    font-weight: 700; 
    border-radius: 50px; 
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    display: inline-block;
    letter-spacing: 0.02em;
}
.btn-hero:hover { background: #fff; transform: scale(1.05); }

/* [4. 섹션 공통] */
section { padding: 100px 0; }
.sec-title { text-align: center; margin-bottom: 60px; }
.sec-title h2 { 
    font-family: 'Gowun Batang', serif;
    font-size: 36px; 
    margin-bottom: 15px; 
    color: var(--text-white); 
    font-weight: 700;
    letter-spacing: 0.03em;
}
.sec-title h2 span { color: var(--deep-red); border-bottom: 2px solid var(--yellow); }
.sec-title p { 
    font-family: 'MaruBuri', serif;
    color: var(--text-gray); 
    font-size: 15px; 
    font-weight: 400; 
    letter-spacing: 0.02em; 
}

/* [5. 메뉴 카드] */
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.menu-card { 
    background: var(--bg-dark); 
    border: 1px solid #333; 
    overflow: hidden; 
    transition: 0.3s; 
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}
.menu-card.show {
    opacity: 1;
    transform: translateY(0);
}
.menu-card:nth-child(1) { transition-delay: 0.1s; }
.menu-card:nth-child(2) { transition-delay: 0.2s; }
.menu-card:nth-child(3) { transition-delay: 0.3s; }
.menu-card:nth-child(4) { transition-delay: 0.4s; }
.menu-card:nth-child(5) { transition-delay: 0.1s; }
.menu-card:nth-child(6) { transition-delay: 0.2s; }
.menu-card:nth-child(7) { transition-delay: 0.3s; }
.menu-card:nth-child(8) { transition-delay: 0.4s; }
.menu-card:hover { border-color: var(--yellow); transform: translateY(-10px); }
.menu-card.show:hover { transform: translateY(-10px); }

.menu-img { height: 250px; overflow: hidden; position: relative; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.menu-card:hover .menu-img img { transform: scale(1.1); }

.badge-hot { 
    position: absolute; 
    top: 15px; 
    left: 15px; 
    background: var(--deep-red); 
    color: #fff; 
    padding: 5px 12px; 
    font-size: 11px; 
    font-weight: 500; 
    border-radius: 3px;
    z-index: 5;
    letter-spacing: 0.5px;
}

.menu-info { padding: 25px 20px; text-align: center; }
.menu-info h3 { 
    font-family: 'Gowun Batang', serif;
    font-size: 18px; 
    margin-bottom: 10px; 
    color: #fff; 
    font-weight: 700;
    letter-spacing: 0.02em;
}
.menu-info p { 
    font-family: 'MaruBuri', serif;
    font-size: 13px; 
    color: #999; 
    margin-bottom: 15px; 
    font-weight: 400; 
}
.menu-price { 
    font-family: 'MaruBuri', serif;
    font-size: 20px; 
    font-weight: 700; 
    color: var(--yellow); 
}

/* [6. 배너] */
.banner-red { 
    background: var(--deep-red); 
    color: #fff; 
    text-align: center; 
    padding: 100px 0; 
    position: relative; 
    overflow: hidden;
}
.banner-red::before {
    content:''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); 
    opacity: 0.2;
}
.banner-content { position: relative; z-index: 2; }
.banner-content h2 { 
    font-family: 'Gowun Batang', serif;
    font-size: 42px; 
    margin-bottom: 25px; 
    font-weight: 700;
    letter-spacing: 0.03em;
}
.banner-content p { 
    font-family: 'MaruBuri', serif;
    font-size: 16px; 
    margin-bottom: 40px; 
    opacity: 0.95; 
    font-weight: 400; 
    line-height: 2;
    letter-spacing: 0.02em;
}
.btn-outline { 
    border: 2px solid var(--yellow); 
    color: var(--yellow); 
    padding: 16px 45px; 
    font-size: 18px; 
    font-weight: 500; 
    transition: 0.3s;
    display: inline-block;
    background: transparent;
    letter-spacing: 1px;
}
.btn-outline:hover { background: var(--yellow); color: var(--deep-red); }

/* [7. 문의 폼] */
.inquiry-sec { background: var(--bg-dark); }
.inquiry-sec .sec-title h2 {
    font-family: 'Gowun Batang', serif;
    font-size: 36px;
    font-weight: 700;
}
.form-wrap { 
    max-width: 600px; 
    margin: 0 auto; 
    background: #000; 
    padding: 50px; 
    border: 1px solid #333; 
    box-shadow: 0 0 30px rgba(183, 28, 28, 0.1);
}
.form-row { margin-bottom: 20px; }
.form-input { 
    width: 100%; 
    padding: 15px; 
    background: #222; 
    border: 1px solid #444; 
    color: #fff; 
    font-size: 15px; 
    font-weight: 400;
    outline: none; 
    transition: 0.3s;
}
.form-input:focus { border-color: var(--yellow); }
.form-input::placeholder { color: #777; font-weight: 300; }
.btn-submit { 
    width: 100%; 
    background: var(--deep-red); 
    color: #fff; 
    border: none; 
    padding: 18px; 
    font-size: 16px; 
    font-weight: 500; 
    cursor: pointer;
    letter-spacing: 0;
}
.btn-submit:hover { background: #d32f2f; }

/* [8. 푸터] */
footer { 
    background: #000; 
    border-top: 1px solid #222; 
    padding: 60px 0; 
    padding-bottom: 120px; /* 하단바 공간 확보 */
    text-align: center; 
    color: #ccc; 
}
.f-logo { 
    font-family: 'Gowun Batang', serif;
    font-size: 30px; 
    margin-bottom: 25px; 
    display: inline-block; 
    font-weight: 700;
    letter-spacing: 0.02em;
}
.f-logo .white { color: #FFFFFF; }
.f-logo .blue { color: #4FC3F7; }
.f-logo .red { color: #E53935; }
footer p { 
    font-family: 'MaruBuri', serif;
    line-height: 2; 
    font-size: 14px; 
    font-weight: 400; 
    color: #bbb; 
}
footer p:last-child { color: #666; }

/* [9. 하단 고정 문의바] */
.fixed-inquiry {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ff6d00;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.fixed-inquiry.show {
    transform: translateY(0);
    opacity: 1;
}
.fixed-inquiry-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    padding-left: 220px;
    gap: 20px;
}
.inquiry-chef {
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 200px;
    height: 220px;
    z-index: 10;
}
.inquiry-chef img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 220px;
    width: auto;
    object-fit: contain;
}
.inquiry-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-right: 20px;
}
.inquiry-label {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}
.inquiry-phone {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
}
.inquiry-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.inquiry-form input,
.inquiry-form select {
    height: 45px;
    padding: 0 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: #333;
    min-width: 100px;
}
.inquiry-form input::placeholder {
    color: #999;
}
.inquiry-form input[type="text"],
.inquiry-form input[type="tel"] {
    width: 120px;
}
.inquiry-form select {
    width: 130px;
    cursor: pointer;
}
.inquiry-agree {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}
.inquiry-agree input {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-right: 5px;
}
.inquiry-agree label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.inquiry-submit {
    height: 45px;
    padding: 0 30px;
    background: #E53935;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}
.inquiry-submit:hover {
    background: #C62828;
}

/* 그룹 페이지 */
.group-wrap {
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.group-latest {
    background: var(--bg-dark);
    border: 1px solid #333;
    padding: 20px;
}

/* 그누보드 기본 */
.tbl_head01 { width: 100%; border-collapse: collapse; background: var(--bg-dark); }
.tbl_head01 th { background: var(--deep-red); color: #fff; padding: 12px; border: 1px solid #444; }
.tbl_head01 td { background: var(--bg-dark); color: var(--text-gray); padding: 12px; border: 1px solid #333; }
.tbl_head01 a { color: #fff; }
.tbl_head01 a:hover { color: var(--yellow); }

.btn_01 { background: var(--deep-red) !important; color: #fff !important; padding: 8px 20px; border: none; border-radius: 3px; }
.btn_02 { background: #333 !important; color: #fff !important; padding: 8px 20px; border: none; border-radius: 3px; }

.pg_wrap { text-align: center; margin: 20px 0; }
.pg a, .pg_current { display: inline-block; padding: 8px 12px; margin: 0 2px; background: #222; color: #888; border-radius: 3px; }
.pg a:hover { background: #333; color: #fff; }
.pg_current { background: var(--deep-red) !important; color: #fff !important; }

.cnt_ctt { max-width: 1200px; margin: 0 auto; padding: 40px 20px; color: var(--text-gray); line-height: 1.8; }
.cnt_ctt h2, .cnt_ctt h3 { color: #fff; margin: 20px 0 10px; }

.frm_input { background: #222 !important; border: 1px solid #444 !important; color: #fff !important; padding: 10px !important; }
.frm_input:focus { border-color: var(--yellow) !important; }

/* [반응형] */
@media (max-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .group-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1200px) {
    .inquiry-form input[type="text"],
    .inquiry-form input[type="tel"] { width: 100px; }
    .inquiry-form select { width: 110px; }
    .inquiry-phone { font-size: 30px; }
    .fixed-inquiry-inner { padding-left: 200px; }
    .inquiry-chef img { height: 200px; }
}

@media (max-width: 1024px) {
    .hero-logo { right: 40px; }
    .hero-logo-text { font-size: 70px; }
    .hero-logo-sub { font-size: 22px; letter-spacing: 5px; }
    
    .fixed-inquiry { height: auto; padding: 15px 0; }
    .fixed-inquiry-inner { flex-wrap: wrap; justify-content: center; padding-left: 20px; }
    .inquiry-chef { display: none; }
    .inquiry-title { flex-direction: row; align-items: center; gap: 15px; margin-right: 0; }
    .inquiry-form { width: 100%; justify-content: center; flex-wrap: wrap; }
    footer { padding-bottom: 180px; }
}

@media (max-width: 768px) {
    header { padding: 0 20px; }
    .logo { font-size: 36px; }
    .gnb { display: none; }
    .btn-head { padding: 10px 20px; font-size: 14px; }
    
    .hero { height: 550px; flex-direction: column; justify-content: center; }
    .hero-content { padding: 0 20px; text-align: center; }
    .hero h1 { font-size: 42px; }
    .hero p { font-size: 16px; }
    
    .hero-logo {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 30px;
    }
    .hero-logo-text { font-size: 50px; }
    .hero-logo-sub { font-size: 18px; letter-spacing: 4px; }
    
    /* 하단 고정바 모바일 */
    .fixed-inquiry { height: auto; padding: 15px 0; }
    .fixed-inquiry-inner { 
        padding: 0 15px !important; 
        flex-direction: column;
        gap: 10px;
    }
    .inquiry-chef { display: none; }
    .inquiry-title { 
        width: 100%;
        justify-content: center;
        margin-right: 0;
        gap: 10px;
    }
    .inquiry-label { font-size: 14px; }
    .inquiry-phone { font-size: 22px !important; }
    
    .inquiry-form {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .inquiry-form input[type="text"],
    .inquiry-form input[type="tel"] {
        width: 100% !important;
        height: 40px;
        font-size: 14px;
        padding: 0 12px;
    }
    .inquiry-form select {
        width: 100% !important;
        height: 40px;
        font-size: 13px;
        padding: 0 10px;
    }
    .inquiry-agree {
        grid-column: 1 / -1;
        justify-content: center;
        font-size: 13px;
    }
    .inquiry-submit {
        grid-column: 1 / -1;
        width: 100%;
        height: 45px;
        font-size: 16px;
    }
    
    footer { padding-bottom: 320px; }
    .btn-hero { padding: 15px 35px; font-size: 16px; }
    
    section { padding: 60px 0; }
    .sec-title h2 { font-size: 30px; }
    
    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .menu-img { height: 180px; }
    .menu-info { padding: 15px; }
    .menu-info h3 { font-size: 16px; }
    .menu-price { font-size: 18px; }
    
    .banner-red { padding: 70px 0; }
    .banner-content h2 { font-size: 32px; }
    .banner-content p { font-size: 15px; }
    .banner-content p br { display: none; }
    
    .form-wrap { padding: 30px 20px; }
    .group-wrap { grid-template-columns: 1fr; }
    .sub-title { padding: 30px 20px 15px; }
    .sub-title h2 { font-size: 22px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 34px; }
    .hero p { font-size: 14px; }
    .menu-grid { grid-template-columns: 1fr; }
    .sec-title h2 { font-size: 24px; }
    .banner-content h2 { font-size: 26px; }
    .banner-content p { font-size: 14px; }
    
    /* 하단바 더 작은 화면 */
    .inquiry-form {
        grid-template-columns: 1fr;
    }
    .inquiry-form select {
        grid-column: 1;
    }
    
    footer { padding-bottom: 420px; }
}
