:root {
    --bg-black: #050505;
    --card-bg: rgba(20, 20, 20, 0.8);
    --neon-pink: #ff007f;
    --neon-cyan: #00f3ff;
    --neon-yellow: #f0ff00;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --font-main: 'Noto Sans KR', sans-serif;
    --font-heading: 'Syncopate', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 130px;
    /* Offset for marquee + navbar */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px;
    /* Space for marquee + updated navbar */
}

/* Custom Selection */
::selection {
    background: var(--neon-pink);
    color: white;
}

/* Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Top Marquee */
.top-marquee {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--neon-yellow);
    color: black;
    z-index: 1100;
    /* Higher than navbar to stay on top of background but not navbar content if needed */
    overflow: hidden;
    white-space: nowrap;
    height: 35px;
    /* Increased height slightly for safety */
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    margin-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Typography Utility */
.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    animation: neon-text-flicker 5s linear infinite;
}

.neon-text-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
    animation: neon-text-flicker-pink 5s linear infinite;
}

.neon-text-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    animation: neon-text-flicker 5s linear infinite;
}

/* Neon Text Flicker Animations */
@keyframes neon-text-flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        text-shadow:
            0 0 5px var(--neon-cyan),
            0 0 10px var(--neon-cyan),
            0 0 15px var(--neon-cyan);
        opacity: 1;
    }

    20%,
    24%,
    55% {
        text-shadow:
            0 0 2px var(--neon-cyan),
            0 0 5px var(--neon-cyan);
        opacity: 0.85;
    }
}

@keyframes neon-text-flicker-pink {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        text-shadow:
            0 0 5px var(--neon-pink),
            0 0 10px var(--neon-pink),
            0 0 15px var(--neon-pink);
        opacity: 1;
    }

    20%,
    24%,
    55% {
        text-shadow:
            0 0 2px var(--neon-pink),
            0 0 5px var(--neon-pink);
        opacity: 0.85;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 35px;
    /* Stay below the marquee */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--neon-yellow);
    transition: background 0.3s;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-pink);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Hero Section */
.hero {
    height: calc(100vh - 110px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    text-align: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 10s ease-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    background: var(--neon-pink);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 900;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    box-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    animation: badge-flicker 3s infinite;
}

@keyframes badge-flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        box-shadow:
            0 0 10px var(--neon-pink),
            0 0 20px var(--neon-pink),
            0 0 30px var(--neon-pink);
        opacity: 1;
    }

    20%,
    24%,
    55% {
        box-shadow:
            0 0 5px var(--neon-pink),
            0 0 10px var(--neon-pink);
        opacity: 0.9;
    }
}

.korean-text {
    font-size: 2.5rem;
    color: var(--neon-yellow);
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.phi-slogan {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero .main-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -5px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* Buttons */
.neon-btn {
    padding: 1.2rem 3rem;
    background: var(--neon-pink);
    color: white;
    text-decoration: none;
    font-weight: 900;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--neon-pink);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-right: 1rem;
    display: inline-block;
}

.neon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px var(--neon-pink);
}

.outline-btn {
    padding: 1.2rem 3rem;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: 900;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.outline-btn:hover {
    background: white;
    color: black;
}

.neon-btn-small {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    border-radius: 50px;
    box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    transition: all 0.3s;
    animation: btn-flicker 6s linear infinite;
}

@keyframes btn-flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        box-shadow:
            0 0 5px var(--neon-cyan),
            0 0 10px var(--neon-cyan),
            0 0 15px var(--neon-cyan);
        border-color: var(--neon-cyan);
        opacity: 1;
    }

    20%,
    24%,
    55% {
        box-shadow:
            0 0 3px var(--neon-cyan),
            0 0 6px var(--neon-cyan);
        opacity: 0.9;
    }
}

.neon-btn-small:hover {
    background: var(--neon-cyan);
    color: black;
    animation: none;
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg-black);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.swipe-hint {
    display: none;
    /* Hidden on desktop */
}

