/*
Theme Name: KPop Eats
Theme URI: http://vibrilliant-7.taila30fed.ts.net:49153/
Description: Custom theme for KPop Eats - Korean food directory
Version: 1.1.0
Author: Vibrilliant
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kpop-eats
*/

/* ===== CSS VARIABLES ===== */
:root {
  --hot-pink: #FF1493;
  --electric-blue: #00BFFF;
  --sunny-yellow: #FFD700;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #ECF0F1;
  --medium-gray: #7F8C8D;
  --dark-charcoal: #2C3E50;
  --deep-black: #0a0a12;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--deep-black);
    color: var(--white);
    line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(40px, 8vw, 72px); font-weight: 800; }
h2 { font-size: 42px; font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 16px; font-weight: 600; }
h6 { font-size: 14px; font-weight: 600; }

p { margin-bottom: 1rem; }

a { color: inherit; text-decoration: none; transition: all 0.3s; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
        height: auto;
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    background: linear-gradient(135deg, var(--hot-pink), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    color: var(--hot-pink);
}

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

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hot-pink);
    transition: width 0.3s;
}

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

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--hot-pink), #ff006e);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

/* WordPress Navigation Menu */
#menu-main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    align-items: center;
}

#menu-main-menu li {
    margin: 0;
    padding: 0;
    position: relative;
}

#menu-main-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
    display: block;
    padding: 10px;
}

#menu-main-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 10px;
    width: 0;
    height: 2px;
    background: var(--hot-pink);
    transition: width 0.3s;
}

#menu-main-menu a:hover {
    color: var(--hot-pink);
}

#menu-main-menu a:hover::after {
    width: calc(100% - 20px);
}

/* Dropdown Menu */
#menu-main-menu .menu-item-has-children > a {
    position: relative;
}

#menu-main-menu .menu-item-has-children > a::before {
    content: '▼';
    font-size: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    color: var(--white);
    transition: transform 0.3s;
}

#menu-main-menu .menu-item-has-children:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}

#menu-main-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(20px);
        height: calc(100vh - 72px);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    list-style: none;
}

/* Create invisible bridge between parent and submenu */
#menu-main-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

#menu-main-menu .menu-item-has-children:hover .sub-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#menu-main-menu .sub-menu li {
    display: block;
    padding: 0;
    margin: 0;
}

#menu-main-menu .sub-menu a {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
}

#menu-main-menu .sub-menu a:hover {
    color: var(--hot-pink);
    background: rgba(255, 20, 147, 0.1);
}

#menu-main-menu .sub-menu a::after {
    display: none;
}

#menu-main-menu .sub-menu a::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--hot-pink);
    transition: height 0.3s;
    border-radius: 2px;
}

#menu-main-menu .sub-menu a:hover::before {
    height: 20px;
}

/* ===== SEARCH FORM ===== */
.search-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid var(--hot-pink);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.2);
    transition: all 0.3s;
}

.search-input-wrapper:hover {
    box-shadow: 0 12px 40px rgba(255, 20, 147, 0.3);
    border-color: var(--hot-pink);
}

.search-input-wrapper:focus-within {
    box-shadow: 0 16px 48px rgba(255, 20, 147, 0.4);
    border-color: var(--hot-pink);
}

.search-field {
    flex: 1;
    width: 100%;
    padding: 16px 24px;
    padding-right: 60px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: transparent;
    border: none;
    outline: none;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--hot-pink), #ff006e);
    border: none;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Categories */
.search-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.search-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.search-category:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: var(--hot-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 191, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 20, 147, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 20, 147, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--hot-pink);
    margin-bottom: 24px;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 20, 147, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.6); }
}

