/* CSS Variables */
:root {
    --bg: #0d1117; /* Deep Midnight Blue/Green */
    --card-bg: #161b22;
    --accent: #00ff88; /* Emerald Green */
    --accent-gold: #d4af37; /* Champagne Gold */
    --accent-glow: rgba(0, 255, 136, 0.3);
    --text: #f0f6fc;
    --text-muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Pretendard', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    word-break: keep-all;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s var(--ease);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Status Bar */
.status-bar {
    background: #000;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    margin-right: 6px;
}

.dot.live {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* Header */
header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s var(--ease);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-emblem {
    display: flex;
    align-items: center;
    transition: 0.3s var(--ease);
}

.logo-emblem:hover {
    transform: scale(1.05);
}

.header-logo-img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid var(--accent-gold);
}

.logo .location {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: 8px;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--accent);
}

.nav-social {
    display: flex;
    gap: 16px;
    font-size: 1.2rem;
    color: var(--accent-gold);
    border-left: 1px solid var(--border);
    padding-left: 20px;
}

.nav-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-reservation {
    background: var(--accent-gold);
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px; /* 로고와 겹치지 않게 여백 추가 */
}

.hero-logo {
    max-width: 280px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

.main-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-rating {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 4px;
}

.rating-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.main-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.main-title .highlight {
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.sub-title {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn {
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 1px solid #fff;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.lunch-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Vibe Section */
.vibe-section {
    padding: 120px 0;
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.vibe-card {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: 0.5s var(--ease);
}

.vibe-card.large {
    grid-row: span 2;
}

.vibe-card:hover {
    transform: scale(1.02);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.card-overlay p {
    color: var(--text-muted);
}

/* Menu Section */
.menu-section {
    padding: 120px 0;
    background: #0f0f0f;
}

/* Full Menu Board */
.menu-showcase {
    margin-bottom: 60px;
}

.menu-board {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: 0.5s var(--ease);
}

.menu-board:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.full-menu-img {
    width: 100%;
    display: block;
}

/* Highlight Cards */
.menu-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: 0.5s var(--ease);
}

.highlight-card:hover {
    transform: scale(1.03);
}

.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.highlight-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.highlight-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.highlight-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Visit Section */
.visit-section {
    padding: 120px 0;
}

.visit-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.visit-info {
    padding: 60px;
}

.info-item {
    margin-bottom: 32px;
}

.label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.visit-map-placeholder {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: rgba(0,0,0,0.7);
    padding: 12px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 100px; /* 푸터에 맞게 크기 조정 */
    width: 100px;
    object-fit: contain;
    border-radius: 50%; /* 원형 인장 느낌 */
    background: #fff; /* 로고 배경색 확보 */
    padding: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    margin: 0 auto;
}

footer p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 1.5rem;
}

.social-icons a {
    color: var(--accent-gold);
    transition: 0.3s var(--ease);
}

.social-icons a:hover {
    color: var(--accent);
    transform: scale(1.2) rotate(8deg);
}

/* Responsive */
@media (max-width: 992px) {
    .main-title { font-size: 3rem; }
    .highlight-card { height: 260px; }
    .menu-highlights { grid-template-columns: repeat(2, 1fr); }
    .visit-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .vibe-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .vibe-card.large { grid-row: auto; height: 300px; }
    .vibe-card { height: 250px; }
    nav { display: none; }
    .main-title { font-size: 2.2rem; }
    .hero-logo { max-width: 180px; }
    .menu-highlights { grid-template-columns: 1fr; }
    .highlight-card { height: 220px; }
    .visit-info { padding: 30px; }
    .logo-img { height: 36px; }
}