.feature-card {
    padding: 4rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card.highlighted {
    background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--neon-yellow);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow:
        0 0 5px var(--neon-yellow),
        0 0 10px var(--neon-yellow),
        0 0 15px var(--neon-yellow);
    animation: neon-flicker 4s linear infinite;
}

/* Realistic Neon Flicker Effect */
@keyframes neon-flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow:
            0 0 5px var(--neon-yellow),
            0 0 10px var(--neon-yellow),
            0 0 15px var(--neon-yellow),
            0 0 20px var(--neon-yellow);
        opacity: 1;
    }

    20%,
    24%,
    55% {
        text-shadow:
            0 0 2px var(--neon-yellow),
            0 0 5px var(--neon-yellow);
        opacity: 0.8;
    }

    22% {
        text-shadow:
            0 0 1px var(--neon-yellow);
        opacity: 0.6;
    }
}

.feature-icon svg {
    filter: drop-shadow(0 0 5px var(--neon-yellow)) drop-shadow(0 0 10px var(--neon-yellow));
    animation: neon-svg-flicker 4s linear infinite;
}

@keyframes neon-svg-flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        filter:
            drop-shadow(0 0 5px var(--neon-yellow)) drop-shadow(0 0 10px var(--neon-yellow)) drop-shadow(0 0 15px var(--neon-yellow));
        opacity: 1;
    }

    20%,
    24%,
    55% {
        filter:
            drop-shadow(0 0 2px var(--neon-yellow)) drop-shadow(0 0 5px var(--neon-yellow));
        opacity: 0.85;
    }

    22% {
        filter: drop-shadow(0 0 1px var(--neon-yellow));
        opacity: 0.7;
    }
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* Menu Section */
.menu {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.sub-title {
    color: var(--neon-cyan);
    font-size: 1rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.menu .main-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
}

.menu-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item:hover .menu-img img {
    transform: scale(1.1);
}

.item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-yellow);
    color: black;
    padding: 0.3rem 1rem;
    font-weight: 900;
    font-size: 0.8rem;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--neon-yellow);
}

.menu-info {
    padding: 2rem;
}

.menu-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--neon-yellow);
}

.menu-info p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 3em;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-white);
}

