/* Menu specific styles */
.menu-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 150px 0 80px;
    text-align: center;
}

.menu-hero h1 {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.menu-hero p {
    font-size: 1.2rem;
    color: #ccc;
}

.menu-content {
    padding: 80px 0;
    background: #111;
}

.menu-section {
    margin-bottom: 4rem;
}

.menu-section h2 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-section h2 i {
    font-size: 1.5rem;
}

.menu-grid {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.menu-item:hover {
    transform: translateX(5px);
    border-left-color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.menu-item.featured {
    border-left-color: #ff6b35;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
}

.menu-item-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-item-info p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.price {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-cta {
    background: #0a0a0a;
    padding: 80px 0;
    text-align: center;
}

.menu-cta h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.menu-cta p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-hero h1 {
        font-size: 2.5rem;
    }
    
    .menu-hero {
        padding: 120px 0 60px;
    }
    
    .menu-content {
        padding: 60px 0;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .menu-section h2 {
        font-size: 1.5rem;
    }
    
    .menu-cta h2 {
        font-size: 2rem;
    }
}