/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E85D04;
    --primary-dark: #D00000;
    --secondary: #FAA307;
    --accent: #FFBA08;
    --dark: #1A1A2E;
    --light: #FFF8F0;
    --cream: #FFF5E6;
    --text: #333;
    --text-light: #666;
    --success: #2D6A4F;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-large, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--dark);
    color: white;
}

.btn-secondary:hover {
    background: #2a2a4a;
    transform: translateY(-2px);
}

.btn-large {
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}

.btn-outline:hover {
    background: var(--text);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 50%, #ffe4cc 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--dark);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--primary);
    position: relative;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--accent);
    opacity: 0.4;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 15px;
}

/* Animated Ramen Bowl */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ramen-bowl {
    position: relative;
    width: 300px;
    height: 300px;
}

.bowl {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #2a2a4a 0%, #1A1A2E 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        inset -10px -10px 30px rgba(0,0,0,0.3),
        0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.bowl::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 80px;
    background: linear-gradient(180deg, #d4a574 0%, #c49a6c 100%);
    border-radius: 50%;
}

.noodles {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 60px;
    background: repeating-linear-gradient(
        0deg,
        #f4d03f 0px,
        #f4d03f 4px,
        #e8c547 4px,
        #e8c547 8px
    );
    border-radius: 50%;
}

.toppings {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 60px;
}

.egg {
    position: absolute;
    width: 35px;
    height: 25px;
    background: linear-gradient(145deg, #fff 50%, #ffcc80 50%);
    border-radius: 50%;
    top: 15px;
    left: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.naruto {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    top: 20px;
    right: 35px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.naruto::after {
    content: '🌀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.onion {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    top: 10px;
    left: 70px;
    box-shadow: 
        15px 5px 0 #4CAF50,
        -10px 15px 0 #4CAF50,
        25px 12px 0 #4CAF50;
}

.steam {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 60px;
}

.steam span {
    position: absolute;
    width: 8px;
    height: 30px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    filter: blur(4px);
    animation: steam 2s ease-in-out infinite;
}

.steam span:nth-child(1) {
    left: 20px;
    animation-delay: 0s;
}

.steam span:nth-child(2) {
    left: 50px;
    animation-delay: 0.5s;
}

.steam span:nth-child(3) {
    left: 80px;
    animation-delay: 1s;
}

@keyframes steam {
    0%, 100% {
        transform: translateY(0) scaleX(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) scaleX(1.5);
        opacity: 0.1;
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--cream);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin-top: 25px;
    border-radius: 3px;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: var(--light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.menu-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.menu-image {
    height: 160px;
    background: linear-gradient(135deg, var(--cream) 0%, #ffe8d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img {
    font-size: 4rem;
}

.menu-info {
    padding: 20px;
}

.menu-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.menu-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.menu-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.tag {
    background: var(--accent);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag.spicy {
    background: #ff6b6b;
    color: white;
}

/* Specials Section */
.specials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a4a 100%);
    color: white;
}

.specials .section-tag {
    background: var(--secondary);
}

.specials .section-header h2,
.specials .section-header p {
    color: white;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.special-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.special-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.special-card.featured {
    background: linear-gradient(135deg, rgba(232,93,4,0.2) 0%, rgba(250,163,7,0.1) 100%);
    border-color: var(--primary);
}

.special-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.special-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.special-content > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.special-features {
    list-style: none;
    margin-bottom: 25px;
}

.special-features li {
    padding: 5px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.special-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-price .price {
    color: var(--secondary);
    font-size: 1.8rem;
}

/* Bundle Section */
.bundle {
    padding: 60px 0;
    background: var(--cream);
}

.bundle-card {
    background: linear-gradient(135deg, var(--success) 0%, #1B4332 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-hover);
}

.bundle-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.bundle-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bundle-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.bundle-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.savings {
    background: var(--primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bundle-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bowl-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3rem;
    line-height: 0.8;
}

.bowl-stack span {
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

.bowl-stack span:nth-child(2) { animation-delay: 0.1s; }
.bowl-stack span:nth-child(3) { animation-delay: 0.2s; }
.bowl-stack span:nth-child(4) { animation-delay: 0.3s; }
.bowl-stack span:nth-child(5) { animation-delay: 0.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Order Section */
.order {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}

.order-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.order-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.order-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-divider {
    margin: 25px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #2a2a4a;
    transform: translateY(-2px);
}

.order-note {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .ramen-bowl {
        width: 200px;
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0 auto;
    }
    
    .features-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .order-card {
        padding: 30px 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}