/* Lunch Banner */
.lunch-banner {
    margin: 3rem auto 0;
    max-width: 600px;
    background: rgba(240, 255, 0, 0.05);
    border: 1px dashed var(--neon-yellow);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.lunch-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 255, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.lunch-banner .badge {
    background: var(--neon-yellow);
    color: black;
    padding: 0.4rem 1.2rem;
    font-weight: 900;
    font-size: 0.8rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.lunch-time {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.lunch-offer {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.8;
}

.lunch-offer strong {
    color: var(--neon-yellow);
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(240, 255, 0, 0.3);
}

.lunch-offer span {
    font-size: 0.9rem;
    color: var(--text-grey);
    display: block;
    margin-top: 0.5rem;
}

.menu-footer {
    text-align: center;
    margin-top: 5rem;
}

.view-all {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--neon-cyan);
}

/* Buffet Section */
.buffet {
    padding: 8rem 5%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.buffet-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 5rem 3rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.buffet-tag {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
}

.buffet-card h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.buffet-prices {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.price-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.price-box.highlighting {
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid var(--neon-pink);
}

.price-box .type {
    display: block;
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 1rem;
}

.price-box .amt {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
}

.buffet-note {
    font-size: 1rem;
    color: var(--text-grey);
    margin-bottom: 3rem;
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: #0a0a0a;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin: 1.5rem 0;
}

.about-text p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-visual {
    flex: 1;
    position: relative;
    padding: 2rem;
}

.store-img {
    width: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.neon-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--neon-pink);
    z-index: 1;
    box-shadow: 0 0 20px var(--neon-pink);
}

/* Company Section */
.company {
    padding: 8rem 5%;
    background: var(--bg-black);
}

.company-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.company-info-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.table-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.table-row .th {
    flex: 0 0 150px;
    font-weight: 900;
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.table-row .td {
    flex: 1;
    color: var(--text-white);
    font-weight: 400;
}

.company-philosophy {
    height: 100%;
}

.phi-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border-left: 4px solid var(--neon-pink);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.phi-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.phi-slogan {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--neon-yellow);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.phi-card p {
    color: var(--text-grey);
    margin-bottom: 1rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .company-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact */
.contact {
    padding: 8rem 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item .label {
    display: block;
    color: var(--text-grey);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.info-item p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item p.highlight-24h {
    color: var(--neon-pink);
    font-weight: 900;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.facility-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.facility-icons span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map {
    height: 100%;
}

.map-card {
    height: 100%;
    min-height: 400px;
    background: var(--card-bg);
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
}

.map-card .map-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-pink));
}

.map-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.map-card p {
    color: var(--text-grey);
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .map-card {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}

.map-icon {
    font-size: 3rem;
    color: var(--neon-pink);
}

/* Footer */
footer {
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-black);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--neon-yellow);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.footer-social a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--neon-pink);
}

.footer-bottom {
    font-size: 0.7rem;
    color: var(--text-grey);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-grey);
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-grey);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: var(--neon-pink);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero .main-title {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .features {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding-top: 2rem;
        /* Make space for hint */
    }

    .swipe-hint {
        display: block;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--neon-cyan);
        font-size: 0.7rem;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        animation: hint-fade 2s infinite;
        white-space: nowrap;
        pointer-events: none;
    }

    @keyframes hint-fade {

        0%,
        100% {
            opacity: 0.3;
        }

        50% {
            opacity: 1;
        }
    }

    .feature-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
    }

    .about-container {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
    }

    .nav-logo {
        font-size: 1rem;
        writing-mode: horizontal-tb;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .lang-switch {
        margin-right: 0.5rem;
        gap: 2px;
        padding: 2px;
    }

    .lang-switch .lang-btn {
        padding: 4px 6px;
        font-size: 0.65rem;
        gap: 3px;
    }

    .neon-btn-small {
        padding: 0.4rem 0.7rem;
        font-size: 0.65rem;
    }

    .mobile-menu-btn {
        margin-left: 1rem;
    }

    .hero {
        padding-top: 5rem;
    }

    .hero .main-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .hero-tagline {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    /* Stack buttons vertically on mobile */
    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        /* Add space for scroll indicator */
    }

    .neon-btn,
    .outline-btn {
        margin-right: 0;
        width: 80%;
        max-width: 300px;
        padding: 1rem 2rem;
    }

    /* Buffet Section Mobile Tweaks */
    .buffet {
        padding: 4rem 5%;
    }

    .buffet-card {
        padding: 3rem 1.5rem;
    }

    .buffet-card h2 {
        font-size: 2rem;
    }

    .buffet-prices {
        flex-direction: column;
        gap: 1.5rem;
    }

    .price-box {
        padding: 1.5rem;
    }

    .price-box .amt {
        font-size: 2rem;
    }

    .buffet-note {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .menu .main-title {
        font-size: 2.2rem;
    }

    /* Adjust scroll indicator for mobile visibility */
    .scroll-indicator {
        bottom: 5px;
        /* Even lower to avoid buttons */
        gap: 2px;
    }

    .mouse {
        width: 16px;
        height: 24px;
        border-width: 1px;
    }

    .mouse::before {
        height: 6px;
    }

    .scroll-indicator span {
        font-size: 0.5rem;
        opacity: 0.6;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: 1.5rem;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--neon-yellow);
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 2rem 0;
}

.mobile-menu ul a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    transition: color 0.3s;
}

.mobile-menu ul a:hover {
    color: var(--neon-pink);
}

.mobile-menu-footer {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    /* Hide Delivery/Call buttons in navbar on mobile to make space for Lang Switcher */
    .nav-cta .neon-btn-small {
        display: none;
    }

    /* Keep language switch visible but compact */
    .navbar .lang-switch {
        margin-right: 0.5rem;
        gap: 0;
    }

    .lang-switch .lang-btn {
        padding: 6px 6px;
        font-size: 0.75rem;
    }

    .lang-switch .separator {
        opacity: 0.5;
        font-size: 0.8rem;
    }

    /* Make space distribution better in nav on mobile */
    .nav-cta {
        gap: 0.3rem;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* --- Added Features --- */

/* Lang Switch */
.lang-switch {
    display: flex;
    gap: 0.3rem;
    margin-right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.lang-switch .lang-btn {
    background: transparent;
    border: none;
    color: var(--text-grey);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-main);
}

.lang-switch .lang-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.lang-switch .lang-btn.active {
    background: var(--neon-pink);
    color: white;
    box-shadow: 0 0 10px var(--neon-pink);
}

/* News Section */
.news {
    padding: 3rem 5%;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    /* Force 2 columns for menu tabs next to each other */
    .menu-tabs {
        padding: 0 2rem;
        gap: 0.8rem;
    }

    .tab-btn {
        flex: 1 1 calc(50% - 1rem);
        width: calc(50% - 1rem);
        text-align: center;
        padding: 0.6rem 0;
    }
}

.news-list {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.news-item {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-date {
    font-size: 0.7rem;
    color: var(--text-grey);
}

.news-tag {
    font-size: 0.6rem;
    background: var(--neon-cyan);
    color: black;
    padding: 2px 8px;
    display: inline-block;
    width: fit-content;
    font-weight: 900;
}

.news-title {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tab-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-grey);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--neon-pink);
    color: var(--text-white);
    background: rgba(255, 0, 127, 0.1);
}

/* Gallery Strip */
.gallery {
    padding: 4rem 0;
    overflow: hidden;
    background: black;
}

.gallery-marquee {
    display: flex;
}

.gallery-strip {
    display: flex;
    gap: 20px;
    animation: gallery-scroll 40s linear infinite;
}

.gallery-strip img {
    height: 300px;
    width: 450px;
    object-fit: cover;
    filter: grayscale(0.5) brightness(0.7);
    transition: all 0.5s;
    border-radius: 5px;
}

.gallery-strip img:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

@keyframes gallery-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* FAB */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    text-decoration: none;
}

.fab-btn.call {
    background: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink);
}

.fab-btn.delivery {
    background: #06C167;
    /* Uber Eats Green */
    box-shadow: 0 0 15px rgba(6, 193, 103, 0.5);
}

.fab-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .fab-btn {
        width: 50px;
        height: 50px;
    }

    .news-item {
        flex: 0 0 280px;
    }
}

