@charset "utf-8";

/* =========================================
   1. 기본 리셋 및 폰트 설정
========================================= */
:root {
    --core-red: #ff3300;
    --core-orange: #ff8800;
    --core-gold: #ffcc00;
    --bright-gold: #ffe600;
    --base-dark: #030305;
    --panel-bg: rgba(15, 15, 20, 0.7);
    --point-cyan: #00f0ff;
}

*, *::before, *::after { box-sizing: border-box; }

body, html {
    margin: 0; padding: 0; background-color: var(--base-dark); color: #fff;
    font-family: 'Pretendard', sans-serif; overflow-x: hidden; word-break: keep-all;
}

/* =========================================
   2. 화려한 애니메이션 정의
========================================= */
@keyframes levitate-box {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes move-bg-fx {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes text-bounce {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}
@keyframes bottom-glow {
    0% { box-shadow: 0 0 10px rgba(255, 204, 0, 0.5); transform: translateX(-50%) scale(1); }
    50% { box-shadow: 0 0 40px 5px rgba(255, 204, 1, 1); transform: translateX(-50%) scale(1.05); }
    100% { box-shadow: 0 0 10px rgba(255, 204, 0, 0.5); transform: translateX(-50%) scale(1); }
}
@keyframes pulse-border {
    0% { border-color: rgba(255, 204, 0, 0.3); box-shadow: 0 0 5px rgba(255, 204, 0, 0.2); }
    50% { border-color: rgba(255, 204, 0, 1); box-shadow: 0 0 20px rgba(255, 204, 0, 0.8); }
    100% { border-color: rgba(255, 204, 0, 0.3); box-shadow: 0 0 5px rgba(255, 204, 0, 0.2); }
}

/* =========================================
   3. 메인 히어로 영역
========================================= */
.bs-vibe-wrap { width: 100%; overflow-x: hidden; position: relative; z-index: 1;}

.top-visual-sec {
    position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; text-align: center;
    background: radial-gradient(circle at center, #1a1a00 0%, var(--base-dark) 60%);
}
.top-visual-inner { z-index: 10; width: 100%; padding: 0 20px; }

.brand-logo-img {
    display: block; margin: 0 auto 30px auto; max-width: 350px; width: 65%; height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 204, 0, 1)); mix-blend-mode: screen; 
}

.top-visual-inner h1 {
    font-size: clamp(38px, 7.5vw, 85px); font-weight: 900; line-height: 1.2; margin-bottom: 25px; letter-spacing: -1.5px;
    background: linear-gradient(to bottom, #ffcccc 0%, #cdcf3b 40%, #cc0000 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: text-bounce 3s ease-in-out infinite;
}

.hero-desc-line {
    font-size: clamp(16px, 4vw, 22px); color: #ddd; font-weight: 500; margin-bottom: 40px; word-break: keep-all; letter-spacing: -0.5px;
}
.hero-desc-line .divider {
    display: inline-block; margin: 0 15px; color: #555; font-size: 20px; vertical-align: middle;
}
.hero-tag-group {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.hero-tag {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); 
    color: #ccc; padding: 12px 22px; border-radius: 50px; font-weight: 500; font-size: clamp(13px, 3.5vw, 16px);
    transition: all 0.3s ease; letter-spacing: -0.5px;
}
.hero-tag:hover {
    border-color: var(--core-gold); color: #fff; background: rgba(255, 204, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-desc-line .divider { display: none; }
    .hero-desc-line { line-height: 1.6; }
    .hero-desc-line span.mobile-block { display: block; margin-top: 5px; } 
}

/* =========================================
   4. 본문 공통 타이틀
========================================= */
.sec-tit-text { 
    text-align: center; font-size: clamp(30px, 6vw, 42px); margin-bottom: 50px; font-weight: 900; color: #fff; 
    text-shadow: 0 0 20px rgba(255,255,255,0.3); position: relative;
}
.sec-tit-text .color-point { 
    color: var(--core-gold); text-shadow: 0 0 25px rgba(255,204,0,0.8); 
}
.sec-tit-text::after {
    content: ''; display: block; width: 70px; height: 4px; background: var(--core-gold); 
    margin: 20px auto 0; border-radius: 2px; box-shadow: 0 0 15px var(--core-gold);
}

/* =========================================
   5. 이미지 갤러리 섹션
========================================= */
.gallery-grid-sec { max-width: 1400px; margin: 0 auto; padding: 20px 20px 80px 20px; }
.gallery-grid-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

.gallery-card {
    background: #0f0f12; border: 2px solid #5d85dd; border-radius: 16px;
    padding-bottom: 25px; text-align: center; overflow: hidden; position: relative;
    transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* 카드 테두리 반짝임 적용 */
.gallery-grid-sec:nth-of-type(1) .gallery-card.hot-pick,
.gallery-grid-sec:nth-of-type(2) .gallery-card { 
    animation: pulse-border 2.5s infinite; 
}

.gallery-card:hover { transform: translateY(-8px); border-color: var(--core-gold); box-shadow: 0 15px 35px rgba(255, 204, 0, 0.4); }
.card-img-wrap { width: 100%; aspect-ratio: 1 / 1; background: #222; overflow: hidden; border-bottom: 1px solid #333; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-card:hover .card-img-wrap img { transform: scale(1.08); }

.card-desc-txt { margin: 15px 10px 20px 10px; line-height: 1.4; word-break: keep-all; }
.card-desc-txt .shop-name { display: block; font-size: 20px; color: #ff2626; font-weight: 600; margin-bottom: 4px; letter-spacing: 0.5px; }
.card-desc-txt .shop-desc { display: block; font-size: 17px; color: #eee; font-weight: 800; }
.hot-pick .card-desc-txt .shop-desc { color: #f0e5e5; text-shadow: 0 0 8px rgba(255,255,255,0.4); font-weight: 500; }
.card-desc-txt .chk-icon { color: var(--core-gold); font-size: 13px; margin-right: 4px; text-shadow: 0 0 10px var(--core-gold); }

/* [수정] 카드 안의 예약 문의 버튼 (모바일 화면 깨짐 방지 위해 패딩 및 폰트 사이즈 조정) */
.card-call-btn {
    display: inline-block; 
    background: #1a1a22; 
    color: var(--core-gold); 
    padding: 10px 15px; /* 좌우 여백을 줄여서 모바일에서 안 깨지게 조절 */
    width: 88%; /* 카드 폭에 맞게 유동적으로 조절 */
    max-width: 220px;
    border-radius: 30px; 
    text-decoration: none; 
    font-size: clamp(13px, 3.2vw, 15px); /* 화면 크기에 따라 글자 크기 유연 조절 */
    font-weight: 800;
    border: 2px solid #5d85dd;
    transition: all 0.3s ease;
}
.card-call-btn:hover { background: var(--core-gold); color: #000; border-color: var(--core-gold); }

/* =========================================
   6. 텍스트 정보 섹션 공통 스타일
========================================= */
.info-sec-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.info-sec-header { margin-bottom: 40px; text-align: left; }
.info-sub-tit { color: var(--core-orange); font-size: 14px; font-weight: 800; letter-spacing: 1px; margin-bottom: 15px; display: block; text-transform: uppercase; }
.info-main-tit { font-size: clamp(28px, 5vw, 42px); font-weight: 900; color: #fff; margin: 0 0 15px 0; letter-spacing: -1px; }
.info-desc { font-size: 16px; color: #aaa; line-height: 1.6; word-break: keep-all; max-width: 800px; }

/* 3단 카드 (영업진 안내) */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { background: #161618; border-radius: 20px; padding: 40px 30px; border: 1px solid #2a2a2c; transition: all 0.3s ease; }
.contact-card:hover { border-color: var(--core-orange); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255,136,0,0.1); }
.cc-num { color: var(--core-orange); font-size: 18px; font-weight: 800; margin-bottom: 20px; display: block; }
.cc-tit { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 15px; letter-spacing: -0.5px; }
.cc-desc { font-size: 15px; color: #888; line-height: 1.6; word-break: keep-all; }

/* 2x2 카드 (이런 자리에 어울립니다) */
.occasion-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.occasion-card { background: #161618; border-radius: 20px; padding: 35px 30px; border: 1px solid #2a2a2c; transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: center; }
.occasion-card:hover { border-color: var(--core-orange); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,136,0,0.1); }
.oc-tit { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.5px;}
.oc-desc { font-size: 15px; color: #888; line-height: 1.6; word-break: keep-all; }

/* =========================================
   7. 리얼 방문후기 섹션
========================================= */
.review-sec { max-width: 1200px; margin: 0 auto; padding: 20px 20px 80px 20px; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
    background: #111; border: 1px solid #333; border-radius: 16px; padding: 30px 25px;
    transition: transform 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.3); display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--core-gold); }
.review-stars { color: var(--core-gold); font-size: 20px; margin-bottom: 15px; letter-spacing: 2px; }
.review-txt { font-size: 16px; line-height: 1.6; color: #ddd; margin-bottom: 20px; font-weight: 500; flex-grow: 1; }
.review-user { font-size: 14px; color: #888; text-align: right; font-weight: 700; }

/* =========================================
   8. 자주 묻는 질문(FAQ) 섹션
========================================= */
.faq-sec { max-width: 1200px; margin: 0 auto; padding: 20px 20px 100px 20px; }
.faq-item { background: #111; border: 1px solid #333; border-radius: 12px; margin-bottom: 15px; overflow: hidden; transition: all 0.3s ease; }
.faq-item[open] { border-color: var(--core-gold); box-shadow: 0 0 15px rgba(255, 204, 0, 0.1); }
.faq-item summary {
    list-style: none; padding: 22px 25px; font-size: 17px; font-weight: 800; cursor: pointer; color: #fff;
    position: relative; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 26px; color: var(--core-gold); transition: transform 0.3s ease; font-weight: 300; }
.faq-item[open] summary::after { transform: rotate(45deg); color: #fff; }
.faq-ans {
    padding: 0 25px 25px 25px; font-size: 16px; line-height: 1.6; color: #bbb;
    border-top: 1px dashed #333; margin-top: 5px; padding-top: 20px; font-weight: 500;
}
.faq-ans b { color: var(--core-gold); }

/* =========================================
   9. 특징 & 추천 대상 섹션
========================================= */
.features-sec-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 20px 120px 20px; }
.feat-grid-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card-bottom {
    background: #141416; border: 1px solid #222; border-radius: 16px; padding: 35px 25px;
    transition: transform 0.3s ease, border-color 0.3s;
}
.feat-card-bottom:hover { transform: translateY(-5px); border-color: var(--core-gold); box-shadow: 0 10px 30px rgba(255,204,0,0.15); }
.fc-icon { color: var(--core-gold); font-size: 22px; margin-bottom: 15px; display: block; font-style: normal; text-shadow: 0 0 10px rgba(255,204,0,0.5); }
.fc-icon::before { content: '✦'; }
.fc-tit { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.5px; }
.fc-desc { font-size: 14px; color: #999; line-height: 1.6; word-break: keep-all; }

/* =========================================
   10. 맞춤형 프리미엄 푸터
========================================= */
.custom-footer { 
    background: #050508; border-top: 1px solid #1a1a1c; padding: 60px 20px 120px 20px; 
    color: #777; font-size: 14px; line-height: 1.8; 
}
.footer-inner { 
    max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; 
}
.footer-logo { 
    color: var(--core-gold); font-size: 22px; font-weight: 800; margin: 0 0 15px 0; letter-spacing: -1px; 
}
.footer-info p { margin: 0 0 5px 0; word-break: keep-all; }
.footer-info a { color: #aaa; text-decoration: none; transition: color 0.3s; font-weight: 600; }
.footer-info a:hover { color: var(--core-gold); }
.footer-copy { 
    border-top: 1px solid #1a1a1c; margin-top: 20px; padding-top: 20px; 
    font-size: 13px; color: #444; text-align: left; 
}

/* 모바일/태블릿 공통 반응형 */
@media (max-width: 1024px) { 
    .gallery-grid-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .occasion-grid { grid-template-columns: 1fr; }
    .feat-grid-bottom { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .review-grid { grid-template-columns: 1fr; } 
    .feat-grid-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .gallery-grid-container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .card-desc-txt .shop-name { font-size: 18px; }
    .card-desc-txt .shop-desc { font-size: 16px; }
    /* 모바일 아주 작은 화면에서도 버튼이 안 깨지도록 패딩 타이트하게 조절 */
    .card-call-btn { padding: 8px 10px; font-size: 12px; }
    .faq-item summary { font-size: 15px; padding: 18px; }
    .faq-ans { font-size: 14px; padding: 0 18px 18px 18px; }
}
@media (min-width: 768px) {
    .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
    .footer-copy { border-top: none; margin-top: 0; padding-top: 0; text-align: right; }
}

/* =========================================
   플로팅 버튼 (번호 제거 및 한 줄 강조형)
========================================= */
.floating-reserve-btn {
    position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 480px; z-index: 9999; 
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    padding: 18px 20px; color: #111; 
    background: linear-gradient(45deg, #ffcc00, #ff9900, #ff5500);
    border-radius: 50px; text-decoration: none; border: 2px solid rgba(255, 255, 255, 0.8);
    animation: bottom-glow 1.5s infinite ease-in-out; 
    transition: background 0.3s;
}
.floating-reserve-btn:hover { background: linear-gradient(45deg, #fff, var(--core-gold)); color: #000; }
.floating-reserve-btn .fl-txt { font-size: clamp(14px, 3.8vw, 17px); font-weight: 900; margin-bottom: 0; letter-spacing: -0.5px; }

/* =========================================
   카드 안의 버튼 통통 튀는 반짝임 효과 (통합 적용)
========================================= */
@keyframes top4-btn-bounce-glow {
    0%, 100% { 
        transform: translateY(0); 
        box-shadow: 0 0 5px rgba(255, 204, 0, 0.4); 
        border-color: rgba(255, 204, 0, 0.6); 
    }
    50% { 
        transform: translateY(-5px); 
        box-shadow: 0 0 15px rgba(255, 204, 0, 0.9); 
        border-color: rgba(255, 204, 0, 1); 
    }
}

.gallery-grid-sec:nth-of-type(1) .card-call-btn,
.gallery-grid-sec:nth-of-type(2) .card-call-btn {
    animation: top4-btn-bounce-glow 2s infinite ease-in-out; 
}

.gallery-grid-sec:nth-of-type(1) .card-call-btn:hover,
.gallery-grid-sec:nth-of-type(2) .card-call-btn:hover { 
    background: var(--core-gold); 
    color: #000; 
    transform: scale(1.05); 
    animation: none; 
}