.hero h1 {
    background: linear-gradient(135deg, var(--white) 0%, var(--hot-pink) 50%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SEARCH FORM ===== */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-form:focus-within {
    border-color: var(--hot-pink);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

.search-field {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    color: var(--white);
    outline: none;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    background: linear-gradient(135deg, var(--hot-pink), #ff006e);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}


.search-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.search-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
}

.search-category:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: var(--hot-pink);
    color: var(--white);
}

/* ===== SECTIONS ===== */
.featured,
.categories {
    padding: 100px 24px;
}

.featured {
    background: linear-gradient(180deg, var(--deep-black) 0%, #1a1a2e 100%);
}

.categories {
    background: var(--deep-black);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    background: linear-gradient(135deg, var(--white), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

/* ===== GRID ===== */
.featured-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.categories-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

/* ===== CARDS ===== */
.featured-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 191, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.2);
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-image {
    height: 200px;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-placeholder {
    font-size: 80px;
    opacity: 0.3;
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--hot-pink);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.featured-content {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.featured-content h3 {
    margin-bottom: 8px;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 16px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--sunny-yellow);
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--hot-pink);
    background: rgba(255, 20, 147, 0.1);
    transform: scale(1.05);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--hot-pink), #ff006e);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--electric-blue), #0099cc);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a12;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    padding: 60px 24px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--hot-pink);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== MAIN CONTENT ===== */
main {
    min-height: 60vh;
    padding: 120px 24px 60px;
    padding-left: 0;
    padding-right: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 2.5rem; }

/* ===== ARCHIVE PAGE STYLES ===== */
.archive-hero {
    padding: 120px 24px 60px;
    padding-left: 0;
    padding-right: 0;
    background: var(--deep-black);
    position: relative;
}

.archive-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.archive-filters {
    margin-top: 40px;
}

.filter-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 20, 147, 0.2);
    border-color: var(--hot-pink);
    color: var(--white);
}

.restaurant-archive {
    padding: 60px 24px;
    background: linear-gradient(180deg, var(--deep-black) 0%, #1a1a2e 100%);
}

.restaurant-archive .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.results-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.restaurant-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.restaurant-card.featured {
    border: 2px solid var(--hot-pink);
}

.card-link {
    display: block;
    text-decoration: none;
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-placeholder {
    font-size: 60px;
    opacity: 0.3;
}

/* Background image overlay for emoji */
.card-placeholder-overlay {
    font-size: 60px;
    opacity: 0.8;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Dark overlay for background images to make emoji pop */
.card-image[style*="background-image"] .card-placeholder-overlay {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--hot-pink);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.card-meta .rating {
    color: var(--sunny-yellow);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-meta .location {
    color: rgba(255, 255, 255, 0.5);
}

.card-category {
    margin-top: 12px;
}

.no-results {
    text-align: center;
    padding: 60px 24px;
    color: rgba(255, 255, 255, 0.7);
}

.pagination {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.pagination li {
    display: inline-block;
    margin: 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 16px;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination .current {
    background: rgba(255, 20, 147, 0.2);
    border-color: var(--hot-pink);
}

.pagination .dots {
    background: transparent;
    border: none;
}

/* ===== SINGLE BUSINESS PAGE STYLES ===== */
.business-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(to top, var(--deep-black) 0%, transparent 100%);
    padding: 60px 0;
    width: 100%;
}

.business-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.category-badge {
    background: rgba(255, 20, 147, 0.2);
    border: 1px solid var(--hot-pink);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hot-pink);
    text-decoration: none;
    transition: all 0.3s;
}

.category-badge:hover {
    background: var(--hot-pink);
    color: var(--white);
}

.business-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rating-stars {
    color: var(--sunny-yellow);
    font-size: 20px;
}

.rating-value {
    font-size: 24px;
    font-weight: 700;
}

.reviews-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.business-address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.address-icon {
    font-size: 20px;
}

.business-content {
    padding: 60px 24px;
    background: linear-gradient(180deg, var(--deep-black) 0%, #1a1a2e 100%);
}

.business-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.business-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 20, 147, 0.2);
}

.business-description {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.specialties-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.specialties-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--hot-pink);
}

.business-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-link {
    display: block;
}

/* ===== SIDEBAR ===== */
.business-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--hot-pink);
}

.hours-content {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-badge {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.price-range {
    font-size: 24px;
    font-weight: 700;
    color: var(--sunny-yellow);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 100%);
    padding: 100px 24px;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 24px;
    background: var(--deep-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    background: linear-gradient(135deg, var(--hot-pink), var(--electric-blue));
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.values-section {
    max-width: 1200px;
    margin: 0 auto 100px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 20, 147, 0.1);
    border-color: var(--hot-pink);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.cta-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: rgba(255, 20, 147, 0.1);
    border: 2px solid var(--hot-pink);
    border-radius: 20px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 100%);
    padding: 100px 24px;
    text-align: center;
}

.contact-content {
    padding: 80px 24px;
    background: var(--deep-black);
}

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.contact-info-card h2 {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    font-size: 24px;
    width: 32px;
    text-align: center;
}

.contact-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.contact-form-card h2 {
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--hot-pink);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-inner {
        padding: 12px 16px;
    }


    .hero {
        padding: 100px 16px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .search-form {
        flex-direction: column;
        border-radius: 24px;
    }

    .search-submit {
        width: 100%;
        margin-top: 8px;
    }

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

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    main {
        padding: 100px 16px 40px;
    }

    .archive-hero {
        padding: 80px 16px 40px;
    }

    .archive-hero .section-header,
    .archive-hero .hero-content {
        text-align: center;
    }

    .archive-filters {
        margin-top: 32px;
    }

    .filter-categories {
        flex-wrap: wrap;
    }

    .restaurant-grid,
    .search-results .restaurant-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .business-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .business-sidebar {
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse {
        direction: ltr;
    }

    .about-grid.reverse > * {
        direction: ltr;
    }

    .about-image {
        height: 300px;
        font-size: 6rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-badge {
        font-size: 13px;
    }

    .search-categories {
        font-size: 13px;
    }

    .search-category {
        padding: 6px 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .pagination {
        font-size: 14px;
    }

    .pagination a,
    .pagination span {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

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

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

    .contact-item {
        gap: 12px;
    }

    .business-sidebar {
        order: 1;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--deep-black) 0%, #0d0d15 100%);
    padding: 80px 24px 40px;
    border-top: 1px solid rgba(255, 20, 147, 0.1);
}

/* ===== GOOGLE MAPS ===== */
.kpop-eats-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.map-info-window {
    padding: 8px;
}

.map-info-window h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-charcoal);
}

.map-info-window p {
    font-size: 14px;
    margin: 0;
    color: var(--medium-gray);
}

.map-info-window a {
    color: var(--hot-pink);
    text-decoration: none;
}

.map-info-window a:hover {
    text-decoration: underline;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hot-pink);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.map-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

/* Map Container */
.map-container {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container h2 {
    padding: 20px 24px;
    font-size: 20px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-actions {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .kpop-eats-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 16px 30px;
    }

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

    .map-actions {
        flex-direction: column;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--hot-pink);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--hot-pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.heart {
    color: var(--hot-pink);
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 16px 30px;
    }

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

/* ===== SEARCH RESULTS PAGE ===== */
.search-results {
    padding: 0;
    background: linear-gradient(180deg, var(--deep-black) 0%, #1a1a2e 100%);
}

.search-result {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.result-link {
    display: block;
    text-decoration: none;
}

.result-link h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 18px;
}

.result-link p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.result-link:hover {
    background: rgba(255, 20, 147, 0.1);
    border-color: var(--hot-pink);
}

/* ===== UTILITY CLASSES ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');.footer-menu .sub-menu {
    display: none;
}
/* ===== DISH ARCHIVE ===== */
.dish-archive-hero {
    background: linear-gradient(135deg, var(--deep-black) 0%, #1a1a2e 100%);
    padding: 80px 24px 60px;
    text-align: center;
}

.dish-archive-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--hot-pink);
}

.dish-archive-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
}

.dish-archive-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 32px;
}

.archive-filters {
    max-width: 900px;
    margin: 0 auto;
}

.filter-categories {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px 24px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--hot-pink);
    border-color: var(--hot-pink);
    color: var(--white);
}

.filter-by {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.filter-group {
    margin-bottom: 16px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: var(--white);
}

.dish-archive {
    padding: 60px 24px;
    background: var(--deep-black);
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.dish-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.dish-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 20, 147, 0.3);
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-content {
    padding: 24px;
}

.korean-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--sunny-yellow);
    margin-bottom: 8px;
    line-height: 1.2;
}

.dish-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pronunciation {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.pronunciation-label {
    font-weight: 600;
}

.pronunciation-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.category-badge {
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: var(--electric-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.protein-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--sunny-yellow);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.method-badge {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    color: var(--hot-pink);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.spice-level {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    color: var(--hot-pink);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination span.current {
    background: var(--hot-pink);
    border-color: var(--hot-pink);
    color: var(--white);
}

.no-results {
    text-align: center;
    padding: 60px 24px;
}

.no-results p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin-bottom: 24px;
}

/* DISH ARCHIVE RESPONSIVE */
@media (max-width: 768px) {
    .dish-archive-hero {
        padding: 60px 16px 40px;
    }

    .dish-archive-hero h1 {
        font-size: 32px;
    }

    .dish-archive-hero p {
        font-size: 16px;
    }

    .filter-categories {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .filter-by {
        padding: 16px;
    }

    .filter-buttons {
        gap: 6px;
    }

    .filter-tag {
        padding: 5px 12px;
        font-size: 12px;
    }

    .dish-archive {
        padding: 40px 16px;
    }

    .dish-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-content {
        padding: 20px;
    }
}

/* ===== DISH SINGLE PAGE ===== */
.dish-hero {
    background: linear-gradient(135deg, var(--deep-black) 0%, #1a1a2e 100%);
    padding: 80px 24px 60px;
    text-align: center;
}

.dish-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.business-categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.dish-categories .category-badge {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    color: var(--hot-pink);
}

.korean-name {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--sunny-yellow);
    margin-bottom: 16px;
    line-height: 1.2;
}

.dish-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
}

.dish-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.quick-info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 14px;
}

.info-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-right: 8px;
}

.info-value {
    color: var(--white);
    font-weight: 500;
}

.dish-content {
    padding: 60px 24px;
    background: var(--deep-black);
}

.dish-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 24px;
}

.dish-description,
.ingredients-list,
.history-section,
.variations-section,
.serving-section,
.fun-facts-section {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.ingredients-list ul,
.ingredients-list ol {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    color: var(--white);
}

.dish-sidebar {
    position: sticky;
    top: 24px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.dish-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.dish-categories .category-tag {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    color: var(--hot-pink);
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.dish-categories .category-tag:hover {
    background: var(--hot-pink);
    color: var(--white);
}

.dish-proteins,
.dish-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.related-dishes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-dish {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.related-dish:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 20, 147, 0.3);
}

.related-dish h4 {
    font-size: 14px;
    color: var(--white);
    margin: 0;
}

.related-korean {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* DISH SINGLE PAGE RESPONSIVE */
@media (max-width: 1024px) {
    .dish-layout {
        grid-template-columns: 1fr;
    }

    .dish-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .dish-hero {
        padding: 60px 16px 40px;
    }

    .dish-hero h1 {
        font-size: 32px;
    }

    .korean-name {
        font-size: 24px;
    }

    .dish-quick-info {
        flex-direction: column;
        gap: 12px;
    }

    .quick-info-item {
        width: 100%;
        padding: 10px 20px;
    }

    .dish-content {
        padding: 40px 16px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .sidebar-card {
        padding: 20px;
    }
}
/* NAVIGATION */
.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 20, 147, 0.1);
}

/* KOREAN FOOD DICTIONARY SECTION ON HOMEPAGE */
.dishes-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 255, 255, 0.02));
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.dish-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s;
}

.dish-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 20, 147, 0.3);
    transform: translateY(-4px);
}

.dish-card h3 {
    font-size: 18px;
    color: var(--white);
    margin: 0;
}

.dish-korean-name {
    font-size: 14px;
    color: var(--mint-green);
    font-weight: 500;
}

.dish-category {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(255, 20, 147, 0.5);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 24px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: var(--hot-pink);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .dishes-section {
        padding: 60px 16px;
    }
    
    .dishes-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        height: calc(100vh - 72px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 0;
        transform: translateX(100vw);
        transition: transform 0.3s ease;
        z-index: 999;
        pointer-events: none;
        visibility: hidden;
    }
    
    .nav.active {
        transform: translateX(0);
        pointer-events: auto;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 24px;
        width: 100%;
        text-align: center;
    }
}

/* Desktop Navigation Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hot-pink);
    transition: width 0.3s;
}

.nav-menu li a:hover {
    color: var(--hot-pink);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Registration Form */
.registration-container {
    max-width: 500px;
    margin: 60px auto;
    padding: 0 20px;
}

.registration-form-wrapper {
    background: rgba(30, 30, 40, 0.9);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.registration-form-wrapper h1 {
    margin-bottom: 10px;
    text-align: center;
}

.registration-form-wrapper > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.error-message {
    background: rgba(255, 100, 100, 0.2);
    color: #ff6464;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 100, 100, 0.3);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.registration-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.registration-form label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.registration-form input,
.registration-form select {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 30, 0.8);
    color: white;
    border-radius: 8px;
    font-size: 16px;
}

.registration-form input:focus,
.registration-form select:focus {
    outline: none;
    border-color: #ec4899;
}

.registration-form small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.registration-form .btn-primary {
    padding: 14px 24px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.registration-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.login-link {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.login-link a {
    color: #ec4899;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}
/* Login Form */
.login-container {
    max-width: 500px;
    margin: 60px auto;
    padding: 0 20px;
}

.login-form-wrapper {
    background: rgba(30, 30, 40, 0.9);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.login-form-wrapper h1 {
    margin-bottom: 10px;
    text-align: center;
}

.login-form-wrapper > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-form label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.login-form input[type="text"],
.login-form input[type="password"] {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 30, 0.8);
    color: white;
    border-radius: 8px;
    font-size: 16px;
}

.login-form input:focus {
    outline: none;
    border-color: #ec4899;
}

.login-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.login-form .remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.login-form .remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.login-form .forgot-password {
    color: #ec4899;
    text-decoration: none;
    font-size: 14px;
}

.login-form .forgot-password:hover {
    text-decoration: underline;
}

.login-form .btn-primary {
    padding: 14px 24px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.login-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.register-link {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.register-link a {
    color: #ec4899;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}/* Profile Page */
.profile-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.profile-wrapper {
    background: rgba(30, 30, 40, 0.9);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.profile-wrapper h1 {
    margin-bottom: 10px;
    text-align: center;
}

.profile-wrapper > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.profile-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-section {
    background: rgba(20, 20, 30, 0.5);
    padding: 24px;
    border-radius: 8px;
}

.profile-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ec4899;
}

.profile-info p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.profile-info strong {
    color: #8b5cf6;
}
/* Profile Page */
.profile-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.profile-wrapper {
    background: rgba(30, 30, 40, 0.9);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-header h1 {
    margin-bottom: 10px;
}

.profile-header > p {
    color: rgba(255, 255, 255, 0.7);
}

.success-message {
    background: rgba(100, 255, 100, 0.2);
    color: #64ff64;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid rgba(100, 255, 100, 0.3);
    text-align: center;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.profile-photo-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.current-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.current-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.photo-upload {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-section {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.profile-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.profile-form label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 30, 0.8);
    color: white;
    border-radius: 8px;
    font-size: 16px;
}

.profile-form input[type="text"]:focus,
.profile-form input[type="email"]:focus,
.profile-form textarea:focus {
    outline: none;
    border-color: #ec4899;
}

.profile-form textarea {
    font-family: inherit;
    resize: vertical;
}

.profile-form input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.profile-form small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.profile-form .checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.profile-form .btn-primary {
    padding: 14px 24px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.profile-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.profile-stats {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-stats h2 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.stat-value {
    display: block;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .profile-photo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