/* Philosophy Steps */
.phi-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.phi-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.phi-step:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.phi-icon {
    font-size: 1.5rem;
}

.phi-step p {
    margin: 0 !important;
    font-size: 0.9rem;
}

/* Social Buttons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem !important;
}

.social-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.7rem !important;
    font-weight: 900;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.social-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan) !important;
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

/* Extra small screens */
@media (max-width: 375px) {
    .navbar {
        padding: 0.8rem 2%;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .lang-switch {
        margin-right: 0.2rem;
        padding: 2px;
    }

    .lang-switch .lang-btn {
        padding: 3px 5px;
        font-size: 0.6rem;
        gap: 2px;
    }

    .neon-btn-small {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }

    .mobile-menu-btn {
        width: 25px;
        height: 18px;
        margin-left: 0.3rem;
    }

    .top-marquee {
        font-size: 0.7rem;
    }

    .hero .main-title {
        font-size: 2.5rem;
    }

    .korean-text {
        font-size: 2rem;
    }
}

/* Full Menu List */
.full-menu-list {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.list-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 5px;
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--neon-pink);
    display: inline-block;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--text-white);
    font-size: 1rem;
}

.menu-category li .dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.menu-category li .price {
    font-family: var(--font-heading);
    color: var(--neon-yellow);
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .menu-category-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .list-title {
        font-size: 1.8rem;
    }
}