/* ==========================================================================
   cloud 레스토랑 Fine Dining - Premium Style Sheet
   ========================================================================== */

/* 1. 디자인 토큰 및 변수 설정 */
:root {
    --bg-dark: #070708;
    --bg-darker: #020202;
    --bg-glass: rgba(13, 13, 14, 0.65);
    --bg-glass-active: rgba(22, 22, 24, 0.85);
    
    --gold-primary: #D4AF37;   /* 샴페인 골드 */
    --gold-light: #F3E5AB;     /* 소프트 골드 */
    --gold-dark: #AA820A;      /* 엔틱 골드 */
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA820A 100%);
    
    --emerald-deep: #0D2A1C;   /* 에메랄드 그린 (벨벳 감성) */
    --emerald-glass: rgba(13, 42, 28, 0.35);
    
    --text-white: #F5F5F7;
    --text-gold: #E5C158;
    --text-gray: #A1A1A6;
    --text-muted: #6E6E73;
    
    --glass-border: rgba(212, 175, 55, 0.12);
    --glass-border-hover: rgba(212, 175, 55, 0.3);
    --glass-blur: blur(12px);
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', 'Noto Sans KR', sans-serif;
}

/* 2. 초기 리셋 및 기본 스타일링 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* 커스텀 커서 적용을 위해 기본 커서 숨김 (모바일 기기 제외) */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* 고급 스크롤바 디자인 */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* 3. 타이포그래피 */
h1, h2, h3, h4, .logo-main, .section-tag {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.05em;
}

p {
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-gray);
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* 4. 커스텀 마우스 포인터 */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999; /* 라이트박스 모달(10000)보다 훨씬 높은 최상위 레이어 */
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999998; /* 라이트박스 모달보다 높은 최상위 레이어 */
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
}

/* 마우스 호버 시 포인터 확대 효과 */
.custom-cursor.hover {
    width: 14px;
    height: 14px;
    background-color: var(--text-white);
}
.custom-cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.05);
}

/* 모바일/태블릿 터치 디바이스에서는 커스텀 포인터 제거 */
@media (max-width: 1024px) {
    * { cursor: auto; }
    .custom-cursor, .custom-cursor-follower { display: none; }
}

/* 5. 공통 UI 요소 (버튼, 컨테이너, 디바이더) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-white);
}

.section-desc {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.section-desc-sub {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 24px 0;
}

.gold-divider-center {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 24px auto;
}

/* 버튼 디자인 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
}

.btn-gold {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-gold:hover {
    background: var(--gold-primary);
    color: var(--bg-darker);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-white {
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

.btn-white:hover {
    background: var(--text-white);
    color: var(--bg-darker);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-filled {
    border: none;
}

.btn-gold-fill {
    background: var(--gold-gradient);
    color: var(--bg-darker);
}

.btn-gold-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 6. 네비게이션 헤더 (Navbar) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* 로고 스타일 */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--text-white);
    letter-spacing: 0.15em;
    font-weight: 300;
}

.logo-sub {
    font-size: 0.6rem;
    font-family: var(--font-sans);
    color: var(--gold-primary);
    letter-spacing: 0.4em;
    margin-top: 4px;
    margin-left: 2px;
}

/* 메뉴 리스트 */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-gray);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

/* 호버 시 밑선 애니메이션 */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.highlight-link {
    color: var(--gold-primary);
}

/* 모바일 메뉴 토글 */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    z-index: 1002;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* 모바일 오버레이 메뉴 */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-overlay.active {
    opacity: 0.98;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: var(--text-gray);
}

.mobile-nav-link:hover {
    color: var(--gold-primary);
}

.btn-mobile-book {
    margin-top: 16px;
}

/* 7. 히어로 섹션 (Hero Section) */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 12s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 7, 8, 0.4) 0%, rgba(7, 7, 8, 0.85) 80%, rgba(7, 7, 8, 1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    margin-top: 40px;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 6rem;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.hero-description {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-white);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* 스크롤 아래 유도 안내 */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-text {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 20px;
    height: 35px;
    border: 1px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 1.5px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.8s infinite ease-in-out;
}

@keyframes scroll-wheel-anim {
    0% { top: 6px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* 8. 철학 섹션 (Philosophy) */
.philosophy-section {
    padding: 120px 0;
    position: relative;
    background-color: var(--bg-dark);
}

.section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.philosophy-signature {
    margin-top: 40px;
    border-left: 2px solid var(--gold-primary);
    padding-left: 20px;
}

.signature-title {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold-primary);
}

/* 데코 액자형 이미지 */
.image-container-decor {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
}

.philosophy-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.decor-border {
    position: absolute;
    top: 25px;
    right: -25px;
    bottom: -25px;
    left: 25px;
    border: 1.5px solid var(--gold-primary);
    z-index: -1;
    transition: var(--transition-smooth);
}

.image-container-decor:hover .decor-border {
    top: 15px;
    right: -15px;
    bottom: -15px;
    left: 15px;
}

.decor-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--bg-darker);
    border: 1.5px solid var(--gold-primary);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.badge-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--gold-primary);
}

.badge-text {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-white);
    margin-top: 6px;
    text-align: center;
}

/* 9. 시그니처 메뉴 섹션 (Menu) */
.menu-section {
    padding: 120px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
}

/* 메뉴 탭 버튼 그룹 */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.menu-tab-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-gray);
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: var(--transition-fast);
}

