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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text h1 {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.logo-text p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-phone {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.nav-phone:hover {
    background: #b91c1c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 10px;
    font-family: serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

.hero-image {
    display: flex;
    justify-content: center;
}

.mascot-circle {
    width: 400px;
    height: 400px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 4px solid #fecaca;
}

.mascot-img {
    width: 320px;
    height: 320px;
    object-fit: contain;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Promise Section */
.promise {
    padding: 80px 0;
    background: white;
}

.promise h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.promise h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #dc2626;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.promise-item {
    text-align: center;
    padding: 30px 20px;
    background: #fafafa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.promise-item:hover {
    transform: translateY(-5px);
}

.promise-item i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.promise-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.promise-item p {
    color: #dc2626;
    font-weight: bold;
}

/* Info Cards */
.info-cards {
    padding: 60px 0;
    background: #f9fafb;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    margin-bottom: 5px;
}

.info-card .small {
    font-size: 0.9rem;
    color: #22c55e;
    font-weight: bold;
}

/* Featured Dishes */
.featured-dishes {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #dc2626;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.dish-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid #f3f4f6;
}

.dish-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
}

.dish-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dish-info {
    padding: 20px;
}

.dish-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.dish-info .korean {
    color: #dc2626;
    font-weight: bold;
    margin-bottom: 10px;
}

.dish-info p {
    color: #666;
    font-size: 0.9rem;
}

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

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

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    padding: 20px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-tab {
    background: #f3f4f6;
    color: #666;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-weight: bold;
}

.menu-tab.active,
.menu-tab:hover {
    background: #dc2626;
    color: white;
}

.menu-tab span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.menu-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-items {
    display: grid;
    gap: 30px;
}

.menu-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 20px;
    border: 2px solid #f3f4f6;
    border-radius: 10px;
    transition: all 0.3s;
}

.menu-item:hover {
    border-color: #dc2626;
    transform: translateY(-2px);
}

.menu-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.item-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.item-info .korean {
    color: #dc2626;
    font-weight: bold;
    font-size: 0.9rem;
}

.item-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #dc2626;
    margin-right: 15px;
}

.popular {
    background: #fef3c7;
    color: #f59e0b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.add-ons,
.variants {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.variants p {
    margin: 5px 0;
    color: #333;
    font-weight: 500;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border: 2px solid #fecaca;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: #dc2626;
}

.contact-card i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-top: 5px;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.open-status {
    color: #22c55e;
    font-weight: bold;
    font-size: 0.9rem;
}

.location-map h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.location-details,
.visit-info {
    background: #f9fafb;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.location-details h4,
.visit-info h4 {
    color: #dc2626;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.location-details ul,
.visit-info ul {
    list-style: none;
}

.location-details li,
.visit-info li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details i {
    color: #dc2626;
    width: 16px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f9fafb;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    padding: 20px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-tab {
    background: #f3f4f6;
    color: #666;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-weight: bold;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: #dc2626;
    color: white;
}

.gallery-tab span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.gallery-info .korean {
    color: #dc2626;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.gallery-info .description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    max-width: 800px;
    max-height: 90vh;
    position: relative;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(0,0,0,0.8);
}

#lightbox-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 30px;
}

.lightbox-info h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.lightbox-info .korean {
    color: #dc2626;
    font-weight: bold;
    margin-bottom: 15px;
}

.lightbox-info p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #dc2626;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta .btn-primary {
    background: white;
    color: #dc2626;
}

.cta .btn-primary:hover {
    background: #f3f4f6;
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #dc2626;
}

.cta-hours {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #dc2626;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-tagline {
    color: #dc2626 !important;
    font-weight: bold;
}

.footer-contact p,
.footer-hours p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i,
.footer-hours i {
    color: #dc2626;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-subtitle {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .mascot-circle {
        width: 300px;
        height: 300px;
    }
    
    .mascot-img {
        width: 240px;
        height: 240px;
    }
    
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .menu-categories,
    .gallery-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-tab,
    .gallery-tab {
        width: 200px;
    }
    
    .menu-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .menu-item img {
        width: 100%;
        height: 200px;
        justify-self: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
        justify-content: center;
    }
}

