* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #1a1a1a;
    cursor: pointer;
}

.logo:hover {
    color: #666;
}

.nav-center {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-center a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-center a:hover {
    color: #666;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-toggle {
    padding: 8px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-toggle:hover {
    background: #e5e5e5;
}

.admin-btn {
    padding: 8px 16px;
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.admin-btn:hover {
    background: #000;
}

.main-hero {
    margin-top: 90px;
    height: 85vh;
    background: linear-gradient(165deg, #fef8f0 0%, #fff9ed 40%, #ffffff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.main-hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,200,120,0.15) 0%, transparent 70%);
    right: -200px;
    top: -200px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-text .subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-text .description {
    font-size: 17px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 45px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: #1a1a1a;
    color: white;
}

.cta-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
}

.cta-secondary:hover {
    border-color: #1a1a1a;
}

.hero-image {
    width: 100%;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section {
    padding: 130px 50px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.section-desc {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Story Section */
.product-story-section {
    background: #fafafa;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.story-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 40px;
}

.story-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.feature-tag {
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.haccp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00a86b 0%, #00c879 100%);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 20px;
}

.haccp-badge::before {
    content: '✓';
    font-size: 18px;
    font-weight: 900;
}

/* Reviews Section */
.reviews-section {
    background: #f8f9fa;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-430px * 5 - 150px));
    }
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    min-width: 400px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.review-stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.review-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.review-author strong {
    font-weight: 700;
    font-size: 14px;
}

/* Menu Section */
.menu-section {
    background: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.menu-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info {
    padding: 30px;
}

.menu-info h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.menu-price {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.menu-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #fafafa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #555;
    line-height: 1.9;
}

.about-img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Delivery Section */
.delivery-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.delivery-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.delivery-section .section-tag {
    color: rgba(255,255,255,0.7);
}

.delivery-section .section-title {
    color: white;
}

.delivery-section .section-desc {
    color: rgba(255,255,255,0.8);
}

/* Info Section */
.info-section {
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.info-item {
    background: #fafafa;
    padding: 40px;
    border-radius: 15px;
}

.info-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
}

.info-item p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-link.naver {
    background: #03C75A;
    color: white;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 50px 40px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.business-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.business-info p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.business-info strong {
    color: #ccc;
    font-weight: 600;
    margin-right: 8px;
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-copyright p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-grid,
    .menu-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }
    
    .nav-center {
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    section {
        padding: 80px 30px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}