.menu-tab-btn:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.menu-tab-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* 메뉴 리스트 카드 */
.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.menu-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.menu-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.menu-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.08);
}

.menu-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(7, 7, 8, 0.85);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 6px 12px;
}

.menu-card-body {
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.menu-card-title {
    font-size: 1.6rem;
    color: var(--text-white);
    line-height: 1.4;
}

.menu-card-price {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gold-primary);
    white-space: nowrap;
}

.menu-card-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.menu-card-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
}

.info-item {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.info-item i {
    color: var(--gold-primary);
    margin-right: 6px;
}

/* 10. 셰프 섹션 (Chef Story) */
.chef-section {
    padding: 160px 0;
    position: relative;
    background: url('images/chef_plating.png') no-repeat center center/cover;
    background-attachment: fixed; /* 패럴랙스 스타일 */
}

.chef-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 7, 8, 0.95) 40%, rgba(7, 7, 8, 0.7) 100%);
    z-index: 1;
}

.chef-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.chef-title {
    font-size: 2.5rem;
    line-height: 1.4;
    color: var(--text-white);
    margin-bottom: 12px;
}

.chef-quote-author {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.chef-bio {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-white);
    margin-bottom: 20px;
}

.chef-bio-sub {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 36px;
}

.chef-awards {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.award-item i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.award-item span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-white);
}

/* 11. 공간 갤러리 섹션 (Gallery) */
.gallery-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

/* 모자이크 배치를 위한 첫 번째 대형 그리드 설정 */
.gallery-item.large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 8, 0.8);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    transition: var(--transition-fast);
    border: 1.5px solid transparent;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    border-color: var(--gold-primary);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-text h3 {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-text p {
    font-size: 0.8rem;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 10px 20px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-text h3,
.gallery-item:hover .gallery-text p,
.gallery-item:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: var(--text-white);
    color: var(--bg-darker);
}

/* 갤러리 라이트박스 모달 */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.95);
    overflow: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 70%;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    animation: zoom-in-lightbox 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoom-in-lightbox {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 300;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.lightbox-caption {
    margin-top: 24px;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.lightbox-caption h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.lightbox-caption p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* 12. 예약 섹션 (Reservation) */
.reservation-section {
    padding: 120px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.info-desc {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-detail-item {
    display: flex;
    gap: 20px;
}

.info-detail-item i {
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-top: 3px;
}

.info-detail-item h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.info-detail-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 예약 폼 글래스모피즘 카드 */
.reservation-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 48px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.reservation-card:hover {
    border-color: var(--glass-border-hover);
}

.form-title {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

label i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    transition: var(--transition-fast);
    border-radius: 0;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

/* 플레이스홀더 컬러 */
::placeholder {
    color: var(--text-muted);
}

/* 브라우저 기본 캘린더 아이콘 스타일 수정 */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(10deg);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 40px;
}

select option {
    background-color: var(--bg-darker);
    color: var(--text-white);
}

textarea {
    resize: none;
}

/* 동의 체크박스 */
.form-agreement {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.form-agreement input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--gold-primary);
}

.form-agreement label {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 0;
    display: inline;
}

/* 에러 메시지 스타일 */
.error-msg {
    display: none;
    color: #ff4d4d;
    font-size: 0.75rem;
    margin-top: 6px;
    font-weight: 400;
}

.error-msg.block-error {
    position: absolute;
    bottom: -18px;
    left: 0;
}

.form-group.invalid input,
.form-group.invalid select,
.form-agreement.invalid input {
    border-color: #ff4d4d;
    background-color: rgba(255, 77, 77, 0.02);
}

.form-group.invalid .error-msg,
.form-agreement.invalid .error-msg {
    display: block;
}

/* 예약 성공 블록 */
.reservation-success-container {
    text-align: center;
    animation: fade-in-success 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fade-in-success {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    font-size: 2.2rem;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.success-title {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.success-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 36px;
}

.success-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    margin-bottom: 36px;
    text-align: left;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-row:first-child {
    padding-top: 0;
}

.summary-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.summary-val {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
}

/* 13. 푸터 (Footer) */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-gray);
}

.footer-socials a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background-color: rgba(212,175,55,0.02);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.06);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-info-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-col p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 24px;
}

/* 14. 스크롤 감지 애니메이션 효과 (JS 연동) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 15. 미디어 쿼리 (반응형 대응) */
@media (max-width: 1024px) {
    .section-title { font-size: 2.4rem; }
    .hero-title { font-size: 4.5rem; }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .image-container-decor {
        margin: 0 auto;
    }
    
    .menu-card {
        grid-template-columns: 280px 1fr;
    }
    
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .navbar-container { padding: 0 20px; }
    .nav-menu, .nav-cta { display: none; }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* 햄버거 메뉴 애니메이션 */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title { font-size: 3.2rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .btn { width: 100%; }

    .menu-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .menu-tab-btn {
        flex: 1 1 45%;
        padding: 10px 16px;
    }

    .menu-card {
        grid-template-columns: 1fr;
    }
    
    .menu-card-img-wrapper {
        height: 220px;
    }

    .chef-section {
        padding: 100px 0;
        background-attachment: scroll; /* 모바일 성능 향상을 위해 패럴랙스 해제 */
    }
    
    .chef-title {
        font-size: 1.8rem;
    }
    
    .chef-awards {
        flex-direction: column;
        gap: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    
    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
    }

    .reservation-card {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .footer-info-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